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

html { scroll-behavior: smooth; }

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-5); }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============ Navigation — schwebende Pill (wie app.rockmylisting.de / rockmylisting.de) ============ */
.nav {
  position: sticky;
  top: var(--space-3);
  z-index: 100;
  padding: 0 var(--space-3);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-3) 0 var(--space-4);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--duration-base) var(--ease-out);
}

.nav.is-scrolled .nav__inner {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.nav__logo img { height: 46px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-5);
  font-size: 15px;
  font-weight: 500;
}

.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--color-text);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__links a:hover::after { width: 100%; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
}

/* ---- Mega Menu (Desktop) ---- */
.has-mega { position: relative; }

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font: inherit;
  font-weight: 500;
  color: var(--color-text);
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-trigger .chev {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration-base) var(--ease-out);
}

.has-mega:hover .nav-trigger { color: var(--color-gold-dark); }
.has-mega:hover .nav-trigger .chev { transform: rotate(180deg); }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out), visibility var(--duration-base);
  z-index: 130;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
}

.mega-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  width: 720px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  transform: translateY(10px);
  transition: transform var(--duration-base) var(--ease-out);
}

.has-mega:hover .mega-card { transform: translateY(0); }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  align-content: center;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease-out);
}

.mega-item:hover { background: var(--color-surface-alt); }

.mi-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-ic svg { width: 20px; height: 20px; stroke: var(--color-gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.mi-tx { display: flex; flex-direction: column; justify-content: center; line-height: 1.25; min-width: 0; }
.mi-tx b { font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; color: var(--color-navy-900); }
.mi-tx small { color: var(--color-text-muted); font-size: 12px; margin-top: 2px; }
.mega-item:hover .mi-tx b { color: var(--color-gold-dark); }

a.mega-promo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 22px;
  color: #fff;
}

.mega-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.55s var(--ease-out); }
.mega-promo:hover img { transform: scale(1.06); }
.mega-promo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,18,32,0.85), rgba(11,18,32,0.35)); z-index: 1; }
.mega-promo > span { position: relative; z-index: 2; }
.promo-eyebrow { font-family: var(--font-heading); font-weight: 700; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); }
.promo-title { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin: 8px 0 12px; }
.promo-cta { font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.mega-promo:hover .promo-cta { color: var(--color-gold); }

@media (max-width: 1180px) {
  .mega-card { width: 620px; }
}

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

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav__burger { display: none; }
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--color-navy-900);
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out);
}

.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-navy-900);
  display: flex;
  flex-direction: column;
  padding: 96px var(--space-4) var(--space-5);
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
}

.nav__overlay.is-open { transform: translateX(0); }
.nav__overlay.is-open ~ .tp-float,
.nav__overlay.is-open ~ .whatsapp-float { display: none; }

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-on-dark);
}

.nav__overlay-links a { display: inline-block; }

.nav__overlay-cta { margin-top: auto; }

body.nav-open { overflow: hidden; }

/* ---- Mobile Accordion (within overlay) ---- */
.m-acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  font: inherit;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-on-dark);
  text-align: left;
}

.m-acc-head svg {
  width: 20px; height: 20px;
  stroke: var(--color-gold);
  fill: none; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}

.m-acc.is-open .m-acc-head svg { transform: rotate(180deg); }

.m-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.m-acc.is-open .m-acc-body { max-height: 460px; }

.m-acc-body a {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-on-dark-muted);
  padding: 10px 0 10px 4px;
}

.m-acc-body a:hover { color: var(--color-gold); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), background var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

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

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy-900);
  box-shadow: 0 4px 14px rgba(232, 163, 61, 0.35);
}

.btn--gold:hover {
  background: #F0B354;
  box-shadow: 0 6px 20px rgba(232, 163, 61, 0.45);
}

.btn--ghost-dark {
  border: 1.5px solid var(--color-border-dark);
  color: var(--color-text-on-dark);
}

.btn--ghost-dark:hover { border-color: var(--color-gold); color: var(--color-gold); }

.btn--ghost-light {
  border: 1.5px solid var(--color-border);
  color: var(--color-navy-900);
}

.btn--ghost-light:hover { border-color: var(--color-gold); color: var(--color-gold-dark); }

.btn--sm { padding: 10px 20px; font-size: 14px; }

.btn--text {
  padding: 0;
  font-weight: 600;
  color: var(--color-navy-900);
  border-bottom: 1.5px solid var(--color-gold);
  border-radius: 0;
}

.btn--text:hover { color: var(--color-gold-dark); }

/* ============ Trustpilot Floating Widget (unten links, wie bs-leihhaus.de) ============ */
.tp-float {
  position: fixed;
  left: var(--space-3);
  bottom: var(--space-3);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  width: max-content;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0 32px 0 14px;
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out);
}

.tp-float:hover { transform: translateY(-3px); }

.tp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.tp-float__close {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.tp-float__close:hover { background: var(--color-navy-900); color: #fff; }
.tp-float__close svg { width: 10px; height: 10px; }

.tp-float__logo {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-float__logo svg { width: 20px; height: 20px; fill: #00b67a; }

.tp-float__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  white-space: nowrap;
}

.tp-float__score {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-navy-900);
}

.tp-float__label {
  font-size: 10.5px;
  color: var(--color-text-muted);
}

@media (max-width: 480px) {
  .tp-float { height: 50px; padding: 0 28px 0 12px; gap: 8px; bottom: var(--space-2); }
  .tp-float__logo { width: 18px; height: 18px; }
  .tp-float__logo svg { width: 16px; height: 16px; }
  .tp-float__score { font-size: 12.5px; }
  .tp-float__label { font-size: 9px; }
  .tp-float__close { width: 26px; height: 26px; right: 2px; }
}

/* ============ WhatsApp Floating Button ============ */
.whatsapp-float {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55); }
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.85); opacity: 0; }
}

@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; right: var(--space-2); bottom: var(--space-2); }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ============ Hero — echtes Foto + schwebende Stat-Karten (wie rockmylisting.de) ============ */
.hero {
  background: var(--color-navy-900);
  background-image: radial-gradient(circle at 85% 10%, rgba(232, 149, 10, 0.14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(232, 149, 10, 0.08), transparent 40%);
  color: var(--color-text-on-dark);
  position: relative;
  padding: 56px 0 64px;
}

@media (min-width: 768px) {
  .hero { padding: 72px 0 80px; }
}

.hero__grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-7); }
}

.hero__content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__content { margin: 0; text-align: left; max-width: 620px; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}

.hero__sub {
  font-size: 17px;
  color: var(--color-text-on-dark-muted);
  max-width: 46ch;
  margin-bottom: var(--space-5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border-dark);
}

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

@media (min-width: 1024px) {
  .hero__actions,
  .hero__badges { justify-content: flex-start; }
}

.hero__badges img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
}

@media (max-width: 480px) {
  .hero__badges img { height: 42px; }
}

/* Hero-Visual: Foto-Karte rechts + schwebende Stat-Karten */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: visible;
}

@media (min-width: 1024px) {
  .hero__visual { aspect-ratio: 4 / 4.3; }
}

.hero__visual-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-dark);
}

.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__stat {
  position: absolute;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: statFloat 5s ease-in-out infinite;
}

.hero__stat-label { font-size: 11px; color: var(--color-text-on-dark-muted); margin-bottom: 3px; }
.hero__stat-value { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--color-text-on-dark); }
.hero__stat-delta { font-size: 11px; color: #34D399; margin-top: 2px; }

.hero__stat--1 { top: 6%; right: -6%; animation-delay: 0s; }
.hero__stat--2 { bottom: 22%; left: -8%; animation-delay: 1.2s; }
.hero__stat--3 { bottom: 4%; right: -4%; animation-delay: 0.6s; }

.hero__stat--circle {
  top: 42%;
  left: -10%;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  animation-delay: 1.8s;
}

.hero__stat--circle .hero__stat-value { font-size: 26px; color: var(--color-navy-900); }
.hero__stat--circle .hero__stat-label { color: rgba(10,10,10,0.65); font-weight: 600; }

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1023px) {
  /* Mobile eigener Hero-Stil: Bild oben (voll breit, sanfter Verlauf), Text darunter, keine schwebenden Karten */
  .hero { padding: 0 0 48px; overflow: hidden; }
  .hero .container { padding-left: var(--space-3); padding-right: var(--space-3); }

  .hero__grid { gap: 0; }

  .hero__visual {
    order: -1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: -20px;
    height: 240px;
    aspect-ratio: auto;
  }

  .hero__visual-photo {
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    position: relative;
  }

  .hero__visual-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0) 5%, var(--color-navy-900) 70%);
  }

  .hero__content { padding-top: var(--space-6); }

  .hero__badge {
    background: var(--color-navy-900);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stat { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stat { animation: none; }
}

/* ============ Bar-Chart Visual (wiederverwendbar, z.B. im Prozess-Bento) ============ */
.bar-chart {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
}

.bar-chart__label {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-on-dark-muted);
}

.bar-chart__label strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 4px;
}

.bar-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60%;
  position: relative;
  z-index: 1;
}

.bar-chart__bars span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
  transform-origin: bottom;
  animation: growBar 1.1s var(--ease-out) both;
  position: relative;
  overflow: hidden;
}

.bar-chart__bars span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent 40%);
}

