/* ---------------------------------------------
   Startseite - Hero
--------------------------------------------- */

.hero {
  padding-top: calc(76px + var(--space-2xl));
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__watermark {
  position: absolute;
  top: -14%;
  right: -12%;
  width: min(75vw, 920px);
  height: auto;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  margin-bottom: var(--space-md);
}



.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__visual {
    order: 2;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: calc(76px + var(--space-lg));
    min-height: auto;
    padding-bottom: var(--space-2xl);
  }
}

/* ---------------------------------------------
   Hero - Helle Variante (zentriert)
--------------------------------------------- */

.hero--light .hero__layout {
  grid-template-columns: 1fr;
  padding-inline: clamp(1.25rem, 2.5vw, 2.5rem);
}

.hero--light .hero__content {
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
}

.hero--light .hero__content .eyebrow {
  display: block;
  text-wrap: balance;
}

.hero--light .hero__content .eyebrow::before {
  display: none;
}

@media (max-width: 980px) {
  .hero--light .hero__content .eyebrow {
    max-width: 46ch;
    margin-inline: auto;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 600px) {
  .hero--light .hero__content .eyebrow {
    max-width: 30ch;
    letter-spacing: 0.12em;
  }
}

.hero--light h1 {
  font-size: clamp(2.6rem, 5.9vw, 5.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero-title-line {
  display: block;
}

@media (min-width: 981px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

/* Rotierende Nutzenzeile unterhalb der H1 */
.hero__rotate-benefits {
  display: grid;
}

.hero__benefit-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: var(--lh-snug);
  color: var(--c-gray-700);
  font-weight: 600;
  text-align: center;
}

.hero__benefit-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

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

.hero--light .lead {
  margin-inline: auto;
}

.hero--light .hero__lead {
  max-width: 38ch;
  text-wrap: balance;
}

.hero--light .hero__actions {
  justify-content: center;
  margin-top: var(--space-lg);
}

.hero__cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-dot-green);
  flex-shrink: 0;
  transition: box-shadow var(--t-base) var(--ease);
}

/* ---------------------------------------------
   Hero-CTA "Projekt starten" - Premium Cover-Sweep
--------------------------------------------- */

.hero--light .hero__actions .btn--primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px -18px rgba(10, 10, 11, 0.4);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background var(--t-fast) var(--ease);
}

.hero--light .hero__actions .btn--primary > * {
  position: relative;
  z-index: 1;
}

.hero--light .hero__actions .btn--primary::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(210, 210, 220, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 80%
  );
  transform: translateX(-130%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero--light .hero__actions .btn--primary svg:last-child {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .hero--light .hero__actions .btn--primary:hover {
    background: var(--c-black-elevated);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(10, 10, 11, 0.55);
  }

  .hero--light .hero__actions .btn--primary:hover::after {
    transform: translateX(130%);
  }

  .hero--light .hero__actions .btn--primary:hover svg:last-child {
    transform: translateX(6px);
  }

  .hero--light .hero__actions .btn--primary:hover .hero__cta-dot {
    box-shadow: 0 0 0 6px rgba(40, 200, 64, 0.2), 0 0 12px 2px rgba(40, 200, 64, 0.55);
  }

  .hero--light .hero__actions .btn--primary:hover .power-symbol {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--light .hero__actions .btn--primary,
  .hero--light .hero__actions .btn--primary::after,
  .hero--light .hero__actions .btn--primary svg:last-child {
    transition: none;
  }

  .hero--light .hero__actions .btn--primary::after {
    display: none;
  }
}

.hero--light .hero__watermark {
  display: none;
}

.hero--light {
  background-image:
    linear-gradient(180deg, rgba(244, 244, 243, 0.45) 0%, rgba(244, 244, 243, 0.7) 60%, rgba(244, 244, 243, 0.88) 100%),
    url("../assets/images/hero-bg.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

@media (max-width: 720px) {
  .hero--light {
    background-position: top center;
  }
}

/* Grossformat-Hintergrundtypografie (Tiefe/Premium-Textur) */

.hero__bg-marquee {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-marquee--top {
  top: 4%;
}

.hero__bg-marquee--bottom {
  top: 44%;
}

.hero__bg-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(5rem, 15vw, 13.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-black);
  opacity: 0.05;
  user-select: none;
}

.hero__bg-track--left {
  animation: hero-marquee-left 70s linear infinite;
}

.hero__bg-track--right {
  transform: translateX(-50%);
  animation: hero-marquee-right 70s linear infinite;
}

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

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

@media (max-width: 720px) {
  .hero__bg-track {
    font-size: clamp(6rem, 25vw, 9rem);
  }

  .hero__bg-marquee--top {
    top: 3%;
  }

  .hero__bg-marquee--bottom {
    display: block;
    top: auto;
    bottom: 16%;
  }
}

/* AVIO-Projektkarte */

.hero__card-stage {
  position: relative;
  z-index: 1;
  margin: var(--space-xl) auto 0;
  max-width: 660px;
  perspective: 1200px;
  --card-progress: 0;
}

.hero__card-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 16%;
  right: 16%;
  bottom: -14px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.34) 0%, transparent 75%);
  filter: blur(calc(7px + (1 - var(--card-progress)) * 9px));
  opacity: calc(0.4 + var(--card-progress) * 0.6);
  transform: scaleX(calc(0.85 + var(--card-progress) * 0.15));
  pointer-events: none;
}

.hero__card-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 2%;
  right: 2%;
  bottom: -52px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.16) 0%, transparent 75%);
  filter: blur(calc(22px + (1 - var(--card-progress)) * 18px));
  opacity: calc(var(--card-progress) * 0.85);
  transform: translateY(calc((1 - var(--card-progress)) * 24px)) scaleX(calc(0.82 + var(--card-progress) * 0.18));
  pointer-events: none;
}

.hero__card-flip {
  position: relative;
  z-index: 1;
  cursor: pointer;
  transform-style: preserve-3d;
  transform-origin: center bottom;
  transform:
    translateY(calc((1 - var(--card-progress)) * 90px))
    scale(calc(0.94 + var(--card-progress) * 0.06))
    rotateX(calc((1 - var(--card-progress)) * 6deg))
    translateZ(calc((1 - var(--card-progress)) * -40px));
  opacity: var(--card-progress);
  will-change: transform, opacity;
}

.hero__card-flip:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 6px;
  border-radius: var(--radius-lg);
}

.hero__card-flip__inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.1s var(--ease);
}

.hero__card-flip:hover .hero__card-flip__inner,
.hero__card-flip:focus-visible .hero__card-flip__inner,
.hero__card-flip.is-flipped .hero__card-flip__inner {
  transform: rotateY(180deg);
}

.hero__card {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--c-black-elevated) 0%, var(--c-black) 55%);
  box-shadow:
    0 2px 4px rgba(10, 10, 11, 0.06),
    0 18px 40px -16px rgba(10, 10, 11, 0.30),
    0 90px 140px -60px rgba(10, 10, 11, 0.38);
  text-align: left;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.hero__card--front {
  position: relative;
}

.hero__card--back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: rotateY(180deg);
}

.hero__card-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.hero__card-icon {
  width: 22px;
  height: 22px;
  color: var(--c-gray-300);
}

.hero__card-tag {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray-500);
}

.hero__card-text {
  position: relative;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

/* Desktop: kontrollierter 2-Zeilen-Umbruch */
.hero__card-text__line {
  display: block;
}

/* Mobil (<520px): Spans fließen als Inline-Text */
@media (max-width: 520px) {
  .hero__card-text__line {
    display: inline;
  }
  .hero__card-text__line + .hero__card-text__line::before {
    content: " ";
  }
}

.hero__card-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__card-brand {
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-gray-300);
}

.hero__card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--c-white);
  flex-shrink: 0;
}

.hero__card-action .power-symbol {
  width: 16px;
  height: 16px;
}

/* Rückseite der Hero-Karte: Das Team hinter AVIO (kompakt) */

.hero__card-back__dots {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  gap: 6px;
}

.hero__card-back__dots .dot {
  width: 9px;
  height: 9px;
}

.hero__card-back__dots .dot--red {
  background: var(--c-dot-red);
}

.hero__card-back__dots .dot--yellow {
  background: var(--c-dot-yellow);
}

.hero__card-back__dots .dot--green {
  background: var(--c-dot-green);
}

.hero__card-back__eyebrow {
  margin: 0 0 var(--space-sm);
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray-300);
}

.hero__card-back__people {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.hero__card-back__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__card-back__photo {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero__card-back__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
}

.hero__card-back__name {
  margin-top: var(--space-2xs);
  font-family: var(--font-base);
  font-weight: 600;
  font-style: normal;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.hero__card-back__role {
  margin-top: var(--space-3xs);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gray-500);
}

.hero__card-back__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--c-gray-500);
}

.hero__card-back__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__card-back__brand {
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--c-gray-300);
}

.hero__card-back__claim {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-small);
  color: var(--c-gray-300);
}

@media (max-width: 720px) {
  .hero__card {
    padding: var(--space-md);
  }

  .hero__card-flip {
    transform:
      translateY(calc((1 - var(--card-progress)) * 40px))
      scale(calc(0.98 + var(--card-progress) * 0.02))
      rotateX(calc((1 - var(--card-progress)) * 3deg))
      translateZ(calc((1 - var(--card-progress)) * -20px));
  }

  .hero__card-stage::before {
    height: 20px;
  }

  .hero__card-stage::after {
    height: 56px;
  }

  .hero__card-back__people {
    gap: var(--space-sm);
  }

  .hero__card-back__photo {
    width: 88px;
    height: 88px;
  }

  .hero__card-back__footer {
    flex-wrap: wrap;
    gap: var(--space-2xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--light .hero__watermark {
    opacity: 0.05;
    animation: none;
  }

  .hero__card-flip {
    transform: none;
    opacity: 1;
  }

  .hero__card-stage::before {
    opacity: 0.7;
    filter: blur(8px);
    transform: none;
  }

  .hero__card-stage::after {
    opacity: 0.45;
    filter: blur(28px);
    transform: none;
  }
}

/* ---------------------------------------------
   Navbar - auf heller Hero (Startseite)
--------------------------------------------- */

.navbar--on-light:not(.is-scrolled) {
  background: rgba(244, 244, 243, 0.72);
  border-bottom-color: rgba(10, 10, 11, 0.06);
}

.navbar--on-light:not(.is-scrolled) .logo__img {
  filter: invert(1);
}

.navbar--on-light:not(.is-scrolled) .nav-links a {
  color: var(--c-gray-600);
}

.navbar--on-light:not(.is-scrolled) .nav-links a:hover,
.navbar--on-light:not(.is-scrolled) .nav-links a[aria-current="page"] {
  color: var(--c-black);
}

.navbar--on-light:not(.is-scrolled) .btn--ghost {
  border-color: rgba(10, 10, 11, 0.18);
  color: var(--c-black);
}

.navbar--on-light:not(.is-scrolled) .btn--ghost:hover {
  border-color: rgba(10, 10, 11, 0.45);
}

.navbar--on-light:not(.is-scrolled) .nav-toggle {
  border-color: rgba(10, 10, 11, 0.18);
}

.navbar--on-light:not(.is-scrolled) .nav-toggle span {
  background: var(--c-black);
}

@media (max-width: 880px) {
  .navbar--on-light .nav-menu .btn {
    margin-top: var(--space-sm);
  }
}

/* ---------------------------------------------
   Problem
--------------------------------------------- */

.problem__section-head {
  max-width: none;
}

.problem__section-head h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

/* Dunkler Einstiegsbereich: schwarzer Header ueber der hellen Problem-Grid */
#problem {
  padding-block: 0;
  background: var(--c-off-white);
}

.problem__dark-head {
  background: var(--c-black);
  padding-block: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.problem__dark-head .section-head {
  margin-bottom: 0;
}

.problem__dark-head h2 {
  color: var(--c-white);
}

.problem__dark-head .lead {
  color: rgba(255, 255, 255, 0.58);
}

/* Minimaler Datum + Button CTA direkt in der dunklen Section */
.problem-cta {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.problem-cta__date {
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
  text-align: center;
  line-height: 1.55;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.problem-cta__now {
  color: var(--c-white);
  font-weight: 700;
  font-style: normal;
}

.problem-cta__when {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.problem-cta__date .leistungen-cta__deadline {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.18rem 0.65rem;
  font-size: inherit;
  font-weight: 700;
}

/* Sehr subtile Trennlinie am Uebergang */
.problem__dark-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.problem__light-body {
  background: var(--c-off-white);
  color: var(--c-black);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  overflow: hidden;
}

/* ---------------------------------------------
   Übergangs-Marquee: Problem → Lösung
--------------------------------------------- */

.section-marquee {
  display: block;
  background: var(--c-off-white);
  overflow: hidden;
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--c-line-light);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-base) var(--ease);
}

.section-marquee:hover {
  background: var(--c-gray-100);
}

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

.section-marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-base);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-black);
  user-select: none;
  animation: section-marquee-scroll 55s linear infinite;
}

.section-marquee__sep {
  font-size: 0.35em;
  color: var(--c-dot-green);
  vertical-align: middle;
  opacity: 0.9;
}

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

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

.problem__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: stretch;
}

/* Dezente Hintergrund-Boegen */

