﻿@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --dfq-bg: #050505;
  --dfq-surface: #0f0f0f;
  --dfq-surface-strong: #141414;
  --dfq-text: #f5f5f5;
  --dfq-muted: #8a8a8a;
  --dfq-accent: #ff5100;
  --dfq-accent-glow: rgba(255, 81, 0, 0.35);
  --dfq-border: rgba(255, 255, 255, 0.08);
  --dfq-radius: 18px;
  --dfq-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  --dfq-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --dfq-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wd-title-color: #fff!important;
}


body {color:#fff!important;}

.dfq-page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(192, 192, 192, 0.18), transparent 35%), radial-gradient(circle at 85% 30%, rgba(224, 224, 224, 0.12), transparent 40%), linear-gradient(180deg, #050505 0%, #0b0b0b 40%, #131313 70%, #050505 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.dfq-page * {
  box-sizing: border-box;
}

.dfq-noise {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  pointer-events: none;
}

.dfq-section {
  padding: clamp(60px, 9vw, 120px) 0;
}

.dfq-section--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.dfq-section--image {
  position: relative;
  overflow: hidden;
}

.dfq-section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(140deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.2) 2%, rgba(5, 5, 5, 0.20) 100%), var(--dfq-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}

.dfq-section--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0) 16%, rgba(5, 5, 5, 0) 84%, #050505 100%);
  z-index: 0;
}

.dfq-section--image > .dfq-container {
  position: relative;
  z-index: 1;
}

.dfq-container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.dfq-topbar {
  position: relative;
  z-index: 2;
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid var(--dfq-border);
}

.dfq-topbar__inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dfq-topbar__label {
  color: var(--dfq-accent);
  font-family: "IBM Plex Mono", monospace;
}

.dfq-topbar__copy {
  color: rgba(255, 255, 255, 0.75);
}

.dfq-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 240ms var(--dfq-ease), opacity 240ms var(--dfq-ease), box-shadow 240ms var(--dfq-ease);
}

.dfq-nav.is-scrolled {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.dfq-nav.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.dfq-nav-open .dfq-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dfq-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.dfq-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dfq-text);
}

.dfq-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dfq-accent);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(255, 81, 0, 0.4);
}

.dfq-brand__text {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.dfq-nav__links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dfq-nav__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 180ms ease;
}

.dfq-nav__links a:hover {
  color: #fff;
}

.dfq-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dfq-nav__toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

.dfq-nav__panel {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 6vw 22px;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid var(--dfq-border);
}

.dfq-nav-open .dfq-nav__panel {
  display: flex;
}

.dfq-hero {
  position: relative;
  padding-top: clamp(40px, 7vw, 80px);
}

.dfq-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.dfq-pill {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--dfq-accent);
  margin: 0 0 18px;
}

.dfq-hero h1 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.dfq-lead {
  font-size: clamp(16px, 2.3vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 22px;
}

.dfq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.dfq-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  border: 1px solid transparent;
}

.dfq-btn--primary {
  background: var(--dfq-accent);
  color: #fff;
  box-shadow: 0 18px 40px var(--dfq-accent-glow);
}

.dfq-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(255, 81, 0, 0.45);
}

.dfq-btn--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.dfq-hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.dfq-hero__trust strong {
  display: block;
  font-size: 20px;
}

.dfq-hero__trust span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.dfq-avatars {
  display: flex;
}

.dfq-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0b0b0b;
  margin-left: -10px;
}

.dfq-avatars img:first-child {
  margin-left: 0;
}

.dfq-hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.dfq-metric {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--dfq-border);
  border-radius: 14px;
  padding: 12px 14px;
}

.dfq-metric strong {
  display: block;
  font-size: 18px;
}

.dfq-metric span {
  font-size: 12px;
  color: var(--dfq-muted);
}

.dfq-hero__visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.dfq-hero__card {
  border-radius: var(--dfq-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--dfq-shadow);
}

.dfq-hero__card img {
  width: 100%;
  height: clamp(280px, 45vw, 480px);
  object-fit: cover;
  display: block;
}