.bar-chart__bars span:nth-child(1) { height: 22%; animation-delay: 0.05s; }
.bar-chart__bars span:nth-child(2) { height: 34%; animation-delay: 0.13s; }
.bar-chart__bars span:nth-child(3) { height: 30%; animation-delay: 0.21s; }
.bar-chart__bars span:nth-child(4) { height: 48%; animation-delay: 0.29s; background: linear-gradient(180deg, var(--color-gold-light), rgba(232, 149, 10, 0.3)); }
.bar-chart__bars span:nth-child(5) { height: 62%; animation-delay: 0.37s; background: linear-gradient(180deg, var(--color-gold-light), rgba(232, 149, 10, 0.3)); }
.bar-chart__bars span:nth-child(6) { height: 58%; animation-delay: 0.45s; background: linear-gradient(180deg, var(--color-gold-light), rgba(232, 149, 10, 0.3)); }
.bar-chart__bars span:nth-child(7) { height: 78%; animation-delay: 0.53s; background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark)); }
.bar-chart__bars span:nth-child(8) { height: 100%; animation-delay: 0.61s; background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark)); }

.bar-chart__trend {
  position: absolute;
  inset: var(--space-4) var(--space-4) 40%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: trendReveal 0.6s var(--ease-out) 0.9s forwards;
}

@keyframes trendReveal {
  to { opacity: 1; }
}

.bar-chart__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 10px;
  color: var(--color-text-on-dark-muted);
  position: relative;
  z-index: 1;
}

@keyframes growBar {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bar-chart__bars span { animation: none; }
  .bar-chart__trend { animation: none; opacity: 1; }
}

/* ============ Kundenlogos — Grid + Wave-Wipe ============ */
.logos {
  background: var(--color-surface);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--color-border);
}

.logos__head-wrap {
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--space-6);
}

.logos__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
}

.logos__sub {
  font-size: 15px;
  color: var(--color-text-muted);
}

.logos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5) var(--space-4);
  align-items: center;
}

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

@media (min-width: 1024px) {
  .logos__grid { grid-template-columns: repeat(7, 1fr); gap: var(--space-6) var(--space-5); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.logo-item img {
  max-height: 28px;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity var(--duration-base) var(--ease-out), filter var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.07);
}

.logos__grid.is-waving .logo-item img {
  animation: logoWave 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logos__grid.is-waving .logo-item:nth-child(1) img { animation-delay: 0ms; }
.logos__grid.is-waving .logo-item:nth-child(2) img { animation-delay: 60ms; }
.logos__grid.is-waving .logo-item:nth-child(3) img { animation-delay: 120ms; }
.logos__grid.is-waving .logo-item:nth-child(4) img { animation-delay: 180ms; }
.logos__grid.is-waving .logo-item:nth-child(5) img { animation-delay: 240ms; }
.logos__grid.is-waving .logo-item:nth-child(6) img { animation-delay: 300ms; }
.logos__grid.is-waving .logo-item:nth-child(7) img { animation-delay: 360ms; }
.logos__grid.is-waving .logo-item:nth-child(8) img { animation-delay: 420ms; }
.logos__grid.is-waving .logo-item:nth-child(9) img { animation-delay: 480ms; }
.logos__grid.is-waving .logo-item:nth-child(10) img { animation-delay: 540ms; }
.logos__grid.is-waving .logo-item:nth-child(11) img { animation-delay: 600ms; }
.logos__grid.is-waving .logo-item:nth-child(12) img { animation-delay: 660ms; }
.logos__grid.is-waving .logo-item:nth-child(13) img { animation-delay: 720ms; }
.logos__grid.is-waving .logo-item:nth-child(14) img { animation-delay: 780ms; }

@keyframes logoWave {
  0% { clip-path: inset(0 0 0 0); filter: grayscale(100%) blur(0px); opacity: 0.55; }
  40% { clip-path: inset(0 100% 0 0); filter: grayscale(100%) blur(8px); opacity: 0.15; }
  100% { clip-path: inset(0 0 0 0); filter: grayscale(100%) blur(0px); opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .logos__grid.is-waving .logo-item img { animation: none; }
}

/* ============ PPC Ergebnis-Showcase (Mockup Section) ============ */
.showcase {
  background: var(--color-navy-900);
  background-image: radial-gradient(circle at 15% 20%, rgba(232, 149, 10, 0.12), transparent 45%);
  color: var(--color-text-on-dark);
  padding: var(--space-6) 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .showcase { padding: var(--space-8) 0; }
}

.showcase .container {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .showcase .container { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
}

.showcase__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.showcase__text h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: var(--space-4);
  max-width: 16ch;
}

.showcase__quote {
  background: var(--color-navy-800);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}

.showcase__quote--standalone {
  max-width: 560px;
  margin: var(--space-6) auto var(--space-6);
  text-align: center;
}

.showcase__quote-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.showcase__quote p {
  font-size: 14.5px;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 8px;
}

.showcase__quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-on-dark);
}

/* ---- PPC Pipeline Diagramm ---- */
.ppc-pipeline {
  background: #090909;
  border: 1px solid var(--color-border-dark);
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--font-body);
}

.ppc-pipeline__head {
  padding: 11px 18px;
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ppc-pipeline__live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.ppc-pipeline__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: ppcHeadPulse 2s ease-in-out infinite;
}

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

.ppc-pipeline__meta {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.18);
}

.ppc-pipeline__svg {
  display: block;
  width: 100%;
}

.ppc-pulse {
  animation: ppcCorePulse 1.2s ease-in-out infinite;
}

.ppc-pulse:nth-of-type(2) { animation-delay: 0.4s; }
.ppc-pulse:nth-of-type(3) { animation-delay: 0.8s; }

@keyframes ppcCorePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.ppc-pulse-amber {
  animation: ppcAmberPulse 1.9s ease-in-out infinite;
}

@keyframes ppcAmberPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.ppc-pipeline__log {
  border-top: 1px solid var(--color-border-dark);
  padding: 9px 18px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ppc-pipeline__prompt {
  color: rgba(232, 149, 10, 0.55);
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  flex-shrink: 0;
}

.ppc-pipeline__msg {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
  transition: opacity 0.25s var(--ease-out);
}

.ppc-pipeline__stats {
  border-top: 1px solid var(--color-border-dark);
  padding: 10px 18px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.ppc-pipeline__stat-label {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 3px;
}

.ppc-pipeline__stat-value {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
}

.ppc-pipeline__stack { margin-left: auto; text-align: right; }

.ppc-pipeline__stack-val {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  color: rgba(232, 149, 10, 0.55);
}

/* ---- PPC Stepper (Auto-Cycling Schritte + synchronisiertes Bild) ---- */
.ppc-stepper {
  background: var(--color-navy-800);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .ppc-stepper { grid-template-columns: 1fr 1.1fr; }
}

.ppc-stepper__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-4);
}

.ppc-stepper__item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--color-text-on-dark-muted);
  transition: background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
}

.ppc-stepper__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-dark);
}

.ppc-stepper__icon svg { width: 15px; height: 15px; }

.ppc-stepper__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.ppc-stepper__item.is-active {
  background: var(--color-gold);
  color: var(--color-navy-900);
}

.ppc-stepper__item.is-active .ppc-stepper__icon {
  border-color: var(--color-navy-900);
  background: var(--color-navy-900);
  color: var(--color-gold);
}

.ppc-stepper__visual {
  position: relative;
  min-height: 220px;
  background: var(--color-navy-900);
  border-top: 1px solid var(--color-border-dark);
}

@media (min-width: 900px) {
  .ppc-stepper__visual { min-height: auto; border-top: none; border-left: 1px solid var(--color-border-dark); }
}

.ppc-stepper__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.ppc-stepper__img.is-active { opacity: 1; }

/* ============ Trust / Stats — Pin Cards (Zickzack + Pfad, weiße Section + schwarze Karten) ============ */
.pin-stats {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-8) 0 var(--space-7);
  overflow: hidden;
}

.pin-stats .container {
  position: relative;
}

/* Mobile: vertikale gestrichelte Linie hinter den Karten */
.pin-stats .container::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 0;
  border-left: 2px dashed var(--color-border);
  z-index: 0;
}

@media (min-width: 900px) {
  .pin-stats .container::before { display: none; }
}

.pin-stats__path {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 600px;
  pointer-events: none;
  z-index: 0;
}

.pin-stats__path path {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 2;
  stroke-dasharray: 8 7;
  stroke-linecap: round;
  animation: pinPathDash 3.5s linear infinite;
}

@keyframes pinPathDash {
  to { stroke-dashoffset: -150; }
}

@media (min-width: 900px) {
  .pin-stats__path { display: block; }
  .pin-stats .container { min-height: 600px; }
}

.pin-card {
  position: relative;
  z-index: 1;
  display: block;
  width: 84%;
  margin: 0 0 var(--space-6);
  transition: transform var(--duration-base) var(--ease-out);
}

.pin-card:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 5; }

/* Mobile: Zickzack-Versatz + leichte Rotation, damit es nicht langweilig-gerade wirkt */
.pin-card--1 { margin-left: 0; margin-right: auto; transform: rotate(-3deg); }
.pin-card--2 { margin-left: auto; margin-right: 0; transform: rotate(3deg); }
.pin-card--3 { margin-left: 4%; margin-right: auto; transform: rotate(-3deg); }

@media (min-width: 900px) {
  .pin-card { width: 300px; margin: 0; }
  .pin-card--1 { position: absolute; top: 20px; left: 6%; transform: rotate(-5deg); }
  .pin-card--2 { position: absolute; top: 190px; right: 8%; transform: rotate(5deg); }
  .pin-card--3 { position: absolute; top: 360px; left: 10%; transform: rotate(-5deg); }
}