.problem__grid::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 11, 0.06);
  background: radial-gradient(circle, rgba(10, 10, 11, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.problem__grid::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 6%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 11, 0.05);
  background: radial-gradient(circle, rgba(10, 10, 11, 0.045), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Linke Kachel: Status-quo-Text als helle Surface */

.problem__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  background: var(--c-white);
  border: 1px solid rgba(10, 10, 11, 0.04);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 168px;
  padding: var(--space-lg);
  box-shadow: 0 60px 120px -80px rgba(10, 10, 11, 0.18);
  position: relative;
  z-index: 1;
}

.problem__intro .section-head {
  margin-bottom: 0;
}

/* Eyebrow als gruener Punkt statt Linie - gleiche Akzentlogik wie Pill-Dots */

.problem__intro .eyebrow::before,
.insight-video__content .eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-dot-green);
  box-shadow: 0 0 0 4px rgba(40, 200, 64, 0.14);
  opacity: 1;
}

.problem__intro h2 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}

.problem__intro .lead {
  line-height: 1.55;
  text-wrap: balance;
}

.problem__intro-closing {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-line-light);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.5);
  line-height: 1.5;
}

/* Video-Bereich: Einleitungs-Heading + Medienblock */

.video-section-heading {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  letter-spacing: var(--sh-ls);
  line-height: var(--sh-lh);
  color: var(--c-black);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  max-width: 760px;
  text-wrap: balance;
}

.insight-video {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-top: 0;
  margin-inline: calc(-1 * var(--space-sm));
}

.insight-video__frame {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-black);
  border: 1px solid var(--c-line-light);
  box-shadow: none;
}

.insight-video__media {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0) 55%, rgba(10, 10, 11, 0.32) 100%),
    linear-gradient(
      100deg,
      rgba(10, 10, 11, 0.82) 0%,
      rgba(10, 10, 11, 0.5) 35%,
      rgba(10, 10, 11, 0.12) 65%,
      rgba(10, 10, 11, 0.08) 100%
    );
  opacity: 1;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}

.insight-video__content {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  max-width: min(46%, 420px);
  color: var(--c-white);
  transition: opacity var(--t-base) var(--ease);
}

.insight-video__content .eyebrow {
  color: var(--c-gray-300);
}

.insight-video__content h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}

.insight-video__duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-small);
  color: var(--c-gray-300);
}

.insight-video__duration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-dot-green);
  box-shadow: 0 0 0 4px rgba(40, 200, 64, 0.14);
  flex-shrink: 0;
}

.insight-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-black);
  cursor: pointer;
  box-shadow: 0 14px 32px -14px rgba(10, 10, 11, 0.55);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
    opacity var(--t-base) var(--ease);
}

.insight-video__play svg {
  width: 26px;
  height: 26px;
  margin-left: 2px;
}

.insight-video__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 18px 40px -16px rgba(10, 10, 11, 0.6);
}

.insight-video__play:focus-visible {
  outline: 2px solid rgba(10, 10, 11, 0.35);
  outline-offset: 4px;
}

.insight-video__play::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.insight-video__frame.is-playing .insight-video__overlay,
.insight-video__frame.is-playing .insight-video__play,
.insight-video__frame.is-playing .insight-video__content {
  opacity: 0;
  pointer-events: none;
}

/* Autoplay-Modus: Overlay + Text bleiben sichtbar, Play-Button wird versteckt */
.insight-video__frame.has-autoplay .insight-video__play {
  display: none;
}

.insight-video__frame.has-autoplay.is-playing .insight-video__overlay,
.insight-video__frame.has-autoplay.is-playing .insight-video__content {
  opacity: 1;
  pointer-events: auto;
}

/* Weisse Info-Kachel: ueberlappt den unteren Rand des Videos */

.insight-video__facts {
  position: relative;
  z-index: 1;
  margin: -64px var(--space-sm) 0;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 90px -60px rgba(10, 10, 11, 0.25);
  padding: var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  transition: opacity var(--t-base) var(--ease);
}

.insight-video__fact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}

.insight-video__fact:not(:first-child) {
  padding-left: var(--space-lg);
  border-left: 1px solid var(--c-line-light);
}

.insight-video__fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(40, 200, 64, 0.25);
  color: var(--c-dot-green);
  margin-bottom: var(--space-2xs);
}

.insight-video__fact-icon svg {
  width: 18px;
  height: 18px;
}

.insight-video__fact h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-black);
}

.insight-video__fact p {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--c-gray-600);
}

.insight-video__frame.is-playing ~ .insight-video__facts {
  opacity: 0;
  pointer-events: none;
}

.problem-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
}

/* Rechte Kacheln: Diagnose-Pills */

.problem-item {
  position: relative;
  overflow: hidden;
  background: var(--c-black);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px -50px rgba(10, 10, 11, 0.4);
  transition: background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.problem-item > * {
  position: relative;
  z-index: 1;
}

.problem-item::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.05) 60%,
    transparent 80%
  );
  transform: translateX(-130%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.problem-item.is-open,
.problem-item:hover {
  background: var(--c-black-elevated);
}

.problem-item__heading {
  margin: 0;
  font-size: 1em;
}

.problem-item__trigger {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
  background: none;
  border: none;
  border-radius: var(--radius-xl);
  font: inherit;
  text-align: left;
  color: var(--c-white);
  cursor: pointer;
}

.problem-item__trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
}

.problem-item__index {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--c-gray-500);
  flex-shrink: 0;
  width: 2ch;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-base) var(--ease);
}

.problem-item__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.problem-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-dot-green);
  box-shadow: 0 0 0 4px rgba(40, 200, 64, 0.14);
  flex-shrink: 0;
  transition: box-shadow var(--t-base) var(--ease);
}

.problem-item__title {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-white);
}

.problem-item.is-open .problem-item__index,
.problem-item:hover .problem-item__index {
  color: var(--c-white);
}

.problem-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--c-white);
  flex-shrink: 0;
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease);
}

.problem-item__icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease);
}

.problem-item.is-open .problem-item__icon,
.problem-item:hover .problem-item__icon {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.problem-item.is-open .problem-item__icon svg {
  transform: rotate(90deg);
}

@media (hover: hover) and (pointer: fine) {
  .problem-item:hover {
    box-shadow: 0 36px 80px -50px rgba(10, 10, 11, 0.5);
  }

  .problem-item:hover::after {
    transform: translateX(130%);
  }

  .problem-item:hover .problem-item__dot {
    box-shadow: 0 0 0 5px rgba(40, 200, 64, 0.18), 0 0 12px 2px rgba(40, 200, 64, 0.45);
  }

  .problem-item:hover .problem-item__icon {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-item::after {
    display: none;
  }
}

.problem-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s var(--ease);
}

.problem-item.is-open .problem-item__panel {
  grid-template-rows: 1fr;
}

.problem-item__panel-inner {
  min-height: 0;
  overflow: hidden;
  margin: 0 var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Panel-Text: Basis-Padding (greift auch wenn Section kein .section--light hat) */
.problem-item__panel-inner p {
  padding: var(--space-sm) 0 var(--space-md);
  color: var(--c-gray-300);
  line-height: var(--lh-body);
}

/* Überschreibt Farbe + unteres Padding in explizit hellen Sections */
.section--light .problem-item__panel-inner p {
  margin: 0;
  padding: var(--space-sm) 0 var(--space-lg);
  color: rgba(255, 255, 255, 0.86);
  line-height: var(--lh-body);
}

@media (max-width: 880px) {
  .problem__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .problem__grid::before,
  .problem__grid::after {
    display: none;
  }

  .problem__intro {
    padding: var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 76px;
  }

  .insight-video {
    margin-top: var(--space-lg);
  }

  .insight-video__frame {
    border-radius: var(--radius-lg);
  }

  .insight-video__play {
    width: 60px;
    height: 60px;
  }

  .insight-video__play svg {
    width: 20px;
    height: 20px;
  }

  .insight-video__content {
    left: var(--space-md);
    max-width: 60%;
  }

  .insight-video__play::after {
    inset: -10px;
  }

  .insight-video__facts {
    margin: -40px var(--space-2xs) 0;
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .insight-video__fact:not(:first-child) {
    padding-left: var(--space-md);
  }

  .problem-item {
    border-radius: var(--radius-lg);
  }

  .problem-item__trigger {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-xs);
    border-radius: var(--radius-lg);
  }

  .problem-item__panel-inner {
    margin: 0 var(--space-md);
  }
}

@media (max-width: 520px) {
  .problem-item__divider {
    display: none;
  }

  .insight-video__facts {
    grid-template-columns: 1fr;
    margin: -24px var(--space-2xs) 0;
    gap: var(--space-sm);
  }

  .insight-video__fact:not(:first-child) {
    padding-left: 0;
    padding-top: var(--space-sm);
    border-left: none;
    border-top: 1px solid var(--c-line-light);
  }
}

/* ---------------------------------------------
   Loesung: Vier Bausteine
--------------------------------------------- */

.loesung__head h2 {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  line-height: var(--sh-lh);
  letter-spacing: var(--sh-ls);
  margin-bottom: var(--space-sm);
}

/* Sticky-Stack braucht ein nicht geclipptes Section-Element */
#loesung {
  overflow: visible;
}

.loesung-rows {
  display: flex;
  flex-direction: column;
}

.loesung-row {
  position: relative;
}

.loesung-row__inner {
  border-top: 1px solid var(--c-line-dark);
  padding-block: var(--space-md);
}

.loesung-row:last-child .loesung-row__inner {
  border-bottom: 1px solid var(--c-line-dark);
}

.loesung-row__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.loesung-row__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.loesung-row__index {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-gray-500);
  font-variant-numeric: tabular-nums;
}

.loesung-row__title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.loesung-row__text {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.7;
}

.loesung-row__visual {
  width: 100%;
}

/* Portrait-Rahmen: rechte Visuals wirken hochkant statt boxig */
.loesung-row__visual .browser-frame {
  display: flex;
  flex-direction: column;
  aspect-ratio: 3 / 4;
}

.loesung-row__visual .browser-frame__body {
  flex: 1;
  min-height: 0;
  padding: var(--space-md);
}

.loesung-row__visual .browser-frame__body--video {
  padding: 0;
  overflow: hidden;
}

/* Clean Video-Card (kein Browser-Frame) */
.loesung-video-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.loesung-video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gemeinsame Sticky-Buehne: alle vier Zeilen leben in EINER angepinnten
   Stage und verteilen dort ihre Hoehe ueber den Scroll-Fortschritt
   (--row-p, via JS) - die aktive Zeile ist gross/offen, die anderen
   Zeilen sind kompakt, aber durch overflow:hidden weiterhin sichtbar
   (gecroppt statt ausgeblendet); am Ende stehen alle vier Zeilen
   sauber gestapelt im Blick */
@media (min-width: 981px) {
  .loesung-stage-track {
    position: relative;
    height: 240vh;
  }

  .loesung-stage {
    position: -webkit-sticky;
    position: sticky;
    top: calc(76px + var(--space-sm));
    height: 86vh;
    overflow: hidden;
  }

  .loesung-rows {
    height: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-pad);
  }

  .loesung-row {
    overflow: hidden;
    flex: 0 0 calc(18% + var(--row-p, 0) * 28%);
    transition: flex-basis 0.1s linear;
  }

  .loesung-row:last-child .loesung-row__inner {
    border-bottom: none;
  }

  .loesung-row__inner {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .loesung-row__content {
    grid-template-columns: minmax(230px, 0.9fr) minmax(260px, 1.3fr) minmax(240px, 1fr);
    align-items: start;
    gap: var(--space-sm) clamp(3rem, 5vw, 5rem);
  }

  .loesung-row__text {
    max-width: 46ch;
  }

  /* Title: dimmt bei inaktiven Zeilen, leuchtet bei der aktiven */
  .loesung-row__title {
    opacity: calc(0.48 + var(--row-p, 0) * 0.52);
    will-change: opacity;
  }

  /* Description: stark gedämpft → fast weiß + sanfter Aufbau von unten */
  .loesung-row__text {
    opacity: calc(0.32 + var(--row-p, 0) * 0.58);
    transform: translateY(calc((1 - var(--row-p, 0)) * 14px));
    will-change: opacity, transform;
  }

  /* Index-Zahl: minimal dimmen wenn inaktiv */
  .loesung-row__index {
    opacity: calc(0.45 + var(--row-p, 0) * 0.55);
  }
}

/* Reduced-Motion: keine Pinning-/Crop-Buehne, normale Zeilenliste */
@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  .loesung-stage-track {
    height: auto;
  }

  .loesung-stage {
    position: static;
    height: auto;
    overflow: visible;
  }

  .loesung-row {
    overflow: visible;
    flex: 1 1 auto;
  }

  /* Bei reduced-motion: nur Helligkeit, kein Transform */
  .loesung-row__title,
  .loesung-row__text,
  .loesung-row__index {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 560px) {
  .loesung-row__visual .browser-frame__body {
    padding: var(--space-sm);
  }
  .loesung-row__visual .browser-frame__body--video {
    padding: 0;
  }
}

/* Loesung - Visual 01: Audit/Wireframe (Positionierung & Strategie) */

.audit-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-sm);
}

.audit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.audit-row__bar {
  display: block;
  flex: 1;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--c-line-dark);
}

.audit-row__bar--lg {
  flex: 1 1 70%;
}