.dfq-hero__card-tag {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.dfq-hero__float {
  position: absolute;
  left: -30px;
  bottom: 40px;
  background: rgba(15, 15, 15, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  box-shadow: var(--dfq-shadow-soft);
}

.dfq-hero__float-title {
  margin: 0;
  font-size: 12px;
  color: var(--dfq-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dfq-hero__float-value {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 600;
}

.dfq-hero__rail {
  position: absolute;
  right: -30px;
  top: 40px;
  width: 180px;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 15, 0.6);
}

.dfq-hero__rail-track {
  display: grid;
  gap: 12px;
  padding: 12px;
  animation: dfq-scroll 14s linear infinite;
}

.dfq-hero__rail-track img {
  width: 100%;
  border-radius: 12px;
  height: 100px;
  object-fit: cover;
}

.dfq-hero__rail:hover .dfq-hero__rail-track {
  animation-play-state: paused;
}

@keyframes dfq-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.dfq-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.dfq-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dfq-accent);
  margin: 0 0 12px;
}

.dfq-proof {
  padding-top: clamp(30px, 4vw, 60px);
}

.dfq-marquee {
  overflow: hidden;
  border: 1px solid var(--dfq-border);
  border-radius: 16px;
  padding: 18px 0;
  background: rgba(15, 15, 15, 0.75);
}

.dfq-marquee__track {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: dfq-marquee 18s linear infinite;
  padding-left: 0;
  will-change: transform;
}

.dfq-logo-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.dfq-logo-pill img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
}

@keyframes dfq-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.dfq-symptom-grid,
.dfq-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.dfq-card {
  background: rgba(12, 12, 12, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  box-shadow: var(--dfq-shadow-soft);
}

.dfq-card__number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 81, 0, 0.2);
  color: var(--dfq-accent);
  font-weight: 600;
}

.dfq-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dfq-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: center;
}

.dfq-pillars__list {
  display: grid;
  gap: 16px;
}

.dfq-pillars__card {
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dfq-pillars__kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dfq-accent);
}

.dfq-pillars__media {
  position: relative;
}

.dfq-pillars__media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--dfq-shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dfq-media__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.dfq-benefit-card {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--dfq-shadow-soft);
}

.dfq-benefit-card span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dfq-accent);
}

.dfq-slider {
  background: rgba(10, 10, 10, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.dfq-slider__track {
  position: relative;
  min-height: 340px;
}

.dfq-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 36px);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.dfq-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.dfq-slide__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.dfq-slide__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dfq-accent);
  margin: 0 0 10px;
}

.dfq-slide__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--dfq-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.dfq-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 18px;
}

.dfq-slider__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.dfq-dots {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.dfq-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.dfq-dots button.is-active {
  width: 26px;
  background: var(--dfq-accent);
}

.dfq-compare__table {
  display: grid;
  gap: 16px;
}

.dfq-compare__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.dfq-compare__cell {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 15, 0.75);
}

.dfq-compare__cell span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dfq-accent);
  margin-bottom: 8px;
}

.dfq-packages {
  position: relative;
}

.dfq-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.dfq-package {
  background: rgba(10, 10, 10, 0.9);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}

/* Inset all package text, keep CTA button aligned */
.dfq-package > *:not(.dfq-btn) {
  padding-left: 14px;
}

.dfq-package--highlight {
  border-color: rgba(255, 81, 0, 0.4);
  box-shadow: 0 24px 50px rgba(255, 81, 0, 0.2);
}

.dfq-package__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dfq-accent);
  margin: 0;
}

.dfq-package__price {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.dfq-package ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.dfq-process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
}

.dfq-process__steps {
  display: grid;
  gap: 16px;
}

.dfq-stack {
  display: grid;
  gap: 0;
}

.dfq-stack__card {
  position: relative;
  z-index: calc(20 - var(--dfq-stack-index, 0));
  backdrop-filter: blur(6px);
}