.pin-card__pin {
  display: block;
  width: 26px;
  height: 26px;
  margin: 0 auto 14px;
  color: var(--color-gold);
}

.pin-card__inner {
  background: var(--color-navy-800);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
}

.pin-card__num {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.pin-card__inner h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-bottom: 6px;
}

.pin-card__inner h3 small {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-left: 4px;
}

.pin-card__inner p {
  font-size: 13.5px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.5;
}

.stats__disclaimer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: var(--space-5);
}

@media (min-width: 900px) {
  .stats__disclaimer { margin-top: var(--space-4); padding-top: calc(600px - 360px - 30px); }
}

/* ============ Section shared ============ */
.section { padding: var(--space-8) 0; }

.section__head {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-2);
}

.section__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
}

.section__sub {
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ============ Leistungen — Feature Cards ============ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  padding: var(--space-4);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

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

.feature-card__index {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.feature-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background: radial-gradient(circle at 50% 32%, rgba(232, 149, 10, 0.20), transparent 68%);
}

.feature-card__icon-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-base) var(--ease-out);
}

.feature-card__icon-wrap svg {
  width: 96px;
  height: 96px;
  stroke: var(--color-navy-900);
  opacity: 0.9;
}

.feature-card:hover .feature-card__icon-wrap {
  transform: scale(1.15) translateY(-10px);
}

.feature-card__panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.feature-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(232, 149, 10, 0.14);
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card__panel p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy-900);
  line-height: 1.4;
}

/* ============ Prozess — Bento Grid ============ */
.process {
  background: var(--color-surface-alt);
}

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

@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
}

.bento__feature {
  grid-column: 1 / -1;
  background: var(--color-navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .bento__feature { grid-template-columns: 1fr 1.1fr; }
}

.bento__feature-text {
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento__step-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.bento__feature h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-2);
}

.bento__feature p {
  font-size: 14.5px;
  color: var(--color-text-on-dark-muted);
  max-width: 40ch;
}

.bento__feature-visual {
  position: relative;
  min-height: 220px;
  background: var(--color-navy-800);
  border-left: 1px solid var(--color-border-dark);
}

@media (max-width: 767px) {
  .bento__feature-visual { border-left: none; border-top: 1px solid var(--color-border-dark); }
}

.bento__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

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

.bento__icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px dashed var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.bento__icon-ring svg { width: 24px; height: 24px; stroke: var(--color-navy-900); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.bento__card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: 6px;
}

.bento__card p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ============ Reviews — Stagger Testimonials ============ */
.reviews__source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.reviews__source img { height: 22px; width: auto; }

.reviews__source-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.reviews__source-score strong { color: var(--color-navy-900); font-family: var(--font-heading); }

.reviews__source a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-navy-900);
  border-bottom: 1.5px solid var(--color-gold);
}

/* ============ Featured Testimonial (Circular-Testimonials-Pattern) ============ */
.featured-testi {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  max-width: 900px;
  margin: 0 auto var(--space-7);
  padding: var(--space-5);
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .featured-testi { grid-template-columns: 220px 1fr; gap: var(--space-6); padding: var(--space-6); }
}

.featured-testi__photo {
  aspect-ratio: 1 / 1.02;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 220px;
  margin: 0 auto;
}

.featured-testi__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.featured-testi__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-2);
}

.featured-testi__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 2px;
}

.featured-testi__role {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.featured-testi__role a { color: var(--color-gold-dark); font-weight: 600; }

.featured-testi__quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

/* ============ Testimonials — scrollende Spalten (testimonials-columns-1-Pattern) ============ */
.testi-marquee {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  max-height: 640px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.testi-marquee__col {
  flex: 1 1 0;
  max-width: 360px;
  overflow: hidden;
  display: none;
}

.testi-marquee__col--1 { display: block; }

@media (min-width: 700px) {
  .testi-marquee__col--2 { display: block; }
}

@media (min-width: 1024px) {
  .testi-marquee__col--3 { display: block; }
}

.testi-marquee__col-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  animation: testiScroll linear infinite;
}

.testi-marquee__col--1 .testi-marquee__col-inner { animation-duration: 32s; }
.testi-marquee__col--2 .testi-marquee__col-inner { animation-duration: 40s; }
.testi-marquee__col--3 .testi-marquee__col-inner { animation-duration: 36s; }

@keyframes testiScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testi-marquee__col-inner { animation: none; }
  .testi-marquee { max-height: none; overflow: visible; -webkit-mask-image: none; mask-image: none; }
}

.testi-card {
  position: relative;
  background: var(--color-surface);
  background-image: radial-gradient(circle at 100% 0%, rgba(232, 149, 10, 0.05), transparent 60%);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.testi-card__stars { display: flex; gap: 2px; margin-bottom: var(--space-3); }
.testi-card__stars svg { width: 14px; height: 14px; fill: var(--color-gold); }

.testi-card__quote {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-navy-700);
  color: var(--color-text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
}

.testi-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testi-card__author strong { display: block; font-size: 13.5px; color: var(--color-navy-900); }
.testi-card__author span { font-size: 12px; color: var(--color-text-muted); }

/* ============ FAQ ============ */
.faq-badge {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy-900);
}

.faq-list {
  max-width: 640px;
  margin: var(--space-6) auto 0;
}

.faq-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--color-surface-alt);
  color: var(--color-navy-900);
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

/* ============ SEO-Textblock ============ */
.seo-text {
  background: var(--color-surface-alt);
  padding: var(--space-7) 0;
}

.seo-text__inner {
  max-width: 760px;
  margin: 0 auto;
}

.seo-text h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
}

.seo-text h2:not(:first-child) { margin-top: var(--space-5); }

.seo-text p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.seo-text strong { color: var(--color-navy-900); }

/* ============ Rechtsseiten (Impressum / Datenschutz / AGB) ============ */
.legal-page { padding: var(--space-8) 0 var(--space-9); }
.legal-page__inner { max-width: 760px; margin: 0 auto; }

.legal-page h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: var(--color-navy-900); margin-bottom: var(--space-2); }
.legal-page__meta { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: var(--space-7); }

.legal-block { margin-bottom: var(--space-6); }
.legal-block h2 { font-size: 19px; font-weight: 700; color: var(--color-navy-900); margin-bottom: var(--space-3); }
.legal-block h3 { font-size: 15.5px; font-weight: 700; color: var(--color-navy-900); margin: var(--space-4) 0 var(--space-2); }
.legal-block p { font-size: 14.5px; line-height: 1.75; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.legal-block ul { margin: 0 0 var(--space-3); padding-left: 20px; }
.legal-block li { font-size: 14.5px; line-height: 1.75; color: var(--color-text-muted); margin-bottom: 6px; }
.legal-block strong { color: var(--color-navy-900); }
.legal-block a { color: var(--color-gold-dark); text-decoration: underline; }

.legal-page__toc { display: flex; flex-direction: column; gap: 4px; padding: var(--space-4) var(--space-5); background: var(--color-surface-alt); border-radius: var(--radius-md); margin-bottom: var(--space-7); }
.legal-page__toc a { font-size: 13.5px; color: var(--color-text-muted); text-decoration: none; }
.legal-page__toc a:hover { color: var(--color-gold-dark); }

/* ============ Final CTA ============ */
.final-cta {
  background: var(--color-navy-900);
  background-image: radial-gradient(circle at 50% 0%, rgba(232, 163, 61, 0.12), transparent 55%);
  color: var(--color-text-on-dark);
  text-align: center;
  padding: var(--space-8) 0;
}

.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  max-width: 20ch;
  margin: 0 auto var(--space-3);
}

.final-cta p {
  color: var(--color-text-on-dark-muted);
  max-width: 46ch;
  margin: 0 auto var(--space-5);
  font-size: 16px;
}

/* ============ Footer ============ */
.footer {
  background: var(--color-navy-900);
  color: var(--color-text-on-dark-muted);
  padding: var(--space-7) 0 var(--space-4);
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-dark);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer__brand img { height: 26px; margin-bottom: var(--space-3); }
.footer__brand p { max-width: 32ch; }

.footer h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-3);
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer a { transition: color var(--duration-fast) var(--ease-out); }
.footer a:hover { color: var(--color-gold); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
  padding-top: var(--space-4);
  font-size: 13px;
}

@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__legal { display: flex; gap: var(--space-3); }

/* ============ Cookie Consent ============ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out), visibility 0s linear var(--duration-base);
}

.cookie-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--duration-base) var(--ease-out);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 200;
  width: calc(100% - var(--space-4) * 2);
  max-width: 460px;
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out), visibility 0s linear var(--duration-base);
}

.cookie-banner.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out);
}

.cookie-banner__title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: var(--space-2); }
.cookie-banner p { font-size: 13.5px; color: var(--color-text-on-dark-muted); margin-bottom: var(--space-4); }
.cookie-banner p a { color: var(--color-gold); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1; justify-content: center; }

@media (max-width: 480px) {
  .cookie-banner { width: calc(100% - var(--space-3) * 2); padding: var(--space-4); }
  .cookie-banner__actions { flex-direction: column-reverse; }
}

/* ============ Hero Video (Unterseiten, z.B. Produktfotografie) ============ */
.hero-video {
  position: relative;
  height: 84vh;
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
  background: var(--color-navy-900);
}

@media (min-width: 1024px) {
  .hero-video { height: 88vh; min-height: 620px; max-height: 860px; }
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.9) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.1) 58%);
}

.hero-video__container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-7);
}

.hero-video__content { max-width: 620px; color: var(--color-text-on-dark); }

.hero-video__content .hero__badge { margin-bottom: var(--space-4); }