.audit-row__bar--sm {
  flex: 0 0 42%;
}

.audit-row__bar--cta {
  flex: 0 0 88px;
  height: 26px;
  border: 1px solid var(--c-gray-700);
  background: transparent;
}

.audit-row__tag {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gray-500);
  border: 1px dashed var(--c-line-dark);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
}

.audit-row__tag--accent {
  color: var(--c-dot-green);
  border-color: rgba(40, 200, 64, 0.35);
}

/* Loesung - Visual 03: Performance-Score (Technik & Performance) */

.perf-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.perf-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--c-line-dark);
}

.perf-row:last-child {
  border-bottom: none;
}

.perf-row__label {
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-gray-500);
}

.perf-row__value {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Loesung - Visual 04: Anfrage-Quiz (Geführte Anfrageführung) */

.quiz-mockup {
  width: 100%;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-md);
}

.quiz-mockup__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quiz-mockup__progress {
  display: flex;
  gap: var(--space-3xs);
}

.quiz-mockup__step {
  flex: 1;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--c-line-dark);
}

.quiz-mockup__step.is-done {
  background: var(--c-gray-500);
}

.quiz-mockup__step.is-current {
  background: var(--c-dot-green);
}

.quiz-mockup__question {
  font-size: 1.05rem;
  font-weight: 700;
}

.quiz-mockup__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
}

.quiz-mockup__options--stacked {
  flex-direction: column;
}

.quiz-mockup__option {
  font-size: var(--fs-small);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-line-dark);
  color: var(--c-gray-500);
}

.quiz-mockup__options--stacked .quiz-mockup__option {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
}

.quiz-mockup__option.is-active {
  border-color: var(--c-white);
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
}

.quiz-mockup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2xs);
}

.quiz-mockup__meta {
  font-size: var(--fs-small);
  color: var(--c-gray-500);
}

.quiz-mockup__cta {
  flex-shrink: 0;
  font-size: var(--fs-small);
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--c-white);
  color: var(--c-black);
}

/* ---------------------------------------------
   Leistungen-Teaser
--------------------------------------------- */

/* Scroll-Reveal-Einleitung */
.leistungen-reveal {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-md);
}

.leistungen-reveal .eyebrow {
  margin-bottom: var(--space-md);
}

.leistungen-reveal__text {
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 100%;
}

.leistungen-reveal__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: rgba(10, 10, 11, 0.52);
  max-width: 660px;
  margin: var(--space-md) 0 0;
  line-height: 1.65;
}

.word-reveal {
  display: inline;
  color: rgba(10, 10, 11, 0.13);
  transition: color 0.38s ease;
}

.word-reveal.is-lit {
  color: rgba(10, 10, 11, 0.86);
}

.word-reveal--key.is-lit {
  color: rgba(10, 10, 11, 1);
}

/* Abschluss-CTA unter den Kacheln — Premium CTA-Strip */
.leistungen-cta {
  margin-top: var(--space-xl);
  padding: 0;
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  background: var(--c-white);
  box-shadow:
    0 1px 3px rgba(10, 10, 11, 0.04),
    0 10px 32px -12px rgba(10, 10, 11, 0.09);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .leistungen-cta:hover {
    border-color: rgba(10, 10, 11, 0.15);
    box-shadow:
      0 1px 3px rgba(10, 10, 11, 0.05),
      0 16px 40px -10px rgba(10, 10, 11, 0.13);
  }
}

.leistungen-cta__text {
  padding: var(--space-lg) clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  justify-content: center;
}

.leistungen-cta__label {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--c-black);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0;
}

.leistungen-cta__subline {
  font-size: clamp(0.85rem, 1.2vw, 0.96rem);
  color: rgba(10, 10, 11, 0.52);
  margin: 0;
  line-height: 1.6;
}

.leistungen-cta__now {
  color: var(--c-black);
  font-weight: 800;
  font-style: normal;
}

/* Trust signals (middle column) — horizontal row */
.leistungen-cta__trust {
  padding: var(--space-lg) clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid var(--c-line-light);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-shrink: 0;
  list-style: none;
  margin: 0;
}

.leistungen-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.78rem, 1.05vw, 0.875rem);
  color: var(--c-gray-600);
  white-space: nowrap;
  line-height: 1.4;
}

.leistungen-cta__trust-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--avio-green);
  flex-shrink: 0;
}

/* Dark action panel (right) — diagonal left edge via clip-path */
.leistungen-cta__action {
  background: var(--c-black);
  padding: var(--space-lg) clamp(1.75rem, 3.5vw, 2.75rem) var(--space-lg) clamp(3rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(2.75rem 0, 100% 0, 100% 100%, 0 100%);
}

.leistungen-cta__when {
  color: rgba(10, 10, 11, 0.82);
  font-weight: 600;
}

.leistungen-cta__cal-icon {
  flex-shrink: 0;
  opacity: 0.65;
  margin: 0 0.05rem;
}

.leistungen-cta__deadline {
  display: inline-flex;
  align-items: center;
  color: var(--c-black);
  font-weight: 700;
  background: rgba(10, 10, 11, 0.07);
  border: 1px solid rgba(10, 10, 11, 0.14);
  border-radius: var(--radius-pill);
  padding: 0.18rem 0.65rem;
  letter-spacing: -0.01em;
}

.leistungen-cta .btn--primary {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  box-shadow: 0 10px 24px -16px rgba(10, 10, 11, 0.45);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background var(--t-fast) var(--ease);
}

.leistungen-cta .btn--primary > * {
  position: relative;
  z-index: 1;
}

.leistungen-cta .btn--primary::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(210, 210, 220, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 80%
  );
  transform: translateX(-130%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.leistungen-cta .btn--primary svg:last-child {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .leistungen-cta .btn--primary:hover {
    background: var(--c-black-elevated);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -18px rgba(10, 10, 11, 0.55);
  }

  .leistungen-cta .btn--primary:hover::after {
    transform: translateX(130%);
  }

  .leistungen-cta .btn--primary:hover svg:last-child {
    transform: translateX(6px);
  }

  .leistungen-cta .btn--primary:hover .hero__cta-dot {
    box-shadow: 0 0 0 6px rgba(40, 200, 64, 0.2), 0 0 12px 2px rgba(40, 200, 64, 0.55);
  }

  .leistungen-cta .btn--primary:hover .power-symbol {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  }
}

@media (prefers-reduced-motion: reduce) {
  .leistungen-cta .btn--primary,
  .leistungen-cta .btn--primary::after,
  .leistungen-cta .btn--primary svg:last-child {
    transition: none;
  }
  .leistungen-cta .btn--primary::after {
    display: none;
  }
}

/* Tablet: hide trust signals (too cramped at 2-col grid) */
@media (max-width: 900px) {
  .leistungen-cta__trust { display: none; }
}

/* Mobile: stack vertically */
@media (max-width: 640px) {
  .leistungen-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .leistungen-cta__text {
    padding: var(--space-md) var(--space-lg);
  }

  .leistungen-cta__action {
    padding: var(--space-md) var(--space-lg);
    justify-content: center;
    clip-path: none;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .word-reveal {
    color: rgba(10, 10, 11, 0.86);
    transition: none;
  }
  .word-reveal--key {
    color: rgba(10, 10, 11, 1);
  }
}

.services-teaser__grid {
  margin-top: var(--space-md);
}

.service-block {
  padding: var(--space-lg);
  background: var(--c-white);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 2px 10px rgba(10,10,11,0.07));
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 2.5rem),
    calc(100% - 2.5rem) 100%,
    0 100%
  );
  transition:
    background-color 0.42s var(--ease),
    border-color 0.42s var(--ease),
    filter 0.42s var(--ease),
    transform 0.42s var(--ease);
}

.service-block__index {
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gray-500);
  margin-bottom: var(--space-md);
  transition: color 0.38s var(--ease);
}

.service-block h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h3);
  transition: color 0.38s var(--ease);
}

.service-block .text-muted {
  transition: color 0.38s var(--ease);
}

.service-block__arrow {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  font-size: 1rem;
  line-height: 1;
  color: var(--c-black);
  opacity: 0;
  transform: translate(-3px, 3px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    color 0.38s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .service-block:hover {
    background: var(--avio-green);
    border-color: transparent;
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 30px rgba(30,163,54,0.28));
  }

  .service-block:hover .service-block__index { color: rgba(255,255,255,0.45); }
  .service-block:hover h3                    { color: #ffffff; }
  .service-block:hover .text-muted           { color: rgba(255,255,255,0.75); }
  .service-block:hover .service-block__icon  { color: #ffffff; }
}

@media (prefers-reduced-motion: reduce) {
  .service-block,
  .service-block__index,
  .service-block h3,
  .service-block .text-muted,
  .service-block__arrow {
    transition: none;
  }

  .service-block__arrow {
    display: none;
  }
}

/* ---- Icon between index and headline ---- */
.service-block__icon {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--avio-green);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

/* ---- Dark card variant (02 + 04) — clip-path inherited from .service-block ---- */
.service-block--dark {
  background: var(--c-black);
  border-color: var(--c-line-dark);
  filter: drop-shadow(0 4px 22px rgba(10,10,11,0.24));
}

.service-block--dark .service-block__index { color: rgba(255,255,255,0.28); }
.service-block--dark h3                    { color: var(--c-white); }
.service-block--dark .text-muted           { color: rgba(255,255,255,0.52); }

/* Dark card hover: green (explicit overrides to beat static dark-text rules) */
@media (hover: hover) and (pointer: fine) {
  .service-block--dark:hover {
    background: var(--avio-green);
    border-color: transparent;
    filter: drop-shadow(0 8px 30px rgba(30,163,54,0.28));
  }

  .service-block--dark:hover .service-block__index { color: rgba(255,255,255,0.45); }
  .service-block--dark:hover h3                    { color: #ffffff; }
  .service-block--dark:hover .text-muted           { color: rgba(255,255,255,0.75); }
  .service-block--dark:hover .service-block__icon  { color: #ffffff; }
}

/* Responsive diagonal cut — all cards */
@media (max-width: 980px) {
  .service-block {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.75rem),
      calc(100% - 1.75rem) 100%,
      0 100%
    );
  }
}

@media (max-width: 640px) {
  .service-block {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.25rem),
      calc(100% - 1.25rem) 100%,
      0 100%
    );
  }
}

/* =============================================
   Leistungen Cards — neu aufgebaut
   ============================================= */

.leistungen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  margin-top: var(--space-md);
  align-items: start;
}

.leist-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 4rem),
    calc(100% - 4rem) 100%,
    0 100%
  );
  transition:
    background-color 0.44s var(--ease),
    filter 0.44s var(--ease),
    transform 0.44s var(--ease);
  will-change: transform;
}

.leist-card--light {
  background: var(--c-white);
  filter: drop-shadow(0 2px 14px rgba(10,10,11,0.07));
}

.leist-card--dark {
  background: var(--c-black);
  /* Mehr Padding oben und unten — dunkle Karten deutlich taller als helle */
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.75rem, 3vw, 2.5rem) clamp(5rem, 7vw, 6.5rem);
  filter: drop-shadow(0 4px 22px rgba(10,10,11,0.26));
  /* Größerer Schnitt proportional zur Kartenhöhe */
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 5.5rem),
    calc(100% - 5.5rem) 100%,
    0 100%
  );
}

/* Card content */
.leist-card__num {
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gray-500);
  margin-bottom: var(--space-sm);
  transition: color 0.44s var(--ease);
}

.leist-card--dark .leist-card__num { color: rgba(255,255,255,0.28); }

.leist-card__icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--avio-green);
  margin-bottom: var(--space-sm);
  transition: color 0.44s var(--ease);
}

.leist-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: var(--space-sm);
  color: var(--c-black);
  transition: color 0.44s var(--ease);
}

.leist-card--dark .leist-card__title { color: var(--c-white); }

.leist-card__body {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-gray-600);
  transition: color 0.44s var(--ease);
}

.leist-card--dark .leist-card__body { color: rgba(255,255,255,0.52); }

/* Hover — gesamte Kachel wird grün */
@media (hover: hover) and (pointer: fine) {
  .leist-card:hover {
    background-color: var(--avio-green);
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 28px rgba(30,163,54,0.32));
  }

  .leist-card:hover .leist-card__num   { color: rgba(255,255,255,0.45); }
  .leist-card:hover .leist-card__icon  { color: rgba(255,255,255,0.88); }
  .leist-card:hover .leist-card__title { color: #ffffff; }
  .leist-card:hover .leist-card__body  { color: rgba(255,255,255,0.75); }
}

/* Responsive */
@media (max-width: 980px) {
  .leistungen-cards { grid-template-columns: repeat(2, 1fr); }

  .leist-card {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 2.75rem),
      calc(100% - 2.75rem) 100%,
      0 100%
    );
  }

  .leist-card--dark {
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 2.5rem) clamp(4rem, 5.5vw, 5rem);
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 4rem),
      calc(100% - 4rem) 100%,
      0 100%
    );
  }
}

@media (max-width: 640px) {
  .leistungen-cards { grid-template-columns: 1fr; }

  .leist-card {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.75rem),
      calc(100% - 1.75rem) 100%,
      0 100%
    );
  }

  .leist-card--dark {
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 3vw, 2.25rem) clamp(3rem, 5vw, 4rem);
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 2.5rem),
      calc(100% - 2.5rem) 100%,
      0 100%
    );
  }
}

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