.dfq-stack__card:not(:first-child) {
  margin-top: 25px;
}

.dfq-step {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dfq-step__number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 81, 0, 0.2);
  color: var(--dfq-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.dfq-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.dfq-about__media {
  display: flex;
  justify-content: flex-start;
}

.dfq-about__media img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--dfq-shadow);
}

.dfq-about__content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 8px;
}

.dfq-about__content li::before {
  content: "• ";
  color: var(--dfq-accent);
}

.dfq-faq-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.dfq-faq-preview__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.dfq-faq-preview__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--dfq-shadow-soft);
}

.dfq-faq-preview__item span:first-child {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.dfq-faq-preview__icon {
  color: var(--dfq-accent);
}

.dfq-faq-preview__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.dfq-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.dfq-faq-item {
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.dfq-faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.dfq-faq-item p {
  margin: 10px 0 0;
  color: var(--dfq-muted);
}

.dfq-last__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.dfq-display {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(36px, 6vw, 78px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
}

.dfq-calendar__frame {
  background: var(--dfq-surface-strong);
  border-radius: var(--dfq-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px;
  box-shadow: var(--dfq-shadow);
}

#my-cal-inline-premiumseiten-erstgesprach {
  min-height: 720px;
}

.dfq-watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(90px, 14vw, 180px);
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(80px, 16vw, 200px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.dfq-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.85);
}

.dfq-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dfq-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.dfq-footer__brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.85;
}

.dfq-footer__links {
  display: flex;
  gap: 18px;
}

.dfq-footer__links a {
  color: var(--dfq-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-dfq-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  filter: blur(4px);
  transition: opacity 620ms var(--dfq-ease), transform 620ms var(--dfq-ease), filter 620ms var(--dfq-ease);
  transition-delay: var(--dfq-delay, 0ms);
  will-change: transform, opacity;
}

[data-dfq-reveal="soft"] {
  transform: translateY(12px);
}

[data-dfq-reveal="lift"] {
  transform: translateY(28px) scale(0.99);
}

[data-dfq-reveal="stack"] {
  transform: translateY(50px) scale(0.95);
}

[data-dfq-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 980px) {
  .dfq-nav__links,
  .dfq-nav__inner .dfq-btn {
    display: none;
  }

  .dfq-nav__toggle {
    display: flex;
  }

  .dfq-hero__float,
  .dfq-hero__rail {
    position: static;
  }

  .dfq-hero__rail {
    width: 100%;
    height: 140px;
  }

  .dfq-hero__rail-track {
    grid-auto-flow: column;
    grid-auto-columns: 140px;
    animation: dfq-marquee 16s linear infinite;
  }

  .dfq-faq-preview__cta {
    justify-content: flex-start;
  }

  .dfq-stack__card:not(:first-child) {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .dfq-topbar__inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .dfq-section__cta {
    justify-content: flex-start;
  }

  .dfq-slider__track {
    min-height: 420px;
  }

  .dfq-watermark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (min-width: 981px) {
  .dfq-about__grid {
    grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 1.1fr);
    align-items: start;
  }
}

/* Udvardi benefit grid: 4 cards per row on desktop */
.dfq-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dfq-benefit-card h3 {
  word-break: break-word;
}

@media (max-width: 1100px) {
  .dfq-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dfq-benefit-grid {
    grid-template-columns: 1fr;
  }
}





.wd-page-content {margin-top:0px;}
.whb-main-header {display:none!important;}
.wd-prefooter {display:none!important;}
.main-footer {display:none!important;}

.dfq-nav__panel a {color:#fff!important;}

.container   {max-width: 100vw!important;padding-inline: 0px!important;}
.wd-content-layout {
  padding-block: 2px!important;
}

/* Container, damit nichts rausragt */
.dfq-marquee {
  overflow: hidden;
  width: 100%;
  display: flex; /* Wichtig für vertikale Zentrierung im Parent */
}

/* Die Bahn, auf der die Items laufen */
.dfq-marquee__track {
  display: flex;
  gap: 24px; /* Abstand zwischen den Pillen */
  width: max-content; /* Verhindert, dass die Bahn gequetscht wird */
  /* Hier kommt später Ihre Animation rein */
}

/* Der einzelne Pille-Container */
.dfq-logo-pill {
  display: flex;
  align-items: center;
  gap: 12px; /* Abstand Bild zu Text */
  
  /* Optik der Pille */
  background-color: rgba(255, 255, 255, 0.1); /* Leicht transparent oder feste Farbe */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Optional: feiner Rand */
  border-radius: 100px; /* Macht es zur Pille */
  
  /* Padding: Links wenig (wegen Bild), Rechts mehr (für Balance) */
  padding: 5px; 
  padding-right: 24px; 
  
  /* WICHTIG: Verhindert Umbruch und Quetschen */
  white-space: nowrap; 
  flex-shrink: 0; 
}

/* Das Bild innerhalb der Pille */
.dfq-logo-pill img {
  width: 40px;  /* Feste Breite */
  height: 40px; /* Feste Höhe */
  border-radius: 50%; /* Macht das Bild kreisrund */
  object-fit: cover; /* Verhindert Verzerrung des Bildes */
  display: block; /* Entfernt mysteriöse Abstände unten */
}

/* Der Text */
.dfq-logo-pill span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff; /* Oder Ihre Textfarbe */
}




/* --- Container & Reset --- */
.dfq-slider {
  position: relative;
  width: 100%;
  max-width: 800px; /* Oder breiter, je nach Layout */
  margin: 0 auto;
  background: #111; /* Dunkler Hintergrund wie im Bild */
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1); /* Feiner Rand */
}

/* --- Der "Stapel" Trick --- */
.dfq-slider__track {
  display: grid;
  grid-template-areas: "stack"; /* Alle Slides in dieselbe Zelle */
  align-items: center;
}

.dfq-slide {
  grid-area: stack; /* Zwingt alle Slides übereinander */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
  
  /* Inneres Layout des Slides */
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

/* Der aktive Slide wird sichtbar */
.dfq-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative; /* Wichtig für Interaktion */
}

/* --- Bild Styling --- */
.dfq-slide__media {
  width: 100%;
  height: 250px; /* Feste Höhe für Einheitlichkeit */
  overflow: hidden;
  border-radius: 16px;
}

.dfq-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Verhindert Verzerrung */
  transition: transform 6s ease; /* Leichter Zoom-Effekt */
}

.dfq-slide.is-active .dfq-slide__media img {
  transform: scale(1.05); /* Zoomt sanft rein wenn aktiv */
}

/* --- Typografie --- */
.dfq-slide__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dfq-slide__eyebrow {
  color: #FF4D00; /* Ihr Orange */
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.dfq-slide__content h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.dfq-slide__content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.dfq-slide__meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.dfq-slide__meta span:last-child {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
}

/* --- Controls (Unten) --- */
.dfq-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 30px 30px;
  position: relative;
  z-index: 10;
}

/* Button Reset (Killer für die Theme-Styles) */
.dfq-slider__btn {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.dfq-slider__btn:hover {
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

/* Dots Reset */
.dfq-dots {
  display: flex;
  gap: 8px;
}

.dfq-dots button {
  width: 8px !important;
  height: 8px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.2) !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-indent: -9999px; /* Versteckt Text, falls Theme welchen einfügt */
  min-width: 0 !important; /* Überschreibt Theme min-widths */
}

.dfq-dots button.is-active {
  background: #FF4D00 !important; /* Ihr Orange */
  transform: scale(1.2);
}


.dfq-nav__toggle {
  background-color:#000!important;
}


.contact-button {display:none!important;}



/* Gallery tweaks for Udvardi content */
.dfq-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.dfq-gallery-item {
  margin: 0;
  background: rgba(12, 12, 12, 0.85);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--dfq-shadow-soft);
}

.dfq-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.dfq-gallery-item figcaption {
  padding: 12px 14px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