.hero-video__content h1 {
  font-size: clamp(32px, 5.2vw, 50px);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.hero-video__content h1 em { font-style: normal; color: var(--color-gold); }

.hero-video__content .hero__sub {
  font-size: 17px;
  color: var(--color-text-on-dark-muted);
  max-width: 46ch;
  margin-bottom: var(--space-5);
}

.hero-video__content .hero__actions {
  justify-content: flex-start;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .hero-video__container { padding-bottom: var(--space-6); }
  .hero-video__content { max-width: 100%; }
}

/* ============ Beispiele — Bild-Sets nebeneinander ============ */
.examples { padding: var(--space-8) 0; }

.examples__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .examples__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

.example-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.example-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.example-card__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-navy-900);
}

.example-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold-dark);
  text-align: right;
}

.example-card__main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-alt);
  margin-bottom: var(--space-3);
}

.example-card__main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.example-card__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: var(--space-2);
}

.example-card__thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  transition: border-color var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}

.example-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

.example-card__thumb.is-active { border-color: var(--color-gold); }

button.example-card__thumb { cursor: pointer; opacity: 0.7; }
button.example-card__thumb:hover { opacity: 1; }
button.example-card__thumb.is-active { opacity: 1; }

.example-card__thumb--empty {
  border: 1.5px dashed var(--color-border);
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-card__thumb--empty svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

/* ============ Casestudy — Warum Produktfotos wichtig sind ============ */
.casestudy { padding: var(--space-8) 0; background: var(--color-surface-alt); }

.casestudy__box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .casestudy__box { padding: var(--space-7); }
}

.casestudy__feature {
  max-width: 720px;
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.casestudy__title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-navy-900);
  margin: var(--space-2) 0 var(--space-3);
}

.casestudy__lead {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.casestudy__stat {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-navy-900);
  border-radius: var(--radius-md);
}

.casestudy__stat-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-gold);
  white-space: nowrap;
}

.casestudy__stat-label {
  font-size: 13.5px;
  color: var(--color-text-on-dark-muted);
  max-width: 34ch;
}

.casestudy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .casestudy__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-5); }
}

.casestudy__item-num {
  display: inline-block;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-2);
}

.casestudy__item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 6px;
}

.casestudy__item p {
  font-size: 14.5px;
  color: var(--color-text-muted);
}

/* ============ Casestudy — Text + Vorher/Nachher-Reveal nebeneinander ============ */
.casestudy__feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-6);
}

@media (min-width: 900px) {
  .casestudy__feature-row { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

.casestudy__feature-row .casestudy__feature {
  max-width: none;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* ============ Reveal-Slider (Vorher/Nachher, ziehbar) ============ */
.reveal__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  background: var(--color-surface-alt);
}

.reveal__after,
.reveal__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.reveal__before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.reveal__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.reveal__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.reveal__handle svg { width: 18px; height: 18px; stroke: var(--color-navy-900); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.reveal__label {
  position: absolute;
  top: var(--space-3);
  z-index: 4;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  pointer-events: none;
}

.reveal__label--before { left: var(--space-3); background: rgba(10, 10, 10, 0.75); color: var(--color-text-on-dark); }
.reveal__label--after { right: var(--space-3); background: var(--color-gold); color: var(--color-navy-900); }

.reveal__hint {
  margin-top: var(--space-2);
  text-align: center;
  font-size: 12.5px;
  color: var(--color-text-muted);
}

/* ============ Feature Showcase — eigenes KI-System & Ablauf ============ */
.feature-showcase {
  background: var(--color-navy-900);
  background-image: radial-gradient(circle at 90% 10%, rgba(232, 149, 10, 0.14), transparent 45%);
  color: var(--color-text-on-dark);
  padding: var(--space-8) 0;
  overflow: hidden;
}

.feature-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-showcase__grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-7); }
}

.feature-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.feature-showcase__title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.feature-showcase__desc {
  font-size: 16px;
  color: var(--color-text-on-dark-muted);
  max-width: 48ch;
  margin-bottom: var(--space-4);
}

.feature-showcase__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-5);
}

.feature-showcase__stat {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-navy-800);
  border: 1px solid var(--color-border-dark);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-on-dark);
}

.feature-acc {
  max-width: 520px;
  border-top: 1px solid var(--color-border-dark);
  margin-bottom: var(--space-6);
}

.feature-acc-item { border-bottom: 1px solid var(--color-border-dark); }

.feature-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text-on-dark);
  text-align: left;
}

.feature-acc-head svg {
  flex: none;
  width: 16px;
  height: 16px;
  stroke: var(--color-text-on-dark-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--duration-base) var(--ease-out);
}

.feature-acc-item.is-open .feature-acc-head svg { transform: rotate(180deg); stroke: var(--color-gold); }

.feature-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-base) var(--ease-out);
}

.feature-acc-item.is-open .feature-acc-body { grid-template-rows: 1fr; }

.feature-acc-body__inner { overflow: hidden; }

.feature-acc-body p {
  font-size: 14px;
  color: var(--color-text-on-dark-muted);
  padding-bottom: var(--space-3);
  max-width: 46ch;
}

.feature-showcase__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.feature-showcase__panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  aspect-ratio: 1 / 1;
  background: var(--color-navy-800);
}

.feature-panel__img {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  width: calc(100% - (var(--space-4) * 2));
  height: calc(100% - var(--space-4) - 68px);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.feature-panel__img.is-active { opacity: 1; pointer-events: auto; }

.feature-panel__tabs {
  position: absolute;
  left: 50%;
  bottom: var(--space-3);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-dark);
}

.feature-panel__tab {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-on-dark-muted);
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.feature-panel__tab.is-active { background: var(--color-text-on-dark); color: var(--color-navy-900); }

/* ============ PPC Hero — Glassmorphism Trust Hero (Unterseite Amazon PPC) ============ */
.ppc-hero {
  position: relative;
  background: var(--color-navy-900);
  color: var(--color-text-on-dark);
  overflow: hidden;
  padding: 130px 0 var(--space-7);
}

@media (min-width: 768px) {
  .ppc-hero { padding: 150px 0 var(--space-8); }
}

.ppc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 15%, black 75%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 15%, black 75%, transparent);
}

.ppc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .ppc-hero__grid { grid-template-columns: 1.35fr 1fr; gap: var(--space-7); align-items: start; }
}

.ppc-hero__grid > * { min-width: 0; }

.ppc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-dark);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-5);
}

.ppc-hero__badge svg { width: 14px; height: 14px; fill: var(--color-gold); stroke: none; }

.ppc-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.ppc-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ppc-hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}

.ppc-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.ppc-hero__ctas .btn--ghost-dark { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); }

/* Glass Stats Card */
.ppc-glass-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
}

.ppc-glass-card__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(232, 149, 10, 0.12);
  filter: blur(50px);
  pointer-events: none;
}

.ppc-glass-card__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.ppc-glass-card__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppc-glass-card__icon svg { width: 22px; height: 22px; stroke: var(--color-gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ppc-glass-card__stat { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--color-text-on-dark); line-height: 1; }
.ppc-glass-card__stat-label { font-size: 13.5px; color: var(--color-text-on-dark-muted); margin-top: 3px; }

.ppc-glass-card__bar-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.ppc-glass-card__bar-row span:first-child { color: var(--color-text-on-dark-muted); }
.ppc-glass-card__bar-row span:last-child { color: var(--color-text-on-dark); font-weight: 600; }

.ppc-glass-card__bar {
  position: relative;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: var(--space-5);
}

.ppc-glass-card__bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
}

.ppc-glass-card__divider { position: relative; height: 1px; background: var(--color-border-dark); margin-bottom: var(--space-5); }

.ppc-glass-card__minis {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin-bottom: var(--space-5);
}

.ppc-glass-card__mini-value { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--color-text-on-dark); }
.ppc-glass-card__mini-label { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text-on-dark-muted); margin-top: 2px; }

.ppc-glass-card__pills { position: relative; display: flex; flex-wrap: wrap; gap: 8px; }

.ppc-glass-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-dark);
  background: rgba(255, 255, 255, 0.05);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-on-dark-muted);
}

.ppc-glass-card__pill-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.ppc-glass-card__pill-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.6;
  animation: ppcPillPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ppcPillPing {
  0% { transform: scale(1); opacity: 0.6; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ppc-glass-card__pill-dot::before { animation: none; }
}

/* Glass Logos Marquee Card */
.ppc-glass-logos { margin-top: var(--space-4); padding: var(--space-5) 0; }

.ppc-glass-logos h3 {
  position: relative;
  padding: 0 var(--space-5);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-4);
}