/* ---------------------------------------------
   Referenzen-Teaser
--------------------------------------------- */

.case-preview {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: center;
}

.case-preview__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.case-preview__tags {
  display: flex;
  gap: var(--space-2xs);
  flex-wrap: wrap;
}

.case-preview__info h3 {
  font-size: var(--fs-h2);
}

.case-preview__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  width: 100%;
  margin-top: var(--space-2xs);
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-line-dark);
}

.case-preview__meta-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-md);
}

.case-preview__meta-label {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gray-600);
}

.case-preview__meta-value {
  font-size: var(--fs-small);
  color: var(--c-gray-300);
}

@media (max-width: 980px) {
  .case-preview {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .case-preview__visual {
    order: -1;
  }
}

@media (max-width: 560px) {
  .case-preview__meta-item {
    grid-template-columns: 1fr;
    gap: var(--space-3xs);
  }
}

/* ---------------------------------------------
   Team / Menschen
--------------------------------------------- */

.team__intro {
  max-width: 640px;
}

.team__grid {
  margin-top: var(--space-xl);
}

.team__foot {
  margin-top: var(--space-xl);
}

/* Team: Headline override */
.team__headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--c-black);
  margin-top: 0.5rem;
}

/* Team: Premium Split-Modul (schwarz auf weißer Section) */
.team-module {
  display: grid;
  grid-template-columns: 58% 42%;
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--c-black);
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(10, 10, 11, 0.04),
    0 24px 60px -20px rgba(10, 10, 11, 0.28);
}

/* Video-Seite */
.team-module__video-wrap {
  position: relative;
  min-height: 440px;
}

.team-module__poster-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-module__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

.team-module__poster-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,11,0.06) 0%, rgba(10,10,11,0.28) 100%),
    linear-gradient(to bottom, transparent 40%, rgba(10,10,11,0.6) 100%);
  z-index: 1;
}

.team-module__play {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 4px;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

@media (hover: hover) and (pointer: fine) {
  .team-module__play:hover {
    transform: scale(1.12);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.06);
  }
}

.team-module__video-badge {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.team-module__video-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-dot-green);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.55);
}

/* Content-Seite */
.team-module__body {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.team-module__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gray-500);
}

/* Trust-Facts: editoriale Nummerierung */
.team-module__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.team-module__fact {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.team-module__fact:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.team-module__fact-n {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-gray-700);
  flex-shrink: 0;
  min-width: 1.8rem;
}

/* Personen-Badges */
.team-module__people {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: auto;
}

.team-module__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.team-module__person-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 15%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.team-module__person-name {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.2;
}

.team-module__person-role {
  margin: 0.2rem 0 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gray-500);
}

/* Responsive */
@media (max-width: 860px) {
  .team-module {
    grid-template-columns: 1fr;
  }

  .team-module__video-wrap {
    min-height: 320px;
  }

  .team-module__body {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .team-module__people {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .team-module__video-wrap {
    min-height: 260px;
  }

  .team-module__people {
    flex-direction: column;
  }
}

/* ---------------------------------------------
   Team Section: Scroll-Expansion (.tmex)
   Identisches Pattern wie .mex (leistungen.css)
--------------------------------------------- */

#team {
  background: var(--c-black);
}

/* Static intro: off-white, normal scroll */
.tmex__intro {
  background: var(--c-off-white, #f4f4f3);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
}

/* Sticky scroll zone */
.tmex__spacer {
  position: relative;
  height: 280vh;
}

.tmex__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Off-white overlay — JS fades it out to reveal dark section bg */
.tmex__bg {
  position: absolute;
  inset: 0;
  background: var(--c-off-white, #f4f4f3);
  z-index: 0;
  will-change: opacity;
}

/* Video card — JS drives width, height, border-radius */
.tmex__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  will-change: width, height, border-radius;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.22),
    0 6px 22px rgba(0, 0, 0, 0.13);
}

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

.tmex__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  will-change: opacity;
  pointer-events: none;
}

/* Video-Controls: Ton-Button + Lautstärke + Timeline */
.tmex__ctrl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 3rem 1.25rem 1.25rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    transparent 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Zeile 1: Ton-Button + Lautstärkeregler */
.tmex__ctrl-audio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Ton-Button – grüne Pill */
.tmex__audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(30, 163, 54, 0.9);
  border-radius: 2rem;
  background: rgba(30, 163, 54, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-base);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  min-height: 38px;
  box-shadow: 0 3px 14px rgba(30, 163, 54, 0.38);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tmex__audio-btn:hover {
  background: #1ea336;
  box-shadow: 0 5px 20px rgba(30, 163, 54, 0.52);
}

.tmex__ctrl.is-audio-on .tmex__audio-btn {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.tmex__ctrl.is-audio-on .tmex__audio-btn:hover {
  background: rgba(30, 163, 54, 0.22);
  border-color: rgba(30, 163, 54, 0.6);
}

.tmex__audio-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.tmex__audio-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.tmex__audio-icon {
  display: block;
}

.tmex__audio-btn__label {
  white-space: nowrap;
}

/* Lautstärkeregler */
.tmex__volume-wrap {
  display: flex;
  align-items: center;
}

.tmex__volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: clamp(80px, 15vw, 130px);
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  cursor: pointer;
}

.tmex__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease;
}

.tmex__volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.tmex__volume-slider::-moz-range-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  border: none;
}

.tmex__volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.tmex__volume-slider::-moz-range-progress {
  height: 3px;
  background: #1ea336;
  border-radius: 3px;
}

.tmex__volume-slider:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Zeile 2: Timeline + Zeitangabe (erscheint wenn Video nahezu aufgeklappt) */
.tmex__ctrl-timeline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.tmex__timeline {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  outline: none;
  cursor: pointer;
  min-width: 0;
}

.tmex__timeline::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
  transition: transform 0.1s ease;
}

.tmex__timeline::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.tmex__timeline::-moz-range-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  border: none;
}

.tmex__timeline::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.tmex__timeline::-moz-range-progress {
  height: 3px;
  background: #1ea336;
  border-radius: 3px;
}

.tmex__timeline:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
  border-radius: 3px;
}

.tmex__ctrl-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .tmex__ctrl {
    padding: 2rem 1rem 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    gap: 0.4rem;
  }

  .tmex__audio-btn__label {
    font-size: 0.75rem;
  }

  .tmex__volume-slider {
    width: clamp(60px, 18vw, 100px);
  }

  .tmex__ctrl-time {
    font-size: 0.63rem;
  }
}

/* Scroll hint */
.tmex__hint {
  position: absolute;
  bottom: 2.25rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(10, 10, 11, 0.42);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  will-change: opacity;
}

.tmex__hint-arrow {
  width: 18px;
  height: 18px;
  animation: tmex-bounce 1.9s ease-in-out infinite;
}

@keyframes tmex-bounce {
  0%, 100% { transform: translateY(0); }
  55%       { transform: translateY(5px); }
}

/* Revealed content: dark, trust panel */
.tmex__content {
  background: var(--c-black, #0a0a0b);
  padding: 5.5rem 0 5.5rem;
}

/* ── Trust-Split: Content links / Portraits rechts ──────── */
.tmex__trust-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: center;
}

/* ── Linke Spalte: Text + Vorteile + CTA ─────────────────── */
.tmex__trust-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tmex__eyebrow {
  color: var(--c-gray-500);
  margin-bottom: 1rem;
}

.tmex__trust-headline {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.1rem;
}

.tmex__trust-headline > span {
  display: block;
}

.tmex__trust-desc {
  font-size: clamp(0.9rem, 1vw, 0.97rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.55);
  max-width: 44ch;
  margin-bottom: 0;
}

/* Editoriale Benefit-Liste mit Trennlinien */
.tmex__benefits {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1.75rem 0 2rem;
}

.tmex__benefit {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tmex__benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  place-items: center;
  color: var(--c-white);
  flex-shrink: 0;
}

.tmex__benefit-body {
  min-width: 0;
}

.tmex__benefit-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 0.18rem;
  line-height: 1.3;
}

.tmex__benefit-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  line-height: 1.5;
}

/* ── Rechte Spalte: Personenkarten ──────────────────────── */
.tmex__trust-portraits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Große Portrait-Card */
.tmex__person-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151517;
  min-height: clamp(210px, 16vw, 265px);
}

/* Gradient-Overlay: blendet von Karten-BG zu transparent */
.tmex__person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #151517 0%,
    #151517 34%,
    rgba(21, 21, 23, 0.94) 52%,
    rgba(21, 21, 23, 0.62) 64%,
    rgba(21, 21, 23, 0.22) 76%,
    transparent 88%
  );
}

/* Text-Content innerhalb der Card */
.tmex__person-card-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  padding: clamp(1.4rem, 2.5vw, 1.9rem) clamp(2.8rem, 4.5vw, 4rem) clamp(1.4rem, 2.5vw, 1.9rem) clamp(1.4rem, 2.5vw, 1.8rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

/* Rollen-Zeile: grüner Punkt + Label */
.tmex__person-role-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.tmex__person-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gray-500);
  flex-shrink: 0;
}

.tmex__person-role-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gray-500);
}

.tmex__person-name {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.tmex__person-bio {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}

.tmex__person-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
  z-index: 4;
  letter-spacing: 0.01em;
}

.tmex__person-linkedin:hover,
.tmex__person-linkedin:focus-visible { color: var(--avio-green, #1ea336); }

.tmex__person-linkedin:focus-visible {
  outline: 2px solid var(--avio-green, #1ea336);
  outline-offset: 3px;
  border-radius: 3px;
}

.tmex__person-linkedin svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.18s; }
.tmex__person-linkedin:hover svg,
.tmex__person-linkedin:focus-visible svg { opacity: 1; }

/* Portrait-Bild: rechtes Drittel der Card, Kopf & Oberkörper */
.tmex__person-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  z-index: 1;
  border-radius: 0;
}

/* Foot link on dark background (still used elsewhere) */
.link-arrow--light {
  color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.link-arrow--light:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.link-arrow--light svg {
  stroke: currentColor;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .tmex__trust-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .tmex__trust-desc {
    max-width: none;
  }
}

/* Mobile: Portrait-Cards vertikal statt Landscape */
@media (max-width: 900px) {
  .tmex__person-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .tmex__person-card::after {
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 40%,
      rgba(21, 21, 23, 0.7) 62%,
      #151517 82%
    );
  }

  .tmex__person-card-content {
    position: relative;
    width: 100%;
    padding: 1.5rem 1.5rem 1.25rem;
    order: 2;
  }

  .tmex__person-img {
    position: relative;
    width: 100%;
    height: 240px;
    object-position: center 20%;
    order: 1;
  }
}

@media (max-width: 640px) {
  .tmex__spacer { height: 220vh; }
}

@media (max-width: 480px) {
  .tmex__intro  { padding: 3rem 0 2.5rem; }
  .tmex__hint   { bottom: 1.75rem; }
  .tmex__content { padding: 4rem 0 4.5rem; }
  .tmex__person-img { height: 200px; }
}

/* ---------------------------------------------
   Mehrwert: Ressourcen + Empfehlung
--------------------------------------------- */

#mehrwert .section-head h2 {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  line-height: var(--sh-lh);
  letter-spacing: var(--sh-ls);
  color: var(--c-white);
}

/* Mehrwert-Modul: Visual-Switcher links + Tab-Kacheln rechts */
/* Editorial Mehrwert-Liste */
.mehrwert-list {
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--c-line-dark);
}

.mehrwert-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--c-line-dark);
  transition: background 0.38s var(--ease);
}

.mehrwert-item__num {
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  padding-top: 0.12em;
  white-space: nowrap;
  transition: color 0.38s var(--ease);
  user-select: none;
}

.mehrwert-item__body {
  display: flex;
  flex-direction: column;
}

.mehrwert-item__title {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-white);
  margin: var(--space-xs) 0 0;
}

.mehrwert-item__text {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.52);
  margin-top: var(--space-sm);
  max-width: 58ch;
  line-height: 1.68;
}

.mehrwert-item__body .link-arrow {
  margin-top: var(--space-md);
}

@media (hover: hover) and (pointer: fine) {
  .mehrwert-item:hover {
    background: rgba(255, 255, 255, 0.025);
  }
  .mehrwert-item:hover .mehrwert-item__num {
    color: rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 640px) {
  .mehrwert-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm) 0;
  }
  .mehrwert-item__num {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
}

/* ---------------------------------------------
   Abschluss-CTA / Kontakt
--------------------------------------------- */

/* Split-Layout: Foto links, Conversion-Content rechts */
.cta-final__module {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Foto-Seite */
.cta-final__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 2px 6px rgba(0,0,0,0.25),
    0 32px 72px -16px rgba(0,0,0,0.65);
}

.cta-final__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
}

/* Vignette: oben leicht abdunkeln (heller Hintergrund des Fotos), unten für das Badge */
.cta-final__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,11,0.22) 0%,
      rgba(10,10,11,0)    28%,
      rgba(10,10,11,0)    52%,
      rgba(10,10,11,0.62) 100%
    );
  pointer-events: none;
}

/* AVIO-Badge: frosted-glass, unten rechts */
.cta-final__photo-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(10,10,11,0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: rgba(255,255,255,0.72);
}

