/* ==========================================================================
   KOBIL — Industries (Übersicht) — Sektion: Cover (Figma 3191:26592)
   Eigenständige blaue Karte (1360x523) mit Verlaufs-Wellen, zentriertem H1
   und Subline. Kein Surface-Kontext → eigener 24px-Radius.
   ========================================================================== */

.sec-all-cover {
  position: relative;
  isolation: isolate;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 523px;
  padding: 48px 40px;
  border-radius: var(--radius-card);
  background: var(--blue);
}

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

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

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

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

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

.sec-all-cover__wave--a img {
  width: 1800.4px;
  height: 1054.1px;
  transform: rotate(-59.27deg) skewX(1.45deg);
}

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

.sec-all-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-all-cover__wave--c {
  inset: 0;
  display: block;
}

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

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

.sec-all-cover__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 797px;
  text-align: center;
  word-break: break-word;
}

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

.sec-all-cover__sub {
  margin: 0;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--navy-30);
}

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

@media (max-width: 1024px) {
  .sec-all-cover {
    min-height: 460px;
    padding: 44px 40px;
  }
}

@media (max-width: 768px) {
  .sec-all-cover {
    min-height: 400px;
    padding: 40px 32px;
  }

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

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

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

@media (max-width: 480px) {
  .sec-all-cover {
    min-height: 360px;
    padding: 40px 20px;
    border-radius: var(--radius-md);
  }

  .sec-all-cover__title {
    font-size: 32px;
    line-height: 40px;
  }
}