.ppc-glass-logos__track {
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.ppc-glass-logos__inner {
  display: flex;
  gap: var(--space-6);
  padding: 0 var(--space-5);
  animation: ppcLogosMarquee 28s linear infinite;
}

.ppc-glass-logos__inner img {
  height: 22px;
  width: auto;
  flex: none;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.ppc-glass-logos__inner img:hover { opacity: 1; }

@keyframes ppcLogosMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ppc-glass-logos__inner { animation: none; }
}

/* ============ PPC Features — echte Vorteile (features-with-section-Pattern) ============ */
.ppc-features { padding: var(--space-8) 0; }

.ppc-features__head {
  max-width: 640px;
  margin: 0 auto var(--space-7);
  text-align: center;
}

.ppc-features__visual-wrap {
  perspective: 1200px;
  margin: 0 auto var(--space-8);
  max-width: 920px;
}

.ppc-features__visual-inner {
  transform: rotateX(4deg) skewX(-1.5deg);
  transform-origin: center bottom;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.ppc-features__visual-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 767px) {
  .ppc-features__visual-inner { transform: none; }
}

.ppc-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .ppc-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.ppc-features__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.ppc-features__item-icon svg { width: 19px; height: 19px; stroke: var(--color-gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ppc-features__item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 6px;
}

.ppc-features__item p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.ppc-features__note {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(232, 149, 10, 0.12);
  color: var(--color-gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ============ Pricing — Amazon PPC Management Preise ============ */
.pricing { padding: var(--space-8) 0; background: var(--color-surface-alt); }

.pricing__head {
  max-width: 640px;
  margin: 0 auto var(--space-5);
  text-align: center;
}

.pricing__definition {
  max-width: 640px;
  margin: 0 auto var(--space-7);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

.pricing__definition strong { color: var(--color-navy-900); }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing__grid--two {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .pricing__grid--two { grid-template-columns: repeat(2, 1fr); }
}

.pricing__card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.pricing__card--featured {
  background: var(--color-navy-900);
  border-color: var(--color-navy-900);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-8px);
}

@media (max-width: 899px) {
  .pricing__card--featured { transform: none; }
}

.pricing__badge {
  position: absolute;
  top: -13px;
  left: var(--space-5);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-gold);
  color: var(--color-navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing__card-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-2);
}

.pricing__card--featured .pricing__card-name { color: var(--color-gold); }

.pricing__card-scope {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.pricing__card--featured .pricing__card-scope { color: var(--color-text-on-dark-muted); }

.pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: var(--space-1);
}

.pricing__card--featured .pricing__card-price { color: var(--color-text-on-dark); }

.pricing__card-price span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing__card--featured .pricing__card-price span { color: var(--color-text-on-dark-muted); }

.pricing__card-hint {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.pricing__card--featured .pricing__card-hint { color: var(--color-text-on-dark-muted); }

.pricing__card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-5);
  flex-grow: 1;
}

.pricing__card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
}

.pricing__card--featured .pricing__card-features li { color: var(--color-text-on-dark); }

.pricing__card-features svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  stroke: var(--color-gold-dark);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing__card--featured .pricing__card-features svg { stroke: var(--color-gold); }

.pricing__card .btn { width: 100%; }

.pricing__scope-note {
  max-width: 700px;
  margin: var(--space-6) auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pricing__scope-note a { color: var(--color-navy-900); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============ Produktdesign — Hero ============ */
.pd-hero {
  position: relative;
  background: var(--color-surface-alt);
  padding: calc(var(--space-8) + var(--space-4)) 0 var(--space-8);
  overflow: hidden;
}

.pd-hero__wave {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.pd-hero__wave-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 243, 239, 0.92) 0%, rgba(245, 243, 239, 0.55) 45%, rgba(245, 243, 239, 0.1) 70%, rgba(245, 243, 239, 0) 85%);
}

@media (min-width: 960px) {
  .pd-hero__wave-fade {
    background: linear-gradient(90deg, rgba(245, 243, 239, 0.92) 0%, rgba(245, 243, 239, 0.75) 28%, rgba(245, 243, 239, 0.15) 56%, rgba(245, 243, 239, 0) 70%);
  }
}

.pd-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

@media (min-width: 960px) {
  .pd-hero__grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-6); }
}

.pd-hero__content .hero__badge { margin-bottom: var(--space-4); }

.pd-hero__content h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-navy-900);
  letter-spacing: -0.01em;
}

.pd-hero__content h1 em {
  font-style: normal;
  color: var(--color-gold-dark);
}

.pd-hero__content .hero__sub { max-width: 480px; }

.pd-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.pd-hero__glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(232, 149, 10, 0.22), rgba(232, 149, 10, 0) 70%);
  filter: blur(20px);
  z-index: 0;
}

.pd-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(10, 10, 10, 0.28));
}

@media (min-width: 960px) {
  .pd-hero__visual { min-height: 380px; }
}

/* Hero entrance animation */
@keyframes pdFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pdFadeScale {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.pd-hero__content .hero__badge,
.pd-hero__content h1,
.pd-hero__content .hero__sub,
.pd-hero__content .hero__actions {
  opacity: 0;
  animation: pdFadeUp 0.7s var(--ease-out) forwards;
}

.pd-hero__content .hero__badge { animation-delay: 0.05s; }
.pd-hero__content h1 { animation-delay: 0.15s; }
.pd-hero__content .hero__sub { animation-delay: 0.25s; }
.pd-hero__content .hero__actions { animation-delay: 0.35s; }

.pd-hero__visual {
  opacity: 0;
  animation: pdFadeScale 0.9s var(--ease-out) 0.3s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .pd-hero__content .hero__badge,
  .pd-hero__content h1,
  .pd-hero__content .hero__sub,
  .pd-hero__content .hero__actions,
  .pd-hero__visual {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* ============ Produktdesign — Vorteile Feature Section ============ */
.pd-feature { padding: var(--space-8) 0; }

.pd-feature__lead {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pd-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}

@media (min-width: 800px) {
  .pd-feature__grid { grid-template-columns: 2fr 1fr; gap: var(--space-6); }
}

.pd-feature__anim {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-surface-alt), #EFE3D3);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-feature__anim--large {
  align-self: stretch;
  min-height: 320px;
  padding: var(--space-6);
}

.pd-feature__net {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.pd-feature__net-outer {
  stroke-dasharray: 700;
  animation: pdNetDraw 6s ease-in-out infinite;
}

.pd-feature__net-inner {
  animation: pdNetInner 6s ease-in-out infinite;
}

@keyframes pdNetDraw {
  0% { stroke-dashoffset: 700; }
  55% { stroke-dashoffset: 0; }
  96% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 700; }
}

@keyframes pdNetInner {
  0%, 45% { opacity: 0; }
  60%, 90% { opacity: 1; }
  100% { opacity: 0; }
}

.pd-feature__anim-caption {
  position: absolute;
  bottom: var(--space-4);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.pd-feature__anim--icon {
  min-height: 140px;
  margin-bottom: var(--space-2);
}

.pd-feature__anim--icon svg { width: 64px; height: 64px; }

.pd-feature__anim-check {
  stroke-dasharray: 24;
  animation: pdCheckDraw 3s ease-in-out infinite;
}

@keyframes pdCheckDraw {
  0% { stroke-dashoffset: 24; }
  35% { stroke-dashoffset: 0; }
  85% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -24; }
}

.pd-feature__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pd-feature__col h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-top: var(--space-2);
}

.pd-feature__col p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pd-feature__col .btn { margin-top: var(--space-3); align-self: flex-start; }

.pd-icon-draw {
  stroke-dasharray: 100;
  animation: pdIconDraw 3.6s ease-in-out infinite;
}

.pd-icon-draw--delay { animation-delay: 0.5s; }

@keyframes pdIconDraw {
  0% { stroke-dashoffset: 100; }
  40% { stroke-dashoffset: 0; }
  85% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

@media (prefers-reduced-motion: reduce) {
  .pd-feature__net-outer,
  .pd-feature__net-inner,
  .pd-feature__anim-check,
  .pd-icon-draw,
  .pd-icon-draw--delay { animation: none; }
  .pd-feature__net-outer { stroke-dashoffset: 0; }
  .pd-feature__net-inner { opacity: 1; }
  .pd-feature__anim-check { stroke-dashoffset: 0; }
  .pd-icon-draw { stroke-dashoffset: 0; }
}

.pd-feature__points {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 700px) {
  .pd-feature__points { grid-template-columns: repeat(2, 1fr); }
}

.pd-feature__point {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.pd-feature__point h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 4px;
}

.pd-feature__point p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pd-bento__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-navy-900);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-bento__icon svg { width: 24px; height: 24px; }

/* ============ Produktdesign — Colorful Bento Gallery ============ */
.pd-gallery { background: var(--color-surface); padding: var(--space-8) 0; }

.pd-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 700px) {
  .pd-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

.pd-gallery__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

@media (min-width: 700px) {
  .pd-gallery__card--large { grid-column: span 2; }
}

.pd-gallery__card img {
  position: absolute;
  right: 6%;
  bottom: 6%;
  left: 6%;
  max-width: 88%;
  max-height: 62%;
  width: auto;
  height: auto;
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(10, 10, 10, 0.18));
  transition: transform 0.25s ease;
}

.pd-gallery__label { position: relative; z-index: 2; }