.cta-final__photo-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Content-Seite */
.cta-final__content {
  display: flex;
  flex-direction: column;
}

.cta-final__headline {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--c-white);
  margin: var(--space-sm) 0 0;
}

.cta-final__subline {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  margin: var(--space-md) 0 0;
  line-height: 1.65;
}

.cta-final__subline strong {
  color: var(--c-white);
  font-weight: 700;
}

.cta-final__date {
  color: var(--c-white);
  font-weight: 700;
}

.cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

/* Weißer Button — hebt sich stark vom dunklen Hintergrund ab */
.cta-final__actions .search-cta {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
  backdrop-filter: none;
}

.cta-final__actions .search-cta:hover {
  background: var(--c-off-white);
  border-color: var(--c-off-white);
  transform: translateY(-2px);
}

.cta-final__actions .search-cta .search-cta__icon,
.cta-final__actions .search-cta .search-cta__arrow {
  color: rgba(10,10,11,0.45);
}

.cta-final__contacts {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .cta-final__module {
    grid-template-columns: 1fr;
  }

  .cta-final__photo-wrap {
    aspect-ratio: 16 / 9;
  }

  .cta-final__actions {
    align-items: flex-start;
  }
}

/* =============================================
   Visual Frame Grid
   ============================================= */

.vgrid-section {
  background: var(--c-black);
  padding: 0;
  overflow: hidden;
}

.vgrid {
  display: grid;
  grid-template-rows: 4fr 4fr 4fr;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 3px;
  width: 100%;
  height: min(92vh, 880px);
  background: var(--c-black);
  transition:
    grid-template-rows    0.45s cubic-bezier(0.22, 1, 0.36, 1),
    grid-template-columns 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---- Cells ---- */
.vgrid__cell {
  overflow: hidden;
  position: relative;
  background: var(--c-black-elevated);
}

/* Video */
.vgrid__cell--video {
  background: #0a0a0b;
  cursor: pointer;
}

.vgrid__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .vgrid__cell--video:hover .vgrid__video {
    transform: scale(1.04);
  }
}

/* Cover card — shown by default, hidden on hover/active */
.vgrid__cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #0a0a0b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 3.5vw, 2.5rem);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.vgrid__cover-eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 0.5rem;
}

.vgrid__cover-text {
  font-family: var(--font-base);
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 700;
  font-style: normal;
  color: var(--c-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.04em;
  margin: 0;
}

.vgrid__cover-text--xl {
  font-size: clamp(2.4rem, 5.5vw, 6rem);
}

/* Brand cover variant (AVIO symbol, centered) */
.vgrid__cover--brand {
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.vgrid__cover-brand-symbol {
  width: clamp(32px, 5.5vw, 58px);
  height: auto;
  color: var(--c-white);
  opacity: 0.82;
  transition: opacity 0.35s ease;
}

.vgrid__cover-brand-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

/* Stat cover variant (100%) */
.vgrid__cover-stat {
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}

.vgrid__cover-stat-label {
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  color: rgba(255, 255, 255, 0.32);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.55rem;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .vgrid__cell--video:hover .vgrid__cover {
    opacity: 0;
  }
}

.vgrid__cell--video.is-active .vgrid__cover {
  opacity: 0;
}

.vgrid__cell--video.is-active .vgrid__video {
  transform: scale(1.04);
}

/* Photo */
.vgrid__cell--photo {
  background: #111113;
}

.vgrid__cell--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .vgrid__cell--photo:hover img {
    transform: scale(1.05);
  }
}

/* Text */
.vgrid__cell--text {
  background: var(--c-black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 3.5vw, 2.5rem);
}

.vgrid__cell--center {
  background: #0d0d0e;
}

/* Brand */
.vgrid__cell--brand {
  background: var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

/* Stat */
.vgrid__cell--stat {
  background: var(--c-black-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 3.5vw, 2.5rem);
}

/* ---- Typography ---- */

.vgrid__label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 0.45rem;
}

.vgrid__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.vgrid__headline--xl {
  font-size: clamp(2.4rem, 5.5vw, 6rem);
}

.vgrid__brand-symbol {
  width: clamp(32px, 5.5vw, 58px);
  height: auto;
  color: var(--c-white);
  opacity: 0.82;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .vgrid__cell--brand:hover .vgrid__brand-symbol {
    opacity: 1;
  }
}

.vgrid__brand-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.vgrid__stat {
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}

.vgrid__stat-label {
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  color: rgba(255, 255, 255, 0.32);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.55rem;
  line-height: 1.55;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
  .vgrid {
    grid-template-rows: 34vw 34vw 34vw;
    grid-template-columns: 1fr 1fr 1fr;
    height: auto;
    transition: none;
  }
  .vgrid__cover {
    padding: clamp(0.65rem, 2.5vw, 1rem);
  }
  .vgrid__cover-eyebrow {
    font-size: 0.5rem;
    margin-bottom: 0.3rem;
  }
  .vgrid__cover-text {
    font-size: clamp(1rem, 4.5vw, 1.15rem);
    line-height: 1.15;
  }
  .vgrid__cover-text--xl {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
    line-height: 1.1;
  }
  .vgrid__cover-stat {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .vgrid__cover-stat-label {
    font-size: 0.58rem;
    margin-top: 0.3rem;
    line-height: 1.35;
  }
}

@media (min-width: 601px) and (max-width: 980px) {
  .vgrid {
    height: min(80vh, 680px);
  }
}

/* =============================================
   Video Lightbox (.vlb)
   ============================================= */

.vlb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.vlb.is-open {
  display: flex;
}

.vlb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.vlb__dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 900px);
  background: #0a0a0b;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .vlb__dialog {
    width: calc(100vw - 16px);
  }
}

.vlb__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vlb__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.vlb__media {
  width: 100%;
}

.vlb__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

body.vlb-open {
  overflow: hidden;
}

/* =============================================
   Referenzen Block
   ============================================= */

.ref-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin-top: var(--space-xl);
  background: var(--c-black-soft);
}

.ref-block__content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.ref-block__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ref-block__quote {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.42;
  letter-spacing: -0.02em;
  margin: 0.2rem 0;
}

.ref-block__person {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.ref-block__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
}

.ref-block__role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.ref-block__stars {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ref-block__star-row {
  color: #e8b84b;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.ref-block__verified {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-block__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0.1rem 0;
}

.ref-block__metrics {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ref-block__metric {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.ref-block__metric-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(40, 200, 64, 0.1);
  border: 1px solid rgba(40, 200, 64, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dot-green);
  margin-top: 1px;
}

.ref-block__metric-icon svg {
  width: 14px;
  height: 14px;
}

.ref-block__metric-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
  line-height: 1.3;
}

.ref-block__metric-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0.12rem 0 0;
}

/* Media / Video side */
.ref-block__media {
  position: relative;
  background:
    radial-gradient(ellipse at 55% 38%, rgba(255, 255, 255, 0.035) 0%, transparent 65%),
    linear-gradient(145deg, #181819 0%, #0f0f10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}

.ref-block__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

.ref-block__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.ref-block__play-btn {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-white);
  transition:
    background 0.3s ease,
    transform  0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.ref-block__play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .ref-block__play-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.05);
  }
}

.ref-block__media-label {
  position: absolute;
  bottom: 1.2rem;
  right: 1.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  z-index: 2;
}

/* Foot link */
.ref-foot {
  margin-top: var(--space-lg);
}

/* Responsive */
@media (max-width: 760px) {
  .ref-block {
    grid-template-columns: 1fr;
  }
  .ref-block__content {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .ref-block__media {
    min-height: 260px;
  }
}

/* Referenzen Übergangs-Hinweis */
.ref-transition {
  margin-top: var(--space-xl);
  padding-top: 0;
}

.ref-transition__headline {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  color: var(--c-white);
  letter-spacing: var(--sh-ls);
  line-height: var(--sh-lh);
  margin-top: 0.55rem;
  margin-bottom: 0;
  max-width: 700px;
}

.ref-transition__sub {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.75rem;
  max-width: 480px;
  line-height: 1.6;
}

/* Referenzen CTA (nach Grid, vor Über AVIO) */
.ref-cta-section {
  background: var(--c-black);
  padding: var(--space-md) 0 var(--space-lg);
}

.ref-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: var(--c-black-soft);
  flex-wrap: wrap;
}

.ref-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.ref-cta-row__text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: var(--c-white);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.ref-cta-row__sub {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.55;
  max-width: 52ch;
}

.ref-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ref-cta-row { flex-direction: column; align-items: flex-start; }
  .ref-cta-btn { width: 100%; justify-content: center; }
}

/* Referenzen Section-Kopf */
.section-head--ref {
  max-width: 820px;
  margin-bottom: var(--space-2xl);
}

.ref-headline {
  font-size: var(--sh-size);
  font-weight: var(--sh-weight);
  letter-spacing: var(--sh-ls);
  line-height: var(--sh-lh);
  color: var(--c-white);
  margin-top: 0.6rem;
  max-width: 760px;
}

.ref-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  max-width: 600px;
  line-height: 1.65;
}

/* Projekt-Nachweis (Interim bis echte Kundenstimmen freigegeben) */
.ref-proof {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.ref-proof .ref-lead strong {
  color: var(--c-white);
  font-weight: 600;
}

.ref-proof__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ref-proof__trust li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ref-proof__trust li::before {
  content: "✓";
  color: var(--c-green);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── Marquee CTA ─────────────────────────────────────────── */
.marquee-cta {
  background: var(--c-black);
  padding: clamp(2rem, 4.5vw, 4.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
}

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

.marquee-cta__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-run 30s linear infinite;
}

.marquee-cta__inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-cta__item {
  font-size: clamp(4rem, 8.5vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 clamp(2rem, 3.5vw, 4rem);
  transition: color 0.28s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
}

.marquee-cta__arrow {
  display: inline-block;
  font-size: 0.78em;
  opacity: 0.55;
  transition: opacity 0.28s ease, transform 0.28s var(--ease);
}

.marquee-cta__sep {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 clamp(0.5rem, 1vw, 1rem);
}

.marquee-cta__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-dot-green);
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .marquee-cta:hover .marquee-cta__track {
    animation-play-state: paused;
  }
  .marquee-cta__item:hover {
    color: var(--c-white);
  }
  .marquee-cta__item:hover .marquee-cta__arrow {
    opacity: 1;
    transform: translate(3px, -3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-cta__track {
    animation: none;
    justify-content: center;
  }
  .marquee-cta__inner + .marquee-cta__inner {
    display: none;
  }
}

/* =============================================
   Leistungen System V2
   ============================================= */

.leistungen-system-v2 {
  margin-top: var(--space-lg);
}

.leistungen-system-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}

/* Base card */
.leistung-card-v2 {
  position: relative;
  min-height: clamp(270px, 24vw, 340px);
  padding: clamp(42px, 4vw, 64px);
  overflow: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 52px),
    calc(100% - 52px) 100%,
    0 100%
  );
}

/* Subtle inner diagonal line */
.leistung-card-v2::before {
  content: "";
  position: absolute;
  left: clamp(30px, 3vw, 48px);
  top: clamp(34px, 4vw, 56px);
  width: 1px;
  height: 68%;
  background: rgba(10, 10, 11, 0.075);
  transform: skewX(-14deg);
  transform-origin: top;
  pointer-events: none;
}

/* Light variant */
.leistung-card-v2--light {
  background: #ffffff;
  color: #0a0a0b;
  filter:
    drop-shadow(0 0 0.75px rgba(10, 10, 11, 0.10))
    drop-shadow(0 18px 40px rgba(10, 10, 11, 0.055));
}

/* Dark variant */
.leistung-card-v2--dark {
  background-color: #0a0a0b;
  background-image: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.06), transparent 32%);
  color: #ffffff;
  min-height: clamp(310px, 28vw, 400px);
  filter: drop-shadow(0 4px 28px rgba(10, 10, 11, 0.32));
}

.leistung-card-v2--dark::before {
  background: rgba(255, 255, 255, 0.12);
}

/* Card elements */
.leistung-card-v2__index {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray-500);
  margin-bottom: clamp(18px, 2.2vw, 28px);
}

.leistung-card-v2--dark .leistung-card-v2__index {
  color: rgba(255, 255, 255, 0.35);
}

.leistung-card-v2__icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--avio-green);
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.leistung-card-v2__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.leistung-card-v2__title {
  font-size: clamp(1.15rem, 1.75vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: inherit;
  margin: 0 0 clamp(10px, 1.3vw, 18px);
}

.leistung-card-v2__body {
  font-size: clamp(0.845rem, 1vw, 0.9rem);
  line-height: 1.68;
  color: rgba(10, 10, 11, 0.50);
  margin: 0;
}

.leistung-card-v2--dark .leistung-card-v2__body {
  color: rgba(255, 255, 255, 0.58);
}

/* =============================================
   CTA V2
   ============================================= */

.leistungen-cta-v2 {
  margin-top: clamp(56px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.25fr 1.5fr 0.95fr;
  min-height: 160px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 20px rgba(10, 10, 11, 0.06);
}

.leistungen-cta-v2__intro {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(28px, 4vw, 48px);
}

.leistungen-cta-v2__icon-circle {
  width: clamp(44px, 4.5vw, 60px);
  height: clamp(44px, 4.5vw, 60px);
  background: #0a0a0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  padding: 13px;
}

.leistungen-cta-v2__icon-circle svg {
  width: 100%;
  height: 100%;
}

.leistungen-cta-v2__intro-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.leistungen-cta-v2__headline {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0a0a0b;
  margin: 0;
}

.leistungen-cta-v2__sub {
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  color: rgba(10, 10, 11, 0.48);
  line-height: 1.55;
  margin: 0;
}

.leistungen-cta-v2__trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1.1vw, 13px);
  padding: clamp(24px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
}

.leistungen-cta-v2__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(0.78rem, 1vw, 0.855rem);
  font-weight: 600;
  color: rgba(10, 10, 11, 0.60);
}

