/* ==========================================================================
   KOBIL — Produktseite IDentity — Sektion: Cover (Figma 16644:22609)
   ========================================================================== */

.sec-identity-cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--blue);
}

/* ---- Dekorative Vektor-Wellen im Hintergrund ---- */

.sec-identity-cover__waves {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.sec-identity-cover__wave {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-identity-cover__wave img {
  flex: none;
  display: block;
  max-width: none;
}

/* Welle A: diagonales Band oben rechts */
.sec-identity-cover__wave--a {
  top: -322.4px;
  right: -697px;
  width: 1839.4px;
  height: 2078.9px;
}

.sec-identity-cover__wave--a img {
  width: 1810.6px;
  height: 1056.1px;
  transform: rotate(-59.46deg) skewX(1.07deg);
}

/* Welle B: dunkleres Band unten links */
.sec-identity-cover__wave--b {
  bottom: -688.5px;
  left: -826.9px;
  width: 1839.4px;
  height: 2122.3px;
}

.sec-identity-cover__wave--b img {
  width: 1838.7px;
  height: 1061.4px;
  transform: rotate(120.02deg) skewX(0.05deg);
}

/* Welle C: hellblauer Glow am unteren Rand
   (aus Figma gebackener Alpha-Layer, deckt die ganze Karte ab) */
.sec-identity-cover__wave--c {
  inset: 0;
  display: block;
}

.sec-identity-cover__wave--c img {
  width: 100%;
  height: 100%;
}

/* ---- Inhalt ---- */

.sec-identity-cover__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: calc(846px + 48px);
  margin: 0 auto;
  padding: 120px 24px 124px;
  text-align: center;
}

.sec-identity-cover__logo {
  display: block;
  width: 163px;
  height: 55px;
}

.sec-identity-cover__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.sec-identity-cover__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 0;
  color: var(--white);
}

/* Figma zentriert Zeile 1 inkl. nachgestelltem Leerzeichen —
   Padding bildet das nach (Browser laesst haengende Spaces weg) */
.sec-identity-cover__title-line {
  padding-right: 9px;
}

.sec-identity-cover__sub {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

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

@media (max-width: 1024px) {
  .sec-identity-cover__content {
    padding: 104px 32px 108px;
  }
}

@media (max-width: 768px) {
  .sec-identity-cover__content {
    gap: 32px;
    padding: 80px 24px 88px;
  }

  .sec-identity-cover__logo {
    width: 140px;
    height: auto;
  }

  .sec-identity-cover__title {
    font-size: 36px;
    line-height: 46px;
  }

  .sec-identity-cover__title br {
    display: none;
  }

  .sec-identity-cover__title-line {
    padding-right: 0;
  }

  .sec-identity-cover__sub {
    font-size: 16px;
    line-height: 23px;
  }
}

@media (max-width: 480px) {
  .sec-identity-cover__content {
    gap: 28px;
    padding: 64px 20px 72px;
  }

  .sec-identity-cover__logo {
    width: 124px;
  }

  .sec-identity-cover__title {
    font-size: 36px;
    line-height: 44px;
  }
}