.pd-gallery__label p {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.pd-gallery__label h3 {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--color-navy-900);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.pd-gallery__card--gold { background: #FBEBD4; transform: rotate(-1deg); }
.pd-gallery__card--blue { background: #DCE9F5; transform: rotate(2deg); }
.pd-gallery__card--sage { background: #E1E9DE; transform: rotate(-2deg); }
.pd-gallery__card--pink { background: #F5E1EC; transform: rotate(3deg); }
.pd-gallery__card--sand { background: #EFE3D3; transform: rotate(-3deg); }

.pd-gallery__card--gold:hover { transform: scale(1.03) rotate(-1deg); box-shadow: 0 24px 48px rgba(10, 10, 10, 0.14); z-index: 3; }
.pd-gallery__card--blue:hover { transform: scale(1.03) rotate(2deg); box-shadow: 0 24px 48px rgba(10, 10, 10, 0.14); z-index: 3; }
.pd-gallery__card--sage:hover { transform: scale(1.03) rotate(-2deg); box-shadow: 0 24px 48px rgba(10, 10, 10, 0.14); z-index: 3; }
.pd-gallery__card--pink:hover { transform: scale(1.03) rotate(3deg); box-shadow: 0 24px 48px rgba(10, 10, 10, 0.14); z-index: 3; }
.pd-gallery__card--sand:hover { transform: scale(1.03) rotate(-3deg); box-shadow: 0 24px 48px rgba(10, 10, 10, 0.14); z-index: 3; }

.pd-gallery__card:hover img { transform: scale(1.06); }

/* ============ Produktvideos — Hero mit Vimeo-Hintergrundvideo ============ */
.pv-hero {
  position: relative;
  background: var(--color-navy-900);
  padding: calc(var(--space-8) + var(--space-5)) 0 calc(var(--space-8) + var(--space-6));
  overflow: hidden;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (min-width: 960px) {
  .pv-hero { padding: calc(var(--space-9) + var(--space-4)) 0 var(--space-9); }
}

.pv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.pv-hero__content .hero__badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pv-hero__content h1 {
  margin-top: var(--space-4);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-on-dark);
  letter-spacing: -0.01em;
}

.pv-hero__content h1 em {
  font-style: normal;
  color: var(--color-gold-light);
}

.pv-hero__content .hero__sub {
  margin: var(--space-4) auto 0;
  max-width: 560px;
  color: var(--color-text-on-dark-muted);
}

.pv-hero__content .hero__actions {
  justify-content: center;
  margin-top: var(--space-5);
}

.pv-hero__content .hero__badges {
  justify-content: center !important;
}

.pv-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.pv-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}

.pv-hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.55) 40%, rgba(10, 10, 10, 0.82) 100%);
  pointer-events: none;
}

/* ============ Produktvideos — Beispiel-Platzhalter (bis Videos hochgeladen sind) ============ */
.pv-placeholder {
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
}

.pv-placeholder__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: var(--color-navy-900);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-placeholder__icon svg { width: 26px; height: 26px; }

.pv-placeholder__text {
  font-size: 14px;
  font-weight: 600;
}

.pv-placeholder--video {
  padding: 0;
  overflow: hidden;
  border-style: solid;
}

.pv-placeholder__video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .casestudy .pv-placeholder--video {
    margin-left: calc(-1 * var(--space-5));
    margin-right: calc(-1 * var(--space-5));
    border-left: none;
    border-right: none;
    border-radius: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .casestudy .pv-placeholder--video .pv-placeholder__video {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* ============ Produktvideos — Beispiel-Galerie ============ */
.pv-gallery { padding: var(--space-8) 0; background: var(--color-surface); }

.pv-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .pv-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .pv-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

.pv-gallery__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.pv-gallery__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.pv-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base) var(--ease-out);
}

.pv-gallery__card:hover .pv-gallery__thumb img { transform: scale(1.06); }

.pv-gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-gallery__play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 2px;
}

.pv-gallery__play::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.28);
  transition: background var(--duration-base) var(--ease-out);
}

.pv-gallery__play { z-index: 1; }
.pv-gallery__play svg { position: relative; z-index: 1; }
.pv-gallery__play::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(2px);
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}

.pv-gallery__card:hover .pv-gallery__play::before { background: rgba(10, 10, 10, 0.1); }
.pv-gallery__card:hover .pv-gallery__play::after { transform: scale(1.12); background: var(--color-gold); }

.pv-gallery__caption {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy-900);
}

/* ============ Produktvideos — Lightbox ============ */
.pv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.pv-lightbox.is-open { display: flex; }

.pv-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
}

.pv-lightbox__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.pv-lightbox__box video {
  width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-md);
  background: #000;
  display: block;
}

.pv-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out);
}

.pv-lightbox__close:hover { background: rgba(255, 255, 255, 0.24); }
.pv-lightbox__close svg { width: 18px; height: 18px; }

/* ============ Webdesign-Agentur — Hero ============ */
.wd-hero {
  position: relative;
  background: var(--color-navy-900);
  overflow: hidden;
  padding: calc(var(--space-8) + var(--space-5)) 0 var(--space-9);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

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

.wd-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.wd-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232, 149, 10, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 149, 10, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 25% 40%, black 40%, transparent 85%);
}

.wd-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 149, 10, 0.16) 0%, transparent 70%);
  pointer-events: none;
  left: -210px;
  top: -210px;
  transition: left 0.4s ease-out, top 0.4s ease-out;
  opacity: 0;
}

.wd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.72) 42%, rgba(10, 10, 10, 0.25) 75%, rgba(10, 10, 10, 0.15) 100%);
}

.wd-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.wd-hero__badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.05s forwards;
}

.wd-hero__title {
  margin-top: var(--space-4);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.16;
  color: var(--color-text-on-dark);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.18s forwards;
}

.wd-hero__title em {
  font-style: normal;
  color: var(--color-gold-light);
}

.wd-hero__lead {
  margin-top: var(--space-4);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-on-dark);
  line-height: 1.5;
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.3s forwards;
}

.wd-hero__sub {
  margin-top: var(--space-3);
  font-size: 16px;
  color: var(--color-text-on-dark-muted);
  line-height: 1.6;
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.4s forwards;
}

.wd-hero__checks {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.5s forwards;
}

.wd-hero__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-on-dark);
}

.wd-hero__checks svg { width: 18px; height: 18px; color: var(--color-gold); flex: none; }

.wd-hero__actions {
  margin-top: var(--space-6);
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.6s forwards;
}

.wd-hero__content .hero__badges {
  opacity: 0;
  animation: wdFadeUp 0.7s var(--ease-out) 0.7s forwards;
}

@keyframes wdFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .wd-hero__badge, .wd-hero__title, .wd-hero__lead, .wd-hero__sub, .wd-hero__checks, .wd-hero__actions, .wd-hero__content .hero__badges {
    opacity: 1; animation: none; transform: none;
  }
}

@media (max-width: 767px) {
  .wd-hero { min-height: auto; padding: calc(var(--space-8) + var(--space-6)) 0 var(--space-8); }
  .wd-hero__bg { object-position: 70% center; }
  .wd-hero__overlay { background: linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.8) 55%, rgba(10, 10, 10, 0.94) 100%); }
}

/* ============ Webdesign-Agentur — Kundenlogos ============ */
.wd-logos { padding: var(--space-7) 0; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }

.wd-logos__label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.wd-logos__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.wd-logos__row img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter var(--duration-base) var(--ease-out);
}

.wd-logos__row img:hover { filter: grayscale(0) opacity(1); }

/* ============ Webdesign-Agentur — Referenzprojekt Showcase (nach 21st.dev features-7) ============ */
.wd-showcase { padding: var(--space-7) 0 var(--space-8); background: var(--color-surface-alt); }

.wd-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (min-width: 700px) { .wd-preview-grid { grid-template-columns: repeat(3, 1fr); } }

.wd-preview-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.wd-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.wd-preview-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-navy-900); }

.wd-preview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}

.wd-preview-card:hover .wd-preview-card__img img { transform: scale(1.05); }

.wd-preview-card__body { padding: var(--space-4); }
.wd-preview-card__body h3 { font-size: 16px; font-weight: 700; color: var(--color-navy-900); margin-bottom: 2px; }
.wd-preview-card__body p { font-size: 13.5px; color: var(--color-text-muted); }

.wd-showcase__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.wd-features4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

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

.wd-features4__item { text-align: left; }

.wd-features4__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-3);
  color: var(--color-gold-dark);
}

.wd-features4__icon svg { width: 22px; height: 22px; }

.wd-features4__item h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy-900); margin-bottom: var(--space-2); }
.wd-features4__item p { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }

@media (max-width: 767px) {
  .wd-frame__bezel { border-width: 3px; padding: var(--space-2) var(--space-1) var(--space-1); transform: none; }
  .wd-frame__glow { inset: -1rem; }
}

/* ============ Webdesign-Agentur — Vorteile Grid (nach 21st.dev feature-section-with-hover-effects) ============ */
.wd-vorteile { padding: var(--space-8) 0; }

.wd-hover__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .wd-hover__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wd-hover__grid { grid-template-columns: repeat(4, 1fr); } }

.wd-hover__item { position: relative; display: flex; flex-direction: column; padding: var(--space-6) 0; }

@media (min-width: 1024px) {
  .wd-hover__item { border-right: 1px solid var(--color-border); }
  .wd-hover__item:nth-child(4n+1) { border-left: 1px solid var(--color-border); }
  .wd-hover__item:nth-child(-n+4) { border-bottom: 1px solid var(--color-border); }
}

.wd-hover__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.wd-hover__item:nth-child(-n+4) .wd-hover__glow { background: linear-gradient(to top, var(--color-surface-alt), transparent); }
.wd-hover__item:nth-child(n+5) .wd-hover__glow { background: linear-gradient(to bottom, var(--color-surface-alt), transparent); }
.wd-hover__item:hover .wd-hover__glow { opacity: 1; }

.wd-hover__icon { position: relative; z-index: 1; padding: 0 var(--space-5); margin-bottom: var(--space-3); color: var(--color-text-muted); }
.wd-hover__icon svg { width: 22px; height: 22px; transition: transform 0.35s var(--ease-out); }

.wd-hover__item:hover .wd-hover__icon { color: var(--color-gold); }
.wd-hover__item:hover .wd-hover__icon svg { transform: scale(1.18) rotate(-8deg); }

/* Draw-in animation: icons trace themselves once the grid scrolls into view (uses SVG pathLength="100" for a uniform stroke-dasharray across all icon shapes) */
.wd-hover__icon svg path,
.wd-hover__icon svg rect,
.wd-hover__icon svg circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.9s var(--ease-out);
}