.leistungen-cta-v2__trust-item::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--avio-green);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.5l2 2 4-4' stroke='%231ea336' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.leistungen-cta-v2__action {
  background: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  padding: clamp(24px, 3vw, 40px) clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 40px) clamp(40px, 5vw, 60px);
}

.leistungen-cta-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--avio-green);
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-pill);
}


/* =============================================
   Leistungen Redesign  (.lr)
   Fresh build — no inheritance from old rules
   ============================================= */

.lr {
  margin-top: var(--space-lg);
}

/* --- Grid --- */
.lr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

/* --- Base card --- */
.lr__card {
  position: relative;
  padding: clamp(48px, 5vw, 68px) clamp(42px, 4.2vw, 60px);
  min-height: clamp(280px, 27vw, 360px);
  overflow: hidden;
  background: #ffffff;
  color: #0a0a0b;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 64px),
    calc(100% - 64px) 100%,
    0 100%
  );
  filter:
    drop-shadow(0 0 1.5px rgba(10, 10, 11, 0.13))
    drop-shadow(0 24px 56px rgba(10, 10, 11, 0.07));
}

/* Subtle inner diagonal line */
.lr__card::before {
  content: "";
  position: absolute;
  left: clamp(30px, 3vw, 46px);
  top: clamp(34px, 4vw, 54px);
  width: 1px;
  height: 66%;
  background: rgba(10, 10, 11, 0.07);
  transform: skewX(-14deg);
  transform-origin: top;
  pointer-events: none;
}

/* --- Dark card --- */
.lr__card--dark {
  background-color: #0a0a0b;
  background-image: radial-gradient(ellipse at 24% 0%, rgba(255, 255, 255, 0.09) 0%, transparent 44%);
  color: #ffffff;
  min-height: clamp(350px, 36vw, 460px);
  filter: drop-shadow(0 6px 36px rgba(10, 10, 11, 0.42));
}

.lr__card--dark::before {
  background: rgba(255, 255, 255, 0.11);
}

/* --- Number --- */
.lr__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.36);
  margin-bottom: clamp(16px, 2vw, 26px);
}

.lr__card--dark .lr__num {
  color: rgba(255, 255, 255, 0.32);
}

/* --- Icon --- */
.lr__icon {
  display: block;
  width: 22px;
  height: 22px;
  color: #1ea336;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.lr__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --- Title --- */
.lr__title {
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: inherit;
  margin: 0 0 clamp(12px, 1.4vw, 18px);
}

/* --- Body --- */
.lr__body {
  font-size: clamp(0.84rem, 1vw, 0.9rem);
  line-height: 1.72;
  color: rgba(10, 10, 11, 0.52);
  margin: 0;
}

.lr__card--dark .lr__body {
  color: rgba(255, 255, 255, 0.62);
}

/* =============================================
   Leistungen Redesign — CTA Bar
   ============================================= */

.lr__cta {
  margin-top: clamp(48px, 5.5vw, 76px);
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 0.88fr;
  min-height: 164px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.07);
  box-shadow: 0 2px 24px rgba(10, 10, 11, 0.06);
}

/* Left: intro */
.lr__cta-intro {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(28px, 3.6vw, 46px);
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.lr__cta-emblem {
  width: clamp(46px, 4.8vw, 60px);
  height: clamp(46px, 4.8vw, 60px);
  background: #0a0a0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  padding: 13px;
  box-sizing: border-box;
}

.lr__cta-emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lr__cta-headline {
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0a0a0b;
  margin: 0 0 6px;
}

.lr__cta-sub {
  font-size: clamp(0.78rem, 0.95vw, 0.87rem);
  color: rgba(10, 10, 11, 0.47);
  line-height: 1.55;
  margin: 0;
}

/* Middle: trust */
.lr__cta-trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(9px, 1.1vw, 14px);
  padding: clamp(24px, 3vw, 38px) clamp(22px, 2.8vw, 34px);
  list-style: none;
  margin: 0;
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.lr__cta-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(0.78rem, 0.95vw, 0.855rem);
  font-weight: 600;
  color: rgba(10, 10, 11, 0.62);
  white-space: nowrap;
}

.lr__cta-trust-item::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #1ea336;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.5l2 2 4-4' stroke='%231ea336' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Right: action */
.lr__cta-action {
  background: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  padding: 28px 38px 28px 58px;
}

.lr__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: #1ea336;
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
}

/* ============================================================
   LEISTUNGEN DESIGN  (.ld)
   Key technique: box-shadow + border-radius + ::after triangle
   Eliminates clip-path so proper shadows and radii are possible
   ============================================================ */

.ld {
  margin-top: var(--space-lg);
}

/* ---- Grid ---- */
.ld__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}

/* ---- Base card ---- */
.ld__card {
  position: relative;
  padding: clamp(48px, 5vw, 68px) clamp(44px, 4.5vw, 60px);
  min-height: clamp(290px, 28vw, 365px);
  background: #ffffff;
  color: #0a0a0b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 11, 0.08),
    0 16px 48px rgba(10, 10, 11, 0.08),
    0 2px 8px rgba(10, 10, 11, 0.04);
}

/* Subtle left accent line */
.ld__card::before {
  content: "";
  position: absolute;
  left: clamp(30px, 3vw, 46px);
  top: clamp(34px, 4vw, 54px);
  width: 1px;
  height: 60%;
  background: rgba(10, 10, 11, 0.06);
  transform: skewX(-12deg);
  transform-origin: top;
  pointer-events: none;
}

/* Bottom-right diagonal cut via triangle overlay */
.ld__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 62px 62px;
  border-color: transparent transparent var(--c-off-white) transparent;
}

/* ---- Dark card ---- */
.ld__card--dark {
  background-color: #0a0a0b;
  background-image: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.085) 0%,
    transparent 54%
  );
  color: #ffffff;
  min-height: clamp(368px, 38vw, 476px);
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.38);
}

.ld__card--dark::before {
  background: rgba(255, 255, 255, 0.09);
}

/* ---- Number ---- */
.ld__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.36);
  margin-bottom: clamp(18px, 2.2vw, 28px);
}

.ld__card--dark .ld__num {
  color: rgba(255, 255, 255, 0.32);
}

/* ---- Icon ---- */
.ld__icon {
  display: block;
  width: 22px;
  height: 22px;
  color: #1ea336;
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

.ld__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Title ---- */
.ld__title {
  font-size: clamp(1.18rem, 1.8vw, 1.52rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: inherit;
  margin: 0 0 clamp(12px, 1.4vw, 18px);
}

/* ---- Body ---- */
.ld__body {
  font-size: clamp(0.84rem, 1vw, 0.9rem);
  line-height: 1.72;
  color: rgba(10, 10, 11, 0.52);
  margin: 0;
}

.ld__card--dark .ld__body {
  color: rgba(255, 255, 255, 0.60);
}

/* ============================================================
   CTA BAR (.ld__cta)
   ============================================================ */

.ld__cta {
  margin-top: clamp(48px, 5.5vw, 76px);
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.78fr;
  min-height: 206px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 11, 0.07),
    0 2px 24px rgba(10, 10, 11, 0.05);
}

/* Left: intro */
.ld__cta-intro {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(28px, 3.6vw, 46px);
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.ld__cta-emblem {
  width: clamp(46px, 4.8vw, 60px);
  height: clamp(46px, 4.8vw, 60px);
  background: #0a0a0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  padding: 14px;
  box-sizing: border-box;
}

.ld__cta-emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ld__cta-headline {
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0a0a0b;
  margin: 0 0 6px;
}

.ld__cta-sub {
  font-size: clamp(0.78rem, 0.92vw, 0.85rem);
  color: rgba(10, 10, 11, 0.48);
  line-height: 1.55;
  margin: 0;
}

/* Center: trust */
.ld__cta-trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 16px);
  padding: clamp(24px, 3vw, 38px) clamp(22px, 2.8vw, 36px);
  list-style: none;
  margin: 0;
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.ld__cta-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.78rem, 0.93vw, 0.85rem);
  font-weight: 600;
  color: rgba(10, 10, 11, 0.64);
}

.ld__cta-trust-item::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #1ea336;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4l2 2 3-3' stroke='%231ea336' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Right: dark action panel */
.ld__cta-action {
  background: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  padding: 36px 44px 36px 62px;
}

.ld__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: #1ea336;
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
}

/* ============================================================
   LEISTUNGEN v4  (.lr_)
   Hard layout rules: fixed card height, triangle cut, layered CTA
   ============================================================ */

.lr_section {
  margin-top: var(--space-lg);
}

/* ---- Grid ---- */
.lr_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

/* ---- Base card ---- */
.lr_card {
  min-height: 310px;
  height: 310px;
  padding: 54px 64px 48px;
  position: relative;
  overflow: visible;
  background: #ffffff;
  color: #0a0a0b;
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 11, 0.08),
    0 12px 40px rgba(10, 10, 11, 0.07),
    0 2px 6px rgba(10, 10, 11, 0.04);
}

/* Bottom-right diagonal cut: filled triangle matching section bg */
.lr_card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 76px;
  height: 76px;
  background: var(--c-off-white, #f4f4f3);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* ---- Dark card ---- */
.lr_card--dark {
  background-color: #0a0a0b;
  background-image: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 52%
  );
  color: #ffffff;
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.38);
}

/* ---- Number ---- */
.lr_card__number {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.36);
  margin-bottom: 34px;
}

.lr_card--dark .lr_card__number {
  color: rgba(255, 255, 255, 0.32);
}

/* ---- Icon ---- */
.lr_card__icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--avio-green, #1ea336);
  margin-bottom: 30px;
}

.lr_card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Heading ---- */
.lr_card h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.44rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: inherit;
  margin: 0 0 22px;
}

/* ---- Body ---- */
.lr_card p {
  font-size: clamp(0.82rem, 0.96vw, 0.88rem);
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.52);
  margin: 0;
}

.lr_card--dark p {
  color: rgba(255, 255, 255, 0.60);
}

/* ============================================================
   CTA BAR  (.lr_cta)
   ============================================================ */

.lr_cta {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.78fr;
  min-height: 186px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 11, 0.07),
    0 2px 24px rgba(10, 10, 11, 0.05);
}

/* Left: intro */
.lr_cta__intro {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 36px;
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.lr_cta__emblem {
  width: 52px;
  height: 52px;
  background: #0a0a0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  padding: 13px;
  box-sizing: border-box;
}

.lr_cta__emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lr_cta__headline {
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0a0a0b;
  margin: 0 0 6px;
}

.lr_cta__sub {
  font-size: clamp(0.76rem, 0.88vw, 0.82rem);
  color: rgba(10, 10, 11, 0.48);
  line-height: 1.55;
  margin: 0;
}

/* Center: trust */
.lr_cta__trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px 32px;
  list-style: none;
  margin: 0;
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.lr_cta__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.76rem, 0.9vw, 0.83rem);
  font-weight: 600;
  color: rgba(10, 10, 11, 0.64);
}

.lr_cta__trust-item::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--avio-green, #1ea336);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4l2 2 3-3' stroke='%231ea336' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Right: action — button layered above the black shape */
.lr_cta__action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.lr_cta__black-shape {
  position: absolute;
  inset: 0;
  background: #0a0a0b;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.lr_cta__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: var(--avio-green, #1ea336);
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
}

/* ============================================================
   SERVICES COMPOSITION  (.services-composition / .service-tile / .services-cta-v3)
   Architecture: fixed-height tiles, ::after triangle cut, layered CTA black shape
   ============================================================ */

.services-composition {
  --section-bg: #f4f4f3;
  margin-top: var(--space-lg);
}

/* ---- Grid ---- */
.services-composition__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* ---- Base tile ---- */
.service-tile {
  position: relative;
  min-height: 340px;
  height: 340px;
  padding: 42px 54px 44px;
  overflow: hidden;
  border-radius: 10px;
}

/* Subtle diagonal accent line — left interior */
.service-tile::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 32px;
  width: 1px;
  height: 190px;
  background: rgba(10, 10, 11, 0.08);
  transform: rotate(13deg);
  transform-origin: top center;
  z-index: 1;
  pointer-events: none;
}

/* Diagonal cut — bottom-right triangle overlay */
.service-tile::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 92px;
  background: var(--section-bg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 4;
  pointer-events: none;
}

/* ---- Light tile ---- */
.service-tile--light {
  background: #ffffff;
  color: #0a0a0b;
  box-shadow:
    0 1px 0 rgba(10, 10, 11, 0.04),
    0 24px 60px rgba(10, 10, 11, 0.06);
}