.wd-vorteile.is-drawn .wd-hover__icon svg path,
.wd-vorteile.is-drawn .wd-hover__icon svg rect,
.wd-vorteile.is-drawn .wd-hover__icon svg circle {
  stroke-dashoffset: 0;
}

.wd-vorteile.is-drawn .wd-hover__item:nth-child(1) .wd-hover__icon svg * { transition-delay: 0.05s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(2) .wd-hover__icon svg * { transition-delay: 0.12s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(3) .wd-hover__icon svg * { transition-delay: 0.19s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(4) .wd-hover__icon svg * { transition-delay: 0.26s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(5) .wd-hover__icon svg * { transition-delay: 0.12s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(6) .wd-hover__icon svg * { transition-delay: 0.19s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(7) .wd-hover__icon svg * { transition-delay: 0.26s; }
.wd-vorteile.is-drawn .wd-hover__item:nth-child(8) .wd-hover__icon svg * { transition-delay: 0.33s; }

@media (prefers-reduced-motion: reduce) {
  .wd-hover__icon svg path, .wd-hover__icon svg rect, .wd-hover__icon svg circle { stroke-dashoffset: 0; transition: none; }
  .wd-hover__item:hover .wd-hover__icon svg { transform: none; }
}

.wd-hover__title { position: relative; z-index: 1; padding: 0 var(--space-5); }

.wd-hover__bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 0 4px 4px 0;
  background: var(--color-border);
  transition: all var(--duration-base) var(--ease-out);
}

.wd-hover__item:hover .wd-hover__bar { height: 28px; background: var(--color-gold); }

.wd-hover__label {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-navy-900);
  line-height: 1.4;
  transition: transform var(--duration-base) var(--ease-out);
}

.wd-hover__item:hover .wd-hover__label { transform: translateX(6px); }

/* Mobile: horizontal swipe-carousel instead of a long vertical stack */
@media (max-width: 639px) {
  .wd-hover__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-3);
    margin: 0 calc(var(--space-4) * -1);
    padding: 0 var(--space-4) var(--space-3);
    scrollbar-width: none;
  }

  .wd-hover__grid::-webkit-scrollbar { display: none; }

  .wd-hover__item {
    flex: 0 0 78%;
    scroll-snap-align: start;
    padding: var(--space-5) 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
  }

  .wd-hover__icon, .wd-hover__title { padding: 0 var(--space-4); }
  .wd-hover__bar { display: none; }
  .wd-hover__label { padding-left: 0; }
}

/* ============ Webdesign-Agentur — Zusatzleistungen ============ */
.wd-services { padding: var(--space-8) 0; background: var(--color-surface-alt); }

.wd-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

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

.wd-services__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.wd-services__item svg { width: 20px; height: 20px; flex: none; color: var(--color-gold-dark); }

.wd-services__item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy-900);
  line-height: 1.35;
}

/* ============ Webdesign-Agentur — Kein bisschen SEO ============ */
.wd-seo { padding: var(--space-8) 0; }

.wd-seo__box {
  background: var(--color-navy-900);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-5);
  text-align: center;
}

.wd-seo__box .section__eyebrow { color: var(--color-gold-light); }
.wd-seo__box .section__title { color: var(--color-text-on-dark); }
.wd-seo__box .section__sub { color: var(--color-text-on-dark-muted); }

.wd-seo__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 780px;
  margin: 0 auto;
}

.wd-seo__tag {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-text-on-dark);
  font-size: 14px;
  font-weight: 600;
}

/* ============ Webdesign-Agentur — Branchen ============ */
.wd-branchen { padding: var(--space-8) 0; }

.wd-branchen__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.wd-branchen__pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-navy-900);
  font-size: 14.5px;
  font-weight: 700;
}

.wd-branchen__closing {
  text-align: center;
  max-width: 620px;
  margin: var(--space-6) auto 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy-900);
  line-height: 1.5;
}

/* ============ Workshops — Hero ============ */
.ws-hero { padding: var(--space-8) 0; background: var(--color-surface-alt); }

.ws-hero__grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) { .ws-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-7); } }

.ws-hero__title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--color-navy-900);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.ws-hero__lead { font-size: 17px; color: var(--color-text-muted); max-width: 52ch; margin-bottom: var(--space-5); }

.ws-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: var(--space-5);
}

.ws-hero__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ws-hero__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ws-hero__badge-float {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: #fff;
}

.ws-hero__badge-float .value { display: block; font-weight: 800; font-size: 18px; }
.ws-hero__badge-float .label { display: block; font-size: 12px; color: var(--color-text-on-dark-muted); }

@media (max-width: 767px) {
  .ws-hero__content { text-align: center; }
  .ws-hero__meta { justify-content: center; }
  .ws-hero__lead { margin-left: auto; margin-right: auto; }
}

/* ============ Workshops — Trust / Warum der Kurs ============ */
.ws-trust { padding: var(--space-8) 0; }

.ws-trust__grid { display: grid; gap: var(--space-6); }

@media (min-width: 1024px) { .ws-trust__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-7); align-items: start; } }

.ws-trust__text p { color: var(--color-text-muted); line-height: 1.7; margin-top: var(--space-4); }

.ws-trust__profile {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.ws-trust__profile img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.ws-trust__profile strong { display: block; color: var(--color-navy-900); }
.ws-trust__profile span { font-size: 13.5px; color: var(--color-text-muted); }

.ws-trust__card {
  background: var(--color-navy-900);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  color: var(--color-text-on-dark);
}

.ws-trust__card h3 { font-size: 19px; font-weight: 700; margin-bottom: var(--space-4); }

.check-list-ws { list-style: none; padding: 0; margin: 0 0 var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }

.check-list-ws li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-text-on-dark-muted);
}

.check-list-ws li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* ============ Workshops — Kursmodule (nutzt wd-showcase / wd-features4 Grundgerüst) ============ */
.ws-module__img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-3); aspect-ratio: 4/3; }
.ws-module__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ Workshops — Preis (Einzelkarte) ============ */
.ws-pricing { padding: var(--space-8) 0; background: var(--color-surface-alt); }

.ws-pricing__card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.ws-pricing__head { margin-bottom: var(--space-5); }

.ws-pricing__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.ws-pricing__old { font-size: 20px; color: var(--color-text-muted); text-decoration: line-through; }
.ws-pricing__new { font-size: 40px; font-weight: 800; color: var(--color-navy-900); font-family: var(--font-heading); }
.ws-pricing__tag { background: var(--color-gold); color: #fff; font-weight: 700; font-size: 13px; padding: 4px 10px; border-radius: var(--radius-pill); }

.ws-pricing__hint { font-size: 13.5px; color: var(--color-text-muted); margin-bottom: var(--space-5); }

.ws-pricing .pricing__card-features { text-align: left; margin-bottom: var(--space-5); }

/* ============ Workshops — Testimonial-Grid (statisch, kein Marquee) ============ */
.ws-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (min-width: 900px) { .ws-testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ Workshops — Bonus WhatsApp-Community ============ */
.ws-bonus { padding: var(--space-8) 0; }

.ws-bonus__grid { display: grid; gap: var(--space-6); }

@media (min-width: 1024px) { .ws-bonus__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-7); align-items: center; } }

.ws-bonus__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ws-bonus__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ws-bonus__badge {
  position: absolute;
  right: var(--space-4);
  top: var(--space-4);
  background: var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: #fff;
  text-align: center;
}

.ws-bonus__badge .value { display: block; font-weight: 800; font-size: 16px; }
.ws-bonus__badge .label { display: block; font-size: 11px; opacity: 0.85; }

.ws-bonus__text p { color: var(--color-text-muted); line-height: 1.7; margin: var(--space-4) 0 var(--space-5); }

.check-list-ws--light li { color: var(--color-text-muted); }
.check-list-ws--light li::before { color: var(--color-gold-dark); }

/* ============ Über uns — Hero (nach 21st.dev hero-section-4) ============ */
.uu-hero { padding: var(--space-8) 0 var(--space-7); background: var(--color-surface-alt); overflow: hidden; }

.uu-hero__wrap { display: grid; gap: var(--space-6); align-items: center; }

@media (min-width: 1024px) { .uu-hero__wrap { grid-template-columns: 1fr 1fr; gap: var(--space-7); } }

.uu-hero__content { max-width: 560px; }

.uu-hero__title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--color-navy-900);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.uu-hero__sub { font-size: 17px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-5); }

.uu-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.uu-hero__image { position: relative; }

.uu-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.uu-dash {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  background: var(--color-navy-900);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.uu-dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border-dark);
}

.uu-dash__head span { color: var(--color-gold); }

.uu-dash__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-text-on-dark-muted);
  padding: 4px 0;
}

.uu-dash__row strong { margin-left: auto; color: #fff; font-family: var(--font-heading); font-size: 13px; }

.uu-dash__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.uu-dash__dot--green { background: #22c55e; }
.uu-dash__dot--gold { background: var(--color-gold); }
.uu-dash__dot--blue { background: #3b82f6; }

@media (max-width: 767px) {
  .uu-hero__content { text-align: center; margin: 0 auto; }
  .uu-hero__actions { justify-content: center; }
  .uu-dash { position: static; margin-top: var(--space-3); }
}

/* ============ Über uns — Profile Card (nach 21st.dev profile-card) ============ */
.uu-profile { padding: var(--space-8) 0; background: var(--color-surface); }

.uu-profile__wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) { .uu-profile__wrap { flex-direction: row; align-items: center; } }

.uu-profile__photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  background: var(--color-navy-900);
}

.uu-profile__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.uu-profile__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  text-align: center;
  margin-top: calc(var(--space-5) * -1);
}

@media (min-width: 768px) {
  .uu-profile__card { margin-left: -60px; margin-top: 0; text-align: left; position: relative; z-index: 1; }
}

.uu-profile__name { font-size: 24px; font-weight: 800; color: var(--color-navy-900); margin-bottom: 4px; }
.uu-profile__role { font-size: 14px; font-weight: 600; color: var(--color-gold-dark); margin-bottom: var(--space-4); }
.uu-profile__bio { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-5); }

.uu-profile__socials { display: flex; justify-content: center; gap: var(--space-3); }

@media (min-width: 768px) { .uu-profile__socials { justify-content: flex-start; } }

.uu-profile__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.uu-profile__social svg { width: 20px; height: 20px; }
.uu-profile__social:hover { background: var(--color-gold); transform: scale(1.06); }

/* ============ Über uns — Timeline (nach 21st.dev how-it-works-2) ============ */
.uu-timeline { padding: var(--space-8) 0; background: var(--color-surface-alt); }

.uu-timeline__list {
  list-style: none;
  margin: var(--space-7) 0 0;
  padding: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.uu-timeline__item { display: flex; gap: var(--space-4); }

.uu-timeline__marker { display: flex; flex-direction: column; align-items: center; }

.uu-timeline__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy-900);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uu-timeline__icon svg { width: 20px; height: 20px; }

.uu-timeline__line { flex: 1; width: 2px; background: var(--color-border); margin: var(--space-2) 0; min-height: 24px; }

.uu-timeline__body { padding-bottom: var(--space-6); }
.uu-timeline__item--last .uu-timeline__body { padding-bottom: 0; }

.uu-timeline__date {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gold-dark);
  margin-bottom: 4px;
}

.uu-timeline__body h3 { font-size: 18px; font-weight: 700; color: var(--color-navy-900); margin-bottom: 6px; }
.uu-timeline__body p { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.6; }

/* ============ Kontakt — Journey-Wizard (nach bs-leihhaus.de/kontakt) ============ */
.kt-contact { padding: var(--space-8) 0; background: var(--color-surface); }

.kt-wizard {
  max-width: 720px;
  margin: var(--space-6) auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.kt-wizard__progress { height: 4px; background: var(--color-border); }
.kt-wizard__progress-bar { display: block; height: 100%; width: 33.33%; background: var(--color-gold); transition: width 0.4s var(--ease-out); }

.kt-wizard__meta {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6) 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.kt-wizard__meta span:last-child { color: var(--color-gold-dark); }

.kt-wizard__step { display: none; padding: var(--space-5) var(--space-6) var(--space-6); }
.kt-wizard__step.is-active { display: block; }

.kt-wizard__step h3 { font-size: 22px; font-weight: 800; color: var(--color-navy-900); margin-bottom: var(--space-2); }
.kt-wizard__hint { font-size: 14px; color: var(--color-text-muted); margin-bottom: var(--space-5); }

.kt-wizard__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: var(--space-4);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: var(--font-body);
}

.kt-wizard__back:hover { color: var(--color-navy-900); }

.kt-wizard__options { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }

@media (min-width: 600px) { .kt-wizard__options { grid-template-columns: repeat(2, 1fr); } }

.kt-wizard__option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-navy-900);
  transition: border-color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}

.kt-wizard__option:hover { border-color: var(--color-gold); background: var(--color-surface-alt); transform: translateY(-2px); }
.kt-wizard__option.is-selected { border-color: var(--color-gold); background: var(--color-surface-alt); }

.kt-wizard__option-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy-900);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kt-wizard__option-icon svg { width: 18px; height: 18px; }

.kt-wizard__form { display: flex; flex-direction: column; gap: var(--space-4); }
.kt-wizard__field label { display: block; font-size: 13px; font-weight: 600; color: var(--color-navy-900); margin-bottom: 6px; }

.kt-wizard__field input, .kt-wizard__field textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-navy-900);
  background: var(--color-surface);
}

.kt-wizard__field input:focus, .kt-wizard__field textarea:focus { outline: none; border-color: var(--color-gold); }

.kt-wizard__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

.kt-wizard__consent span { font-size: 13px; line-height: 1.5; color: var(--color-text-muted); }
.kt-wizard__consent a { color: var(--color-navy-900); text-decoration: underline; }
.kt-wizard__consent a:hover { color: var(--color-gold-dark); }

.kt-wizard__error {
  font-size: 13px;
  color: #b3261e;
  background: #fdecea;
  border: 1px solid #f5c6c2;
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.kt-wizard__error a { color: #b3261e; text-decoration: underline; }

.kt-wizard__form-actions { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); margin-top: var(--space-2); }
.kt-wizard__form-actions .btn { margin: 0; }

.kt-wizard__success { text-align: center; padding: var(--space-4) 0; }

.kt-wizard__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.kt-wizard__success h3 { margin-bottom: var(--space-3); }
.kt-wizard__success p { color: var(--color-text-muted); max-width: 44ch; margin: 0 auto; }

@media (max-width: 767px) {
  .kt-wizard__form-actions { flex-direction: column-reverse; align-items: stretch; }
}

/* ============ Kontakt — Bento Trust-Section ============ */
.kt-bento { padding: var(--space-8) 0; background: var(--color-navy-900); color: #fff; }

.kt-bento__logos { text-align: center; padding-bottom: var(--space-7); border-bottom: 1px solid var(--color-border-dark); margin-bottom: var(--space-7); }
.kt-bento__logos p { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-on-dark-muted); margin-bottom: var(--space-4); }

.kt-bento__logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-6); }
.kt-bento__logos-row img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity var(--duration-base) var(--ease-out); }
.kt-bento__logos-row img:hover { opacity: 1; }

.kt-bento__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-4);
}

.kt-bento__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; text-align: center; margin-bottom: var(--space-4); }
.kt-bento__sub { text-align: center; color: var(--color-text-on-dark-muted); max-width: 560px; margin: 0 auto var(--space-7); }

.kt-bento__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }

@media (min-width: 768px) { .kt-bento__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .kt-bento__card--lg { grid-column: span 2; } }

.kt-bento__card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  background: #050505;
  overflow: hidden;
  transition: border-color var(--duration-base) var(--ease-out);
}

.kt-bento__card:hover { border-color: rgba(255, 255, 255, 0.2); }

.kt-bento__mock { flex: 1; display: flex; align-items: center; justify-content: center; padding: var(--space-5); }
.kt-bento__text { border-top: 1px solid rgba(255, 255, 255, 0.06); background: rgba(255, 255, 255, 0.01); padding: var(--space-5); }
.kt-bento__text h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: var(--space-2); }
.kt-bento__text p { font-size: 13.5px; color: var(--color-text-on-dark-muted); line-height: 1.5; }

.kt-bento__stat-value { font-size: 56px; font-weight: 800; color: #fff; font-family: var(--font-heading); }

.kt-bento__chat { width: 100%; max-width: 320px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-md); background: #000; overflow: hidden; }
.kt-bento__chat-head { display: flex; gap: 5px; padding: var(--space-3); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.kt-bento__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.kt-bento__chat-body { padding: var(--space-3); display: flex; flex-direction: column; gap: 8px; }
.kt-bento__chat-msg { font-size: 11.5px; padding: 8px 10px; border-radius: 10px; max-width: 88%; line-height: 1.4; }
.kt-bento__chat-msg--in { background: rgba(255, 255, 255, 0.06); color: #fff; align-self: flex-start; }
.kt-bento__chat-msg--out { background: var(--color-gold); color: #111; align-self: flex-end; }
.kt-bento__chat-muted { font-size: 10px; color: var(--color-text-on-dark-muted); text-align: center; margin-top: 2px; }

.kt-bento__booking { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 8px; }
.kt-bento__booking-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; background: rgba(255, 255, 255, 0.02); font-size: 13px; color: #fff; }
.kt-bento__booking-row--muted { color: var(--color-text-on-dark-muted); font-size: 12px; }
.kt-bento__badge-mini { background: var(--color-gold); color: #111; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-pill); }


/* ============ Städte-Landingpages (lokales SEO) ============ */
.city-hero {
  position: relative;
  background: var(--color-navy-900);
  padding: calc(var(--space-8) + var(--space-5)) 0 var(--space-8);
  overflow: hidden;
}

.city-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(232, 149, 10, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.city-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.city-hero__content h1 {
  margin-top: var(--space-4);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-text-on-dark);
  letter-spacing: -0.01em;
}

.city-hero__content h1 em { font-style: normal; color: var(--color-gold-light); }

.city-hero__content .hero__sub {
  margin: var(--space-4) auto 0;
  max-width: 580px;
  color: var(--color-text-on-dark-muted);
}

.city-hero__content .hero__actions { justify-content: center; margin-top: var(--space-5); }
.city-hero__content .hero__badges { justify-content: center !important; margin-top: var(--space-6) !important; }

.city-intro { padding: var(--space-8) 0; background: var(--color-surface); }

.city-intro__inner { max-width: 760px; margin: 0 auto; }
.city-intro__inner h2 { font-size: 24px; font-weight: 700; color: var(--color-navy-900); margin-bottom: var(--space-3); }
.city-intro__inner p { font-size: 15.5px; line-height: 1.75; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.city-intro__inner strong { color: var(--color-navy-900); }

.city-remote-note {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-5);
}

.city-remote-note svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-gold-dark); margin-top: 2px; }
.city-remote-note p { margin-bottom: 0 !important; font-size: 14px !important; }