/* ---- Dark tile ---- */
.service-tile--dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0) 44%),
    #0a0a0b;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 70px rgba(10, 10, 11, 0.20);
}

.service-tile--dark::before {
  background: rgba(255, 255, 255, 0.10);
}

/* ---- Inner content (above accent line, below triangle) ---- */
.service-tile__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ---- Number ---- */
.service-tile__number {
  display: block;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 11, 0.42);
  margin-bottom: 34px;
}

.service-tile--dark .service-tile__number {
  color: rgba(255, 255, 255, 0.34);
}

/* ---- Icon ---- */
.service-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--avio-green, #1ea336);
  margin-bottom: 28px;
}

.service-tile__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Title ---- */
.service-tile__title {
  margin: 0 0 20px;
  max-width: 280px;
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: inherit;
}

/* ---- Body text ---- */
.service-tile__text {
  margin: 0;
  max-width: 300px;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(10, 10, 11, 0.56);
}

.service-tile--dark .service-tile__text {
  color: rgba(255, 255, 255, 0.56);
}

/* ============================================================
   CTA  (.services-cta-v3)
   ============================================================ */

.services-cta-v3 {
  margin-top: 76px;
  min-height: 164px;
  display: grid;
  grid-template-columns: 1.25fr 1.05fr 0.9fr;
  align-items: stretch;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(10, 10, 11, 0.04),
    0 26px 70px rgba(10, 10, 11, 0.07);
}

/* Left: intro */
.services-cta-v3__intro {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 48px;
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.services-cta-v3__mark {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #0a0a0b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px;
  box-sizing: border-box;
  box-shadow: 0 16px 34px rgba(10, 10, 11, 0.22);
}

.services-cta-v3__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.services-cta-v3__intro h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.4vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #0a0a0b;
}

.services-cta-v3__intro p {
  margin: 0;
  max-width: 360px;
  color: rgba(10, 10, 11, 0.52);
  line-height: 1.55;
  font-size: 0.86rem;
}

/* Center: trust */
.services-cta-v3__trust {
  list-style: none;
  margin: 0;
  padding: 36px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  border-right: 1px solid rgba(10, 10, 11, 0.07);
}

.services-cta-v3__trust li {
  position: relative;
  padding-left: 28px;
  color: rgba(10, 10, 11, 0.62);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
}

.services-cta-v3__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(30, 163, 54, 0.48);
  color: var(--avio-green, #1ea336);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
}

/* Right: action — black diagonal shape + button layer above */
.services-cta-v3__action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

/* Black diagonal panel as pseudo-element */
.services-cta-v3__action::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -72px;
  background: #0a0a0b;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Button sits above the black shape */
.services-cta-v3__button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--avio-green, #1ea336);
  color: #ffffff;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  box-shadow:
    0 18px 38px rgba(30, 163, 54, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* ---- Minimal responsive safety ---- */
@media (max-width: 980px) {
  .services-composition__grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-cta-v3 {
    grid-template-columns: 1fr;
  }

  .services-cta-v3__intro {
    border-right: none;
    border-bottom: 1px solid rgba(10, 10, 11, 0.07);
  }

  .services-cta-v3__trust {
    border-right: none;
    border-bottom: 1px solid rgba(10, 10, 11, 0.07);
  }

  .services-cta-v3__action::before {
    left: 0;
    clip-path: none;
  }
}

@media (max-width: 640px) {
  .services-composition__grid {
    grid-template-columns: 1fr;
  }

  .service-tile {
    height: auto;
    min-height: 300px;
  }
}

/* ============================================================
   SERVICES v5 — Parallelogram tiles + CTA boundary button
   Shell carries filter shadow; tile has clip-path shape
   ============================================================ */

/* Shell: shadow lives here so filter: drop-shadow follows clip-path */
.service-tile-shell {
  filter: drop-shadow(0 22px 44px rgba(10, 10, 11, 0.08));
  height: 300px;
}

.service-tile-shell:has(.service-tile--dark) {
  filter: drop-shadow(0 10px 44px rgba(0, 0, 0, 0.35));
}

/* Tile: parallelogram clip-path replaces rounded-rectangle approach */
.service-tile {
  height: 300px;
  min-height: 300px;
  padding: 44px 62px 42px 72px;
  border-radius: 0;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  overflow: hidden;
  box-shadow: none;
}

/* Triangle overlay no longer needed — shape is the full polygon */
.service-tile::after {
  display: none;
}

/* Inner diagonal accent: shift right to clear angled left edge */
.service-tile::before {
  left: 52px;
}

/* Remove box-shadows from color variants (filter on shell handles depth) */
.service-tile--light {
  box-shadow: none;
}

.service-tile--dark {
  box-shadow: none;
}

/* Larger, more visible icons */
.service-tile__icon {
  width: 32px;
  height: 32px;
}

.service-tile__icon svg {
  width: 32px;
  height: 32px;
}

/* CTA black panel extends further left for wider diagonal coverage */
.services-cta-v3__action::before {
  left: -120px;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

/* Button shifted left so it straddles the white/black boundary */
.services-cta-v3__button {
  transform: translateX(-86px);
  z-index: 5;
  min-width: 230px;
  min-height: 56px;
  gap: 12px;
}

/* ============================================================
   SERVICES v6 — Proportional fine-tuning + ::before background
   clip-path on ::before prevents content clipping at edges;
   drop-shadow on ::before shadows only the parallelogram shape.
   ::after recycled from triangle overlay → diagonal accent line.
   ============================================================ */

/* Tighter gap between cards */
.services-composition__grid {
  gap: 18px;
}

/* Shell is now just a container — filter moved to ::before */
.service-tile-shell {
  height: auto;
  filter: none;
}

.service-tile-shell:has(.service-tile--dark) {
  filter: none;
}

/* Tile: transparent container, content never clipped */
.service-tile {
  height: auto;
  min-height: clamp(310px, 24vw, 380px);
  padding: 0;
  border-radius: 0;
  overflow: visible;
  clip-path: none;
  box-shadow: none;
  background: transparent;
}

/* ::before — parallelogram background + shadow (filter follows clip-path shape) */
.service-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  z-index: 0;
  background: #ffffff;
  transform: none;
  transform-origin: unset;
  filter: drop-shadow(0 22px 52px rgba(10, 10, 11, 0.09));
  pointer-events: none;
}

.service-tile--dark::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0) 44%),
    #0a0a0b;
  filter: drop-shadow(0 10px 44px rgba(0, 0, 0, 0.32));
}

/* ::after — diagonal accent line (repurposed; overrides v5 display: none) */
.service-tile::after {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  left: 62px;
  right: auto;
  bottom: auto;
  width: 1px;
  height: 180px;
  background: rgba(10, 10, 11, 0.07);
  clip-path: none;
  transform: rotate(13deg);
  transform-origin: top center;
  z-index: 1;
  pointer-events: none;
}

.service-tile--dark::after {
  background: rgba(255, 255, 255, 0.09);
}

/* Color variants — ::before carries actual background/color */
.service-tile--light {
  background: transparent;
  color: #0a0a0b;
  box-shadow: none;
}

.service-tile--dark {
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

/* __inner — sits above background shape */
.service-tile__inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 4vw, 56px) clamp(40px, 4.5vw, 60px) clamp(34px, 3.5vw, 48px) clamp(56px, 5.5vw, 78px);
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
}

/* More room for text with wider usable card width */
.service-tile__title {
  max-width: 340px;
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
  line-height: 1.06;
}

.service-tile__text {
  max-width: 340px;
  font-size: 0.92rem;
  line-height: 1.58;
}

/* CTA: softer diagonal, button closer to boundary */
.services-cta-v3__action::before {
  left: -110px;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.services-cta-v3__button {
  transform: translateX(-72px);
}

/* ============================================================
   SERVICES v7 — Final polish
   Wider cards via section container override, softer angle,
   better height-to-width ratio, stronger CTA layer effect.
   ============================================================ */

/* Wider container for this section only — cascades into .container */
#leistungen-teaser {
  --container-width: 1440px;
}

/* Softer diagonal — less dominant, more editorial/premium */
.service-tile::before {
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

/* Shorter height → landscape aspect ratio (wider-feeling cards) */
.service-tile {
  min-height: clamp(256px, 20vw, 314px);
}

/* Balanced inner padding — left gives enough clearance for the 6% angle */
.service-tile__inner {
  padding: clamp(36px, 3.5vw, 50px) clamp(38px, 4vw, 54px) clamp(30px, 3vw, 44px) clamp(44px, 4.5vw, 62px);
}

/* More room for headline and body text */
.service-tile__title {
  max-width: 360px;
  margin-bottom: 16px;
}

.service-tile__text {
  max-width: 360px;
}

/* Tighter number gap for shorter card height */
.service-tile__number {
  margin-bottom: 24px;
}

/* Tighter icon gap */
.service-tile__icon {
  margin-bottom: 20px;
}

/* CTA: stronger black panel + button pushed further over the diagonal edge */
.services-cta-v3__action::before {
  left: -130px;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

/* Old single-button offset — no longer needed (button removed from DOM) */
.services-cta-v3__button {
  transform: translateX(-100px);
}

/* ============================================================
   CTA ACTION v2 — Angebotskalkulator button + date + note
   Replaces single "Projekt anfragen" anchor with a full inner stack.
   ============================================================ */

/* Expand CTA row height for new content */
.services-cta-v3 {
  min-height: 200px;
}

/* Inner flex column — centered in the black panel */
.cta-action-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.75rem) 1.5rem;
}

/* Pill button */
.cta-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.75rem;
  border-radius: 999px;
  background: var(--avio-green, #1ea336);
  color: #ffffff;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 18px 42px rgba(30, 163, 54, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.cta-action-btn:hover {
  transform: translateY(-2px);
  background: var(--avio-green-hover, #24b844);
  box-shadow:
    0 22px 52px rgba(30, 163, 54, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Dot indicator */
.cta-action-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

/* Power/AVIO icon */
.cta-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.cta-action-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

/* Arrow */
.cta-action-arrow {
  font-size: 1.05rem;
  line-height: 1;
}

/* Date row */
.cta-action-date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cta-action-date-label {
  font-weight: 600;
}

/* Date pill — text injected by existing .leistungen-cta__deadline JS logic */
.cta-action-date-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Supporting line */
.cta-action-note {
  margin: 0;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ============================================================
   POLISH v8 — Numbers larger/bolder; CTA date single line;
   remove note; button more centered in black panel.
   ============================================================ */

/* 1) Numbers 01–06 — bigger, bolder, more presence */
.service-tile__number {
  font-size: clamp(1.35rem, 1.8vw, 1.95rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(10, 10, 11, 0.28);
  margin-bottom: 22px;
}

.service-tile--dark .service-tile__number {
  color: rgba(255, 255, 255, 0.28);
}

/* 2) Note element hidden (removed from DOM, CSS guard for safety) */
.cta-action-note {
  display: none;
}

/* 3) Inner stack: larger gap so button reads as the centered focus
   and date feels anchored toward the bottom */
.cta-action-inner {
  gap: 1.75rem;
  padding: clamp(2rem, 3.5vw, 3rem) 1.75rem;
}

/* 4) Date row: single horizontal line on desktop, wraps on mobile */
.cta-action-date {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.55rem;
}

@media (max-width: 640px) {
  .cta-action-date {
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   MOTION v1 — Scroll-reveal + hover for six service cards
   Reveal runs on .service-tile-shell (the outer wrapper).
   JS adds .reveal-ready to hide, then .is-visible when in view.
   Hover is scoped to .is-visible:hover — no transform conflict
   because reveal's final state is translateY(0) scale(1), leaving
   hover free to apply its own translateY on top cleanly.
   ============================================================ */

/* Hidden state — JS adds .reveal-ready; without JS cards stay visible */
.service-tile-shell.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  transition:
    /* Transform: all 6 move simultaneously (no delay) so top edges stay aligned */
    transform  400ms 0ms   cubic-bezier(0.16, 1, 0.3, 1),
    /* Opacity: staggers via --reveal-delay for the sequential appearance effect */
    opacity    600ms var(--reveal-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed — lands at translateY(0) so hover can apply its own transform cleanly */
.service-tile-shell.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover — only active post-reveal; resets stagger delay to zero */
.service-tile-shell.is-visible:hover {
  transform: translateY(-9px) scale(1.015);
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
}

/* Enhanced shadow on hover for light tiles (::before carries the filter) */
.service-tile-shell.is-visible:hover .service-tile--light::before {
  filter: drop-shadow(0 30px 64px rgba(10, 10, 11, 0.17));
  transition: filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Enhanced shadow on hover for dark tiles */
.service-tile-shell.is-visible:hover .service-tile--dark::before {
  filter: drop-shadow(0 18px 56px rgba(0, 0, 0, 0.50));
  transition: filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Icon: subtle lift + green glow on hover */
.service-tile__icon {
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    filter    380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tile-shell.is-visible:hover .service-tile__icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(30, 163, 54, 0.42));
}

/* Number: marginally more opaque on hover */
.service-tile-shell.is-visible:hover .service-tile__number {
  color: rgba(10, 10, 11, 0.44);
}

.service-tile-shell.is-visible:hover .service-tile--dark .service-tile__number {
  color: rgba(255, 255, 255, 0.44);
}

/* Reduced motion: cards immediately visible, no animation, minimal hover */
@media (prefers-reduced-motion: reduce) {
  .service-tile-shell.reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
    transition-delay: 0ms;
  }

  .service-tile-shell.is-visible:hover {
    transform: none;
    transition: none;
  }

  .service-tile__icon {
    transition: none;
  }
}

/* ============================================================
   FIX: uniform card height — tile fills its grid cell
   Root cause: tile had height:auto so ::before only covered
   content area, making shorter-text cards visibly shorter.
   fix: height:100% resolves against the shell's definite height
   (set by grid's align-items:stretch on the row track).
   ============================================================ */
.service-tile {
  height: 100%;
}

/* ============================================================
   POTENZIAL-SECTION v2 — AVIO Formsprache
   Rechte System-Leisten: Parallelogramm via clip-path
   Schatten auf .pi-shell (filter: drop-shadow folgt clip-path)
   Hover-Lift auf .pi-shell, Accordion-Verhalten unverändert
   ============================================================ */

/* Shell: trägt drop-shadow + translateY hover-lift */
.pi-shell {
  filter: drop-shadow(0 12px 32px rgba(10, 10, 11, 0.24));
  transform: translateY(0);
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    filter    360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .pi-shell:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 22px 52px rgba(10, 10, 11, 0.38));
  }

  /* Green dot glow on hover */
  .pi-shell:hover .problem-item__dot {
    box-shadow: 0 0 0 4px rgba(30, 163, 54, 0.28);
    background: #1ea336;
  }

  /* Number: more opaque on hover */
  .pi-shell:hover .problem-item__index {
    color: rgba(255, 255, 255, 0.72);
  }
}

/* Item: Parallelogramm via clip-path, kein border-radius */
.problem-item {
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

/* Trigger: innere Padding-Kompensation für die schrägen Kanten */
.problem-item__trigger {
  border-radius: 0;
  padding-left: calc(var(--space-lg) + 8px);
  padding-right: calc(var(--space-lg) + 8px);
}

/* Numbers: größer und dominanter */
.problem-item__index {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.26);
  transition: color 320ms cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 2.6ch;
}

/* Open-state: Nummer leuchtet auf */
.problem-item.is-open .problem-item__index {
  color: rgba(255, 255, 255, 0.70);
}

/* Open-state: Dot heller */
.problem-item.is-open .problem-item__dot {
  background: #1ea336;
}

/* Linke Intro-Karte: grüner Akzentbalken unter der Überschrift */
.problem__intro h2 {
  position: relative;
}

.problem__intro h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--avio-green, #1ea336);
  border-radius: 2px;
  margin-top: 0.9rem;
}

/* Reduced motion: kein Transform-Hover, kein Transition */
@media (prefers-reduced-motion: reduce) {
  .pi-shell {
    transition: none;
    will-change: auto;
  }
  .pi-shell:hover {
    transform: none;
  }
}

/* ============================================================
   POTENZIAL v3 — Horizontale Staffelung + Kachelgewicht
   Stagger via margin-left + width (nicht transform),
   damit hover translateY die Positionen nicht überschreibt.
   Stärkere clip-path: 4% für sichtbare Parallelogramm-Form.
   ============================================================ */

/* Grid: rechte Säule etwas breiter + Gap angepasst */
.problem__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(3.5rem, 6vw, 6.5rem);
}

/* Kachelgruppe: kleinere Abstände, wirkt kompakter als System */
.problem-list {
  gap: clamp(12px, 1.3vw, 16px);
}

/* ---- Horizontale Staffelung: Linke Kanten dynamisch, rechte Kanten bündig ---- */
/* width = 100% - margin-left → rechte Kante bleibt stets am rechten Rand */

.problem-list .pi-shell:nth-child(1) {
  margin-left: 0;
  width: 100%;
}
.problem-list .pi-shell:nth-child(2) {
  margin-left: 28px;
  width: calc(100% - 28px);
}
.problem-list .pi-shell:nth-child(3) {
  margin-left: 50px;
  width: calc(100% - 50px);
}
.problem-list .pi-shell:nth-child(4) {
  margin-left: 28px;
  width: calc(100% - 28px);
}
.problem-list .pi-shell:nth-child(5) {
  margin-left: 0;
  width: 100%;
}

/* ---- Kachel: stärkere Schrägform + Gradient-Hintergrund ---- */
.problem-item {
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  background:
    radial-gradient(ellipse at 16% 0%, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    linear-gradient(148deg, #111113 0%, #060607 100%);
  min-height: clamp(76px, 7vw, 94px);
}

/* ---- Trigger: mehr Höhe, angepasste Abstände ---- */
.problem-item__trigger {
  min-height: clamp(76px, 7vw, 94px);
  padding: clamp(16px, 1.6vw, 22px) clamp(22px, 2.8vw, 34px);
  gap: clamp(12px, 1.3vw, 18px);
}

/* ---- Pfeilbutton: etwas größer und präsenter ---- */
.problem-item__icon {
  width: 40px;
  height: 40px;
}

.problem-item__icon svg {
  width: 15px;
  height: 15px;
}

/* ---- Tablet: gedämpfte Staffelung (ca. 60% der Desktop-Werte) ---- */
@media (max-width: 1100px) and (min-width: 881px) {
  .problem-list .pi-shell:nth-child(2) {
    margin-left: 18px;
    width: calc(100% - 18px);
  }
  .problem-list .pi-shell:nth-child(3) {
    margin-left: 32px;
    width: calc(100% - 32px);
  }
  .problem-list .pi-shell:nth-child(4) {
    margin-left: 18px;
    width: calc(100% - 18px);
  }
}

/* ---- Mobile: keine Staffelung, full width ---- */
@media (max-width: 880px) {
  .problem-list .pi-shell:nth-child(1),
  .problem-list .pi-shell:nth-child(2),
  .problem-list .pi-shell:nth-child(3),
  .problem-list .pi-shell:nth-child(4),
  .problem-list .pi-shell:nth-child(5) {
    margin-left: 0;
    width: 100%;
  }

  .problem-list {
    gap: var(--space-sm);
  }
}

/* ============================================================
   POTENZIAL v4 — Proportionen, Nummern, Pfeile, Tiefe
   Grid: linke Spalte breiter (Headline-Zeilenumbrüche besser)
   Kacheln: mehr Höhe, Grid-Innenlayout, präsentere Details
   ============================================================ */

/* Grid: ausgeglichener → linke Karte bekommt mehr Atemraum */
.problem__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 5vw, 5rem);
}

/* Kacheln: mehr Höhe + tiefere schwarze Oberfläche */
.problem-item {
  min-height: clamp(84px, 8vw, 104px);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #101011 0%, #050506 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Trigger: CSS-Grid für präzise horizontale Ausrichtung aller Elemente */
.problem-item__trigger {
  display: grid;
  grid-template-columns: auto 1px auto minmax(0, 1fr) auto;
  gap: unset;
  column-gap: clamp(14px, 1.5vw, 20px);
  padding: 0 clamp(22px, 2.5vw, 30px);
  min-height: clamp(84px, 8vw, 104px);
  border-radius: 0;
}

/* Nummern: deutlich heller und dominanter */
.problem-item__index {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.75rem, 2.3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  min-width: unset;
  font-variant-numeric: tabular-nums;
}

/* Nummern bei Hover/Open: near-white */
.problem-item.is-open .problem-item__index,
.problem-item:hover .problem-item__index {
  color: rgba(255, 255, 255, 0.92);
}

/* Trennlinie: höher und heller */
.problem-item__divider {
  width: 1px;
  height: 36px;
  align-self: center;
  background: rgba(255, 255, 255, 0.18);
}

/* Grüner Punkt: klarer Glow */
.problem-item__dot {
  width: 8px;
  height: 8px;
  align-self: center;
  justify-self: center;
  box-shadow: 0 0 16px rgba(30, 163, 54, 0.42);
}

/* Titel: klarer und hochwertiger */
.problem-item__title {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  align-self: center;
}

/* Pfeilkreis: größer, heller, klarer sichtbar */
.problem-item__icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  align-self: center;
  justify-self: end;
}

.problem-item__icon svg {
  width: 15px;
  height: 15px;
}

/* Hover: Pfeilkreis grün akzentuiert */
@media (hover: hover) and (pointer: fine) {
  .pi-shell:hover .problem-item__icon {
    border-color: rgba(30, 163, 54, 0.55);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
  }
}

/* Mobile: reduzierte Kachelhöhe */
@media (max-width: 880px) {
  .problem-item,
  .problem-item__trigger {
    min-height: clamp(70px, 8vw, 84px);
  }

  .problem-item__index {
    font-size: clamp(1.5rem, 4.5vw, 1.85rem);
  }

  .problem-item__title {
    font-size: clamp(1rem, 3.2vw, 1.1rem);
  }
}

/* ============================================================
   POTENZIAL v5 — Linke Karte als Pfeil-/Schildform
   Surface via ::before (clip-path Pfeilspitze Richtung Kacheln)
   Drop-shadow auf .problem__intro folgt der clip-path Kontur.
   Body-Text dunkler. Closing mit Icon/Badge.
   Kachel-Dot besser entzerrt.
   ============================================================ */

/* Linke Karte: eigene Hintergrundlogik über ::before */
.problem__intro {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  filter: drop-shadow(0 16px 48px rgba(10, 10, 11, 0.09));
  padding: var(--space-lg) clamp(3.2rem, 5vw, 4.6rem) var(--space-lg) var(--space-lg);
}

/* Weiße Pfeil-/Schildform — rechte Seite läuft auf Kacheln zu */
.problem__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--c-white);
  border-radius: 22px 0 0 22px;
  clip-path: polygon(
    0%   0%,
    95%  0%,
    100% 50%,
    95%  100%,
    0%   100%
  );
}

/* Body-Text: besser lesbar */
.problem__intro .lead {
  color: rgba(10, 10, 11, 0.56);
}

/* Abschlusszeile: Flex-Row mit Icon/Badge */
.problem__intro-closing {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.2vw, 1rem);
}

.problem__intro-closing-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.04);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 11, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--avio-green, #1ea336);
}

.problem__intro-closing-icon svg {
  width: 18px;
  height: 18px;
}

.problem__intro-closing p {
  margin: 0;
  color: rgba(10, 10, 11, 0.54);
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
  line-height: 1.45;
}

.problem__intro-closing strong {
  color: var(--c-black, #0a0a0b);
  font-weight: 700;
}

/* Kachel-Innenlayout: Dot bekommt eigene Breite für Luft */
.problem-item__trigger {
  grid-template-columns: auto 1px 12px 1fr auto;
  column-gap: clamp(16px, 1.7vw, 22px);
}

/* ---- Responsive ---- */

/* Tablet: Pfeilspitze bleibt, dezenter */
@media (max-width: 1100px) and (min-width: 881px) {
  .problem__intro::before {
    clip-path: polygon(0% 0%, 96% 0%, 100% 50%, 96% 100%, 0% 100%);
  }
}

/* Mobile: einfachere Kartenform, keine Pfeilspitze Richtung rechts */
@media (max-width: 880px) {
  .problem__intro {
    filter: drop-shadow(0 12px 32px rgba(10, 10, 11, 0.09));
    padding: var(--space-md);
  }

  .problem__intro::before {
    border-radius: 18px;
    clip-path: polygon(
      0%   0%,
      100% 0%,
      100% 93%,
      93%  100%,
      0%   100%
    );
  }
}

/* ============================================================
   POTENZIAL — Finaler Mobile-Override
   Muss NACH v3/v4 (globale .problem__grid Regeln ohne @media)
   stehen, damit die 1fr-Spalte auf Mobile nicht überschrieben wird.
   v3 (Z. 6115): minmax(0,1fr) minmax(0,1.3fr)
   v4 (Z. 6215): minmax(0,1fr) minmax(0,1.1fr)
   Beide ohne @media → überschreiben den Mobile-Override bei Z. 1429.
   ============================================================ */

/* m-break: Desktop = inline (fließt in den Titeltext ein), Mobile = block (Zeilenumbruch) */
/* MUSS vor dem @media-Block stehen, damit @media (max-width: 880px) gewinnt */
.m-break { display: inline; }

@media (max-width: 880px) {
  /* Einspaltiges Layout: weiße Intro-Karte oben, schwarze Listen darunter */
  .problem__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Intro-Karte: volle verfügbare Breite */
  .problem__intro {
    width: 100%;
    min-width: 0;
  }

  /* Trigger: schmaleres Padding damit Kacheltitel nicht abgeschnitten wird */
  .problem-item__trigger {
    padding-inline: clamp(14px, 3.5vw, 22px);
    column-gap: clamp(10px, 2.5vw, 16px);
  }

  /* Titel: lesbar auf kleinen Breiten */
  .problem-item__title {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.1;
    min-width: 0;
  }

  /* Nummer: Mindestbreite sichern – verhindert optisches Anschneiden an clip-path */
  .problem-item__index {
    min-width: 2.6ch;
    flex-shrink: 0;
  }

  /* Erzwungene 2-zeilige Titeldarstellung — beide Teilzeilen als Block + kein interner Umbruch */
  .problem-item__title > span {
    display: block;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  /* m-break: explizit Block wiederholen (höhere Spezifität via Eltern-Selektor oben,
     aber als Absicherung auch einzeln) */
  .m-break {
    display: block;
  }
}
