:root {
  /* Font Weights */
  --fw-regular: 400;
  --fw-bold: 600;
  --fw-black: 800;

  /* Breakpoints */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

  /* Desktop (LG / XL) */
  --h1-size: 56px;
  --h1-line: 63px;

  --h2-size: 43px;
  --h2-line: 48px;

  --h3-size: 43px;
  --h3-line: 48px;

  --h4-size: 26px;
  --h4-line: 32px;

  --h5-size: 20px;
  --h5-line: 25px;

  --overline-size: 30px;
  --overline-line: 36px;

  --subheadline-size: 30px;
  --subheadline-line: 36px;

  --copy-size: 20px;
  --copy-line: 30px;

  --pointer-size: 20px;
  --pointer-line: 30px;

  /* CTA */
  --cta-height: 47px;
  --cta-radius: 35px;
}

/* Mobile (M / SM) */

@media (max-width: 1023px) {
  :root {
    --h1-size: 35px;
    --h1-line: 37px;

    --h2-size: 26px;
    --h2-line: 33px;

    --h3-size: 22px;
    --h3-line: 26px;

    --h4-size: 20px;
    --h4-line: 26px;

    --h5-size: 18px;
    --h5-line: 26px;

    --overline-size: 21px;
    --overline-line: 26px;

    --subheadline-size: 21px;
    --subheadline-line: 26px;

    --copy-size: 16px;
    --copy-line: 24px;

    --pointer-size: 16px;
    --pointer-line: 24px;
  }
}

/* Font */

@font-face {
	font-family: 'Netto';
	src: url('/2025/assets/fonts/NettoLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'Netto';
	src: url('/2025/assets/fonts/NettoRegular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Netto';
	src: url('/2025/assets/fonts/NettoBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Netto';
	src: url('/2025/assets/fonts/NettoBlack.woff') format('woff'),
		url('/2025/assets/fonts/NettoBlack.woff2') format('woff2'),
		url('/2025/assets/fonts/NettoBlack.otf') format('otf');
	font-weight: 800;
	font-style: normal;
}

body {
	-webkit-font-smoothing: antialiased;
}

main {
	overflow: hidden;
}

h1, .h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line);
  font-weight: var(--fw-black);
}

h2, .h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line);
  font-weight: var(--fw-bold);
}

h3, .h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line);
  font-weight: var(--fw-bold);
}

h4, .h4 {
  font-size: var(--h4-size);
  line-height: var(--h4-line);
  font-weight: var(--fw-bold);
}

h5, .h5 {
  font-size: var(--h5-size);
  line-height: var(--h5-line);
  font-weight: var(--fw-bold);
}

.overline {
  font-size: var(--overline-size);
  line-height: var(--overline-line);
  font-weight: var(--fw-bold);
}

.subheadline {
  font-size: var(--subheadline-size);
  line-height: var(--subheadline-line);
  font-weight: var(--fw-bold);
}

.copy {
  font-size: var(--copy-size);
  line-height: var(--copy-line);
  font-weight: var(--fw-regular);
}

.pointer {
  font-size: var(--pointer-size);
  line-height: var(--pointer-line);
  font-weight: var(--fw-bold);
}

.underline {
 position: relative;
    text-decoration: none;
    display: inline-block;
}

.underline:after {
content: '';
    position: absolute;
    left: 0;
    bottom: 0.05em;
    width: 100%;
    height: 0.16em;
    background-color: #CCFF00;
    border-radius: 50px;
    z-index: -1;
}

/* CTA */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--cta-height);
  border-radius: var(--cta-radius);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  background: #DBFF01;

  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta:hover {
  transform: scale(1.05);
}

.cta--short {
  padding: 0 15px; /* bis 3 Zeichen */
}

.cta--medium {
  padding: 0 10px; /* ab 4 Zeichen */
}

.cta--long {
  padding: 0 3px; /* ab 20 Zeichen */
}

/* Base */

body {
  margin: 0;
  font-family: "Netto",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

header {
  background: #151F4D;
  padding: 0;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.site-header-logo svg {
  flex-shrink: 0;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header-menu {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.site-header-menu:hover {
  opacity: 1;
}

nav a {
  color: #fff;
  margin-right: 1rem;
  text-decoration: none;
}

main {
  padding: 0;
}

footer {
  background: #151F4D;
  padding: 0;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer-copy {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  margin-right: 0;
}

.site-footer-nav a:hover {
  color: #CCFF00;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.site-footer-social-link:hover {
  color: #CCFF00;
}


/* ============================================================
   HOME
   ============================================================ */

.schleupen-logo {
	width: 26vw;
	height: auto;
}

h2 {
	color: #00386E;
}

#stability-headline {
	font-size: 4.6vw;
	margin: 1vw;
	font-weight: var(--fw-black);
}

#sub-headline {
	margin: 0;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 52vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
	margin-bottom: 5vw;
}

.hero-logo {
	margin-bottom: 5vw;
}

.highlight-underline {
    text-decoration: underline;
    text-decoration-color: #CCFF00;
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.25em;
}

.scroll-down-btn {
	position: absolute;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    bottom: 5%;
    transition: transform 0.3s ease;
}

.scroll-down-btn:hover {
    transform: translateY(5px);
}

.executive-section h2 {
    text-align: center;
}

.executive-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
}

.executive-box {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
}

.executive-left {
    width: 35%;
    display: flex;
    flex-direction: column;
}

.executive-right {
    flex: 1;
    position: relative;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.3s ease;
	font-weight: var(--fw-bold);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.executive-overlay-img {
    position: absolute;
    bottom: -120px;
    right: 12%;
    height: 147%;
    z-index: 10;
    pointer-events: none;
}

.executive-info {
    display: flex;
    gap: 30px;
}

.responsive-img-icon-small {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.waterfor-ukraine-img {
    height: 145px;
}

.numbers-section {
    background-color: #F4F5F8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.numbers-section h2 {
    text-align: center;
}

.numbers-container {
    width: 100%;
    max-width: 1350px;
    display: flex;
    flex-direction: column;
}

.eckpunkte-box {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    background-color: #151F4D;
    box-shadow: none;
}

.eckpunkte-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.eckpunkte-text {
    display: flex;
    flex-direction: column;
}

.eckpunkte-text h3,
.eckpunkte-text p {
    margin: 0;
}

.eckpunkte-text p {
    width: 80%;
}

.eckpunkte-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
	position: relative;
}

.cert-img {
    width: 7.8vw;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: -7.2vw;
    right: 0;
}

.eckpunkte-right {
    width: 50%;
    position: relative;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eckpunkte-diagram-img {
    position: absolute;
    top: 55%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 22vw;
    max-width: 430px;
    height: auto;
    z-index: 1;
}

.grid-row-2 {
    display: flex;
    gap: 7.81vw;
}

.kpi-box {

    background-color: #151F4D;
    border-radius: 24px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: none;
}

.kpi-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bar-chart-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.bars-container {
    display: flex;
    gap: 0.8vw;
    align-items: flex-end;
    height: 100%;
}

.bar-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 0.3em;
}

.bar-value {
    line-height: 0.8em;
}

.bar {
    width: 5.2vw;
    max-width: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bar-2024 {
    background-color: #8D93A5;
}

.bar-2025 {
    background-color: #151F4D;
}

.bar-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding-top: 1.5vw;
}

.placeholder-box {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-box {
    flex: 0.8;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: none;
}

.linechart-box {
    flex: 1.2;
    background-color: #151F4D;
}

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.numbers-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.more-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-info-section h2 {
    text-align: center;
}

.info-container {
    width: 100%;
    max-width: 1350px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cards-row {
    display: flex;
    gap: 4.16vw;
}

.info-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 26, 59, 0.2) 0%, rgba(18, 26, 59, 0.9) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.card-content h2 {
    margin: 0;
	text-align: left;
	color: #fff;
	font-weight: 400;
}

.btn-primary-small {
    display: inline-block;
    background-color: #CCFF00;
    color: #151F4D;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-primary-small:hover {
    transform: scale(1.05);
}

.csr-banner {
    background-color: #F8F9FB;
    border-radius: 24px;
    display: flex;
}

.csr-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.csr-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.donation-grid {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.donation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/*
@media (max-width: 768px) {

    .hero-section {
        height: auto;
        min-height: 75vw;
    }

    .schleupen-logo {
        width: 50vw;
    }

    #stability-headline {
        font-size: 9vw;
        line-height: 10vw;
    }

    .hero-text {
        margin-bottom: 20vw;
    }

    .underline:after {
        bottom: 0.0em;
    }

    #sub-headline {
        font-size: 22px;
        line-height: 1.25;
    }

    .executive-section {
        padding: 50px 20px;
        margin-bottom: 0;
    }

    .executive-section h2 {
        margin-bottom: 40px;
    }

    .executive-box {
        flex-direction: column;
        min-height: 0;
    }

    .executive-left {
        width: 100%;
        padding: 36px 28px;
        gap: 24px;
    }

    .executive-right {
        width: 100%;
        height: 56vw;
        flex: none;
    }

    .executive-overlay-img {
        display: none;
    }

    .executive-info {
        flex-direction: column;
        gap: 12px;
    }

    .numbers-section {
        padding: 50px 16px;
    }

    .numbers-section h2 {
        margin-bottom: 40px;
    }

    .eckpunkte-box {
        flex-direction: column;
    }

    .eckpunkte-left {
        width: 100%;
        padding: 32px 24px;
    }

    .eckpunkte-right {
        width: 100%;
        height: 52vw;
        flex: none;
    }

    .eckpunkte-text p {
        width: 100%;
    }

    .eckpunkte-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cert-img {
        position: static;
        height: 80px;
    }

    .grid-row-2 {
        flex-direction: column;
        gap: 20px;
    }

    .kpi-box {
        flex: none;
        padding: 32px 24px;
        gap: 24px;
    }

    .kpi-number {
        font-size: 3rem;
    }

    .bar-chart-box {
        flex: none;
    }

    .map-box,
    .linechart-box {
        flex: none;
    }

    .more-info-section {
        padding: 50px 16px;
    }

    .more-info-section h2 {
        margin-bottom: 36px;
    }

    .cards-row {
        flex-direction: column;
        gap: 20px;
    }

    .info-card {
        min-height: 220px;
    }

    .csr-banner {
        flex-direction: column;
        padding: 36px 24px;
        gap: 28px;
    }

    .csr-left h3 {
        font-size: 1.5rem;
    }

    .donation-grid {
        justify-content: flex-start;
        gap: 24px;
    }

    .responsive-img-icon-small {
        height: 70px;
    }

    .waterfor-ukraine-img {
        height: 100px;
    }
}
*/

/* ============================================================
   VORSTAND
   ============================================================ */

.button-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
}

#intro-opener {
    font-size: 43px;
    line-height: 48px;
    font-weight: 600;
}

.executive-letter-section {
    background-color: #121A3B;
    background-image: url('/2025/assets/img/vorstand-background.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    position: relative;
}

.letter-container {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.executive-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 53%;
}

.executive-photo-container {
    width: 47%;
    display: flex;
    justify-content: flex-end;
}

.executive-photo {
    max-width: 110%;
    height: auto;
    object-fit: contain;
}

.signature-area {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.signature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signature-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.signature-text {
    font-size: 16px;
    line-height: 1.4;
}

.signature-text strong {
    font-weight: var(--fw-bold);
}

.return-cta {
    display: inline-block;
    background: #CCFF00;
    color: #151F4D;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.return-cta:hover {
    transform: scale(1.05);
}

@media (max-width: 1023px) {
    .executive-letter-section {
        padding: 60px 20px;
        background-position: center top;
    }

    .letter-container {
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }

    .executive-text-content {
        width: 100%;
        order: 1;
    }

    .executive-photo-container {
        width: 100%;
        justify-content: center;
        order: 2;
    }

    .executive-photo {
        max-width: 80%;
    }

    .signature-area {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .signature-item {
        align-items: center;
    }
}
/*
@media (max-width: 768px) {
    #intro-opener {
        font-size: 26px;
        line-height: 1.25;
    }

    .executive-text-content p {
        font-size: 16px;
    }

    .executive-letter-section {
        padding: 40px 16px;
    }

    .executive-photo {
        max-width: 95%;
    }

    .button-section {
        margin-bottom: 60px;
    }
}
*/

/* ============================================================
   ZAHLEN
   ============================================================ */

.zp-section-nav {
    background: #0D1638;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.zp-section-nav .zp-container {
    padding-top: 0;
    padding-bottom: 0;
}

.zp-section-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    height: 48px;
}

.zp-snav-link {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.2s;
    white-space: nowrap;
}

.zp-snav-link:hover {
    color: #CCFF00;
}

.zp-snav-sep {
    color: rgba(255,255,255,0.25);
    font-size: 1rem;
    line-height: 1;
    user-select: none;
}

.zahlen-page {
    font-family: "Netto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
}


.zp-page-title {
    text-align: center;
}

.zp-section-title {
    text-align: center;
}


.zp-eckpunkte {
    background: #ffffff;
}

.zp-hero-card {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    background: #151F4D;
    min-height: 320px;
    margin-bottom: 24px;
}

.zp-hero-left {
    width: 32%;

    display: flex;
    flex-direction: column;
}

.zp-hero-right {
    width: 68%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2%;
    box-sizing: border-box;
}

.zp-hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zp-hero-diagram-img {
    position: relative;
    width: 27.60vw;
    max-width: 530px;
    height: auto;
    z-index: 1;
}

.zp-ebit-section {
    background: #F4F5F8;
    padding: 60px 0 80px;
}

.zp-ebit-card {
    display: flex;
    background: #ffffff;
    border-radius: 24px;

    max-width: 800px;
    margin: 0 auto;
    box-shadow: none;
}

.zp-ebit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zp-ebit-text .copy {
    margin: 0;
}

.zp-ebit-chart {
    flex-shrink: 0;
}

.zp-bars {
    display: flex;
    align-items: flex-end;
}

.zp-bars--in-card {
    flex-shrink: 0;
}

.zp-bars--centered {
    justify-content: center;
    flex-shrink: 0;
}

.zp-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 8px;
}

.zp-bar-val {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-align: center;
}


.zp-bar {
    width: 100px;
    border-radius: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.zp-bar--gray  { background: #8D93A5; }
.zp-bar--dark  { background: #151F4D; }
.zp-bar--lime  { background: #CCFF00; }

.zp-bar-year {
    font-size: 1.5rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #ffffff;
    letter-spacing: 0.04em;
}

.zp-umsaetze {
    background: #ffffff;

}

.zp-grid-row {
    display: flex;
    gap: 3.12vw;
    margin-bottom: 24px;
}

.zp-grid-row:last-child { margin-bottom: 0; }

.zp-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    flex: 1;
}

.zp-card--wide { flex: 1.8; }
.zp-card--col  { flex: 1; }
.zp-card--full { flex: 1; }

.zp-card--row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.zp-card--col {
    display: flex;
    flex-direction: column;
    gap: 13px;
    justify-content: center;
}


.zp-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zp-card--light .zp-card-text .copy {
    margin: 0;
}

.zp-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.zp-pct {
    font-weight: 700;
    min-width: 44px;
    font-size: 0.9rem;
}

.zp-stats {
    background: #ffffff;
    padding: 80px 0;
}

.zp-stats-row {
    display: flex;
    align-items: stretch;
}

.zp-stats-box {
    display: flex;
    flex-direction: column;
}

.zp-stats-box .copy {
    margin: 0;
}

.zp-stats-box--grow {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zp-grow-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: auto;
    display: block;
}

.zp-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zp-stats-right > .zp-stats-box {
    flex: 1;
}

.zp-stats-box--bonitaet {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.zp-bonitaet-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zp-bonitaet-text h3 { margin: 0; }

.zp-crefo {
    width: 8.33vw;
    max-width: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.zp-table-wrap {
    position: relative;
    border-radius: 24px;
    box-shadow: none;
}

.zp-placeholder-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: #CCFF00;
    color: #151F4D;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.zp-table-sub {
    margin: 0 0 24px;
}

.zp-table {
    width: 100%;
    border-collapse: collapse;
}

.zp-table thead th {
    text-align: left;

    border-bottom: 2px solid #151F4D;
}

.zp-table thead th:not(:first-child) {
    text-align: right;
}

.zp-table tbody td {
    padding: 0.3em 0.6em;
    border-bottom: 1px solid #151F4D;
}

table th:nth-child(2), 
table td:nth-child(2) {
    background: #DBFF01;
}

.zp-table tbody td:not(:first-child) {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.zp-result td {
    font-weight: 700;
    border-top: 2px solid #151F4D;
    border-bottom: none;
    padding-top: 13px;
}

.zp-group td {

    font-weight: 700;
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-bottom: none;
}


.zp-eigentuemer {
    background: #ffffff;
    overflow: hidden;
}

.zp-eigen-card {
    display: flex;
    border-radius: 24px;
    background: #151F4D;
    background: url(/2025/assets/img/gradient-aufsichtsrat.png);
    background-size: cover;
}

.zp-eigen-left {
    width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zp-eigen-left .copy {
    margin: 0;
    opacity: 0.9;
}


.zp-ar-list {
    display: flex;
    flex-direction: column;
    padding-left: 1em;
    margin: 0;
}

.zp-eigen-right {
    width: 56%;
    display: flex;
    align-items: center;
    overflow: visible;
}

.zp-eigen-photo {
    position: relative;
    width: 54vw;
    max-width: 1036px;
    height: auto;
    flex-shrink: 0;
    margin-top: -5%;
    margin-bottom: -5%;
    margin-left: -8%;
}

.zp-back-row {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.zp-btn-back {
    display: inline-block;
    background: #CCFF00;
    color: #151F4D;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.zp-btn-back:hover {
    transform: scale(1.05);
}
/*
@media (max-width: 768px) {

    .zp-section-nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        height: auto;
        padding: 10px 0;
        gap: 4px;
        scrollbar-width: none;
    }
    .zp-section-nav-list::-webkit-scrollbar { display: none; }
    .zp-snav-sep { display: none; }



    .zp-hero-card {
        flex-direction: column;
    }
    .zp-hero-left {
        width: 100%;
        padding: 32px 24px;
    }
    .zp-hero-right {
        width: 100%;
        height: 52vw;
    }
    .zp-hero-bg-video {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
    }

    .zp-ebit-card {
        flex-direction: column;
        gap: 36px;
        padding: 32px 24px;
    }
    .zp-bars {
        height: 200px;
        justify-content: center;
    }
    .zp-bar {
        width: 70px;
    }

    .zp-grid-row {
        flex-direction: column;
    }
    .zp-card--wide,
    .zp-card--col,
    .zp-card--full {
        flex: none;
    }
    .zp-card--row {
        flex-direction: column;
        gap: 28px;
    }
    .zp-bars--in-card {
        height: 200px;
        justify-content: center;
    }
    .zp-card--light > img {
        width: 100%;
        height: auto;
    }

    .zp-stats-row {
        flex-direction: column;
    }
    .zp-stats-box--bonitaet {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .zp-crefo {
        height: 80px;
    }

    .zp-table-wrap {
        padding: 28px 16px;
        overflow-x: auto;
    }
    .zp-table {
        min-width: 480px;
    }
    .zp-placeholder-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }

    .zp-eigen-card {
        flex-direction: column;
    }
    .zp-eigen-left {
        width: 100%;
        padding: 36px 24px;
    }
    .zp-eigen-right {
        width: 100%;
        height: 60vw;
        overflow: hidden;
    }
    .zp-eigen-photo {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}
*/

/* ============================================================
   GUV-TABELLEN
   ============================================================ */

.bold-border {
    border-bottom: 2px solid #00386D !important;
}

.bold-font {
    font-weight: 600 !important;
}

.black-font {
    font-weight: 900 !important;
}

.financial-section {
    width: 100%;
    background-color: #F4F5F8;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.financial-container {
    width: 100%;
    max-width: 1000px;
}

.financial-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px 0;
    margin-bottom: 30px;
    margin-left: -20px;
}

.financial-table th {
    vertical-align: bottom;
    padding: 12px 10px 10px 10px;
    border-bottom: 2px solid #00386D;
}

.financial-table td {
    border-bottom: 1px solid #00386D;
}

.financial-table-new td {
    border-bottom: 1px solid #00386D;
}

.bottom-double-line td {
    height: 30px;
    padding: 0;
    border-bottom: 1px solid #00386D;
}

.bottom-padding-row td {
    height: 25px;
    padding: 0;
    border-bottom: none !important;
}

.no-line td {
    border-bottom: none !important;
}

.align-left { text-align: left; }
.align-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.fw-bold { font-weight: var(--fw-bold); }

.highlight-col {
    background-color: #DBFF01;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 15%;
}

.col-2022 {
    width: 15%;
}

.header-highlight {
    padding-top: 30px !important;
}


/*
@media (max-width: 768px) {
    .financial-table {
        border-spacing: 10px 0;
        margin-left: -10px;
    }
    .highlight-col {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
*/

/* ============================================================
   SCHLEUPEN CS
   ============================================================ */

.cs-hero-screen {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-45%);
    z-index: 1;
    pointer-events: none;
    display: block;
}

.cs-intro-section {
    max-width: 730px;
    margin: 0 auto;
    text-align: center;
}

.cs-container {
    display: flex;
    flex-direction: column;
}

.cs-card {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.cs-card-left {
    width: 26%;
    flex-shrink: 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-card-left--gray {
        width: 35%;
}


.cs-card-right {
    flex: 1;
    position: relative;

    overflow: hidden;
    background-color: #060e25;
}

.cs-card-right--left {
    width: 50%;
    flex: none;
}

.cs-bg-video {
    position: absolute;
    inset: 0;
    width: 102%;
    height: 102%;
    object-fit: cover;
}

.cs-card-icon {
    position: absolute;
    left: 42%;
    top: 60%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.cs-card-icon--arrow {
    left: 42%;
}

.cs-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cs-feature-icon { margin-bottom: 4px; }

.cs-feature--light { background-color: #ffffff; }

.cs-feature--light .copy { max-width: 720px; margin: 0; }

.cs-ki-section {
    width: 100%;
    background: url(/2025/assets/img/ki-bg.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
}

.cs-ki-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.cs-ki-inner .btn-primary { align-self: center; margin-top: 8px; }
/*
@media (max-width: 768px) {
    .cs-hero-screen { width: 90%; left: 50%; transform: translateX(-50%); }

    .cs-intro-section { padding: 48px 20px 40px; }

    .cs-cards-section { padding: 0 16px 0; }

    .cs-container { gap: 24px; }

    .cs-card { flex-direction: column; }

    .cs-card-left,
    .cs-card-right--left { width: 100%; }

    .cs-card-left { padding: 36px 28px; }

    .cs-card-right { min-height: 52vw; }
    .cs-card-right--left { min-height: 52vw; flex: none; height: 52vw; }

    .cs-card-icon { display: none; }

    .cs-feature { padding: 52px 24px; }

    .cs-ki-section { margin-top: 24px; padding: 60px 20px; }
}
*/

/* ============================================================
   GESCHAEFTSENTWICKLUNG
   ============================================================ */

.ge-hero {
    position: relative;
    width: 100%;
    height: 52vw;
    overflow: hidden;
}

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

.ge-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8,14,40,0.25) 0%,
        rgba(8,14,40,0.08) 50%,
        rgba(8,14,40,0.35) 100%
    );
}

.ge-hero-windrad {
    position: absolute;
    right: 10%;
    bottom: -5%;
    height: 100%;
    width: auto;
    z-index: 1;
    pointer-events: none;
    display: block;
}


.ge-intro {
    display: flex;
    justify-content: center;
    text-align: center;
}

.ge-topics-section {
    display: flex;
    justify-content: center;
}

.ge-topics-box {
    background-color: #F4F5F8;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
}

.ge-topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ge-topic-icon {
    display: flex;
    justify-content: center;
}

.ge-neukunden-section {
    display: flex;
    justify-content: center;
}


.ge-bsp-card {
    width: 100%;
    margin: 0 auto;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
}

.ge-bsp-left {
    width: 44%;
    flex-shrink: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ge-service-icon { line-height: 0; }

.ge-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.ge-checklist li {
    display: flex;
    align-items: flex-start;
}

.ge-checklist li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23CCFF00'/%3E%3Cpath d='M5.5 11L9 14.5L16.5 7' stroke='%23151F4D' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.ge-bsp-right {
    flex: 1;
    position: relative;
        overflow: hidden;
    border-radius: 25px;
}

.ge-bsp-video {
        right: -50%;
    position: absolute;
    /* inset: 0; */
    width: 80vw;
    height: 80vw;
    max-width: 1536px;
    max-height: 1536px;
    top: -46%;
    transform: rotate(90deg);
}
/*
@media (max-width: 768px) {
    .ge-hero { height: auto; min-height: 56vw; }

    .ge-hero-windrad { height: 80%; }

    .ge-intro { padding: 48px 20px 36px; }

    .ge-topics-section { padding: 0 16px 40px; }

    .ge-topics-box { padding: 0 28px; }

    .ge-divider { margin: 0 -28px; }

    .ge-topic { padding: 36px 0; }

    .ge-neukunden-section { padding: 48px 16px; }

    .ge-bsp-section { padding: 40px 16px 60px; }

    .ge-bsp-card {
        flex-direction: column;
        min-height: 0;
        box-shadow: none;
    }

    .ge-bsp-left {
        width: 100%;
        padding: 36px 28px;
    }

    .ge-bsp-right {
        width: 100%;
        height: 60vw;
        flex: none;
    }
}
*/

/* UPDATE */ 

:root {
  --container-large: 83.33vw;
  --container-medium: 70.31vw;

  --fw-regular: 400;
  --fw-bold: 600;
  --fw-black: 800;

  --fs-large: 4.68vw;
  --lh-large: 6.25vw;

  --fs-medium: 2.91vw;
  --lh-medium: 3.28vw;

  --fs-small: 2.23vw;
  --lh-small: 2.60vw;

  --fs-copy: 1.04vw;
  --lh-copy: 1.56vw;
  
  --color-primary: #00386E;
  --color-accent: #DBFF01;
  --color-accent-soft: #F3FAC7;
  --color-white: #fff;
  --color-light: #F5F5F5;
  --color-medium: #8489A0;

  --margin-large: 9.37vw;
  --margin-big: 8.33vw;
  --margin-medium: 4.42vw;
  --margin-small: 3.12vw;

  --padding-large: 6.77vw;
  --padding-big: 4.42vw;
  --padding-medium: 3.64vw;
  --padding-small: 2.60vw;
  --padding-xsmall: 1.56vw;
}


@media (min-width: 1920px) {
  :root {
    --container-large: 1600px;
    --container-medium: 1350px;

    --fs-large: 90px;
    --lh-large: 120px;

    --fs-medium: 56px;
    --lh-medium: 63px;

    --fs-small: 43px;
    --lh-small: 50px;

    --fs-copy: 20px;
    --lh-copy: 30px;

    --margin-large: 180px;
    --margin-big: 160px;
    --margin-medium: 85px;
    --margin-small: 60px;

    --padding-large: 130px;
    --padding-big: 85px;
    --padding-medium: 70px;
    --padding-small: 50px;
    --padding-xsmall: 30px;
  }
}

@media (max-width: 991px) {
  :root {
    --container-large: 90vw;
    --container-medium: 90vw;

    --fs-large: 7vw;
    --lh-large: 8vw;

    --fs-medium: 6vw;
    --lh-medium: 7vw;

    --fs-small: 5vw;
    --lh-small: 6vw;

    --fs-copy: 4.5vw;
    --lh-copy: 6vw;
  }
}

.container-large {
    width: var(--container-large);
    margin: 0 auto;
}

.container-medium {
    width: var(--container-medium);
    margin: 0 auto;
}

h1, h2, h3, h4, p {
    margin: 0;
}

.fw-regular {
    font-weight: var(--fw-regular);
    font-style: normal;
}

.fw-bold {
    font-weight: var(--fw-bold);
    font-style: normal;
}

.fw-black {
    font-weight: var(--fw-black);
    font-style: normal;
}

.fw-italic {
    font-weight: var(--fw-regular);
    font-style: italic;
}

.fs-large {
    font-size: var(--fs-large);
}

.lh-large {
    line-height: var(--lh-large);
}

.fs-medium {
    font-size: var(--fs-medium);
}

.lh-medium {
    line-height: var(--lh-medium);
}

.fs-small {
    font-size: var(--fs-small);
}

.lh-small {
    line-height: var(--lh-small);
}

.fs-copy {
    font-size: var(--fs-copy);
}

.lh-copy {
    line-height: var(--lh-copy);
}

.color-primary {
    color: var(--color-primary);
}

.color-white {
    color: var(--color-white);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-accent {
    background-color: var(--color-accent);
}

.bg-accent-soft {
    background-color: var(--color-accent-soft);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-light {
    background-color: var(--color-light);
}

.bg-medium {
    background-color: var(--color-medium);
}

.m-auto {
    margin: auto;
}

.ml-top {
    margin-top: var(--margin-large);
}

.ml-bottom {
    margin-bottom: var(--margin-large);
}

.mb-top {
    margin-top: var(--margin-big);
}

.mb-bottom {
    margin-bottom: var(--margin-big);
}

.mm-top {
    margin-top: var(--margin-medium);
}

.mm-bottom {
    margin-bottom: var(--margin-medium);
}

.ms-top {
    margin-top: var(--margin-small);
}

.ms-bottom {
    margin-bottom: var(--margin-small);
}

.p-large {
    padding: var(--padding-large);
}

.p-medium {
    padding: var(--padding-medium);
}

.ph-large {
    padding-left: var(--padding-large);
    padding-right: var(--padding-large);
}

.pv-large {
    padding-top: var(--padding-large);
    padding-bottom: var(--padding-large);
}

.ph-big {
    padding-left: var(--padding-big);
    padding-right: var(--padding-big);
}

.pv-big {
    padding-top: var(--padding-big);
    padding-bottom: var(--padding-big);
}

.ph-medium {
    padding-left: var(--padding-medium);
    padding-right: var(--padding-medium);
}

.pv-medium {
    padding-top: var(--padding-medium);
    padding-bottom: var(--padding-medium);
}

.ph-small {
    padding-left: var(--padding-small);
    padding-right: var(--padding-small);
}

.pv-small {
    padding-top: var(--padding-small);
    padding-bottom: var(--padding-small);
}

.ph-xsmall {
    padding-left: var(--padding-xsmall);
    padding-right: var(--padding-xsmall);
}

.pv-xsmall {
    padding-top: var(--padding-xsmall);
    padding-bottom: var(--padding-xsmall);
}

.pl-none {
    padding-left: 0;
}

.pr-none {
    padding-right: 0;
}

.pt-none {
    padding-top: 0;
}

.pb-none {
    padding-bottom: 0;
}

.btn-primary {
    font-size: var(--fs-copy);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    background-color: var(--color-accent);
    padding: 0.5em 1em 0.6em 1em;
}

section.ge-hero:after {
    content: "";
    position: absolute;
    bottom: -5%;
    width: 100%;
    height: 5%;
    background: linear-gradient(0deg, #fff, transparent);
    z-index: 9;
}

@media (min-width: 1921px) {
    #stability-headline {
        font-size: 90px;
        margin: 20px;
    }
    .cert-img {
        top: -150px;
    }
    .numbers-section .bar-chart-box {
        padding-right: 85px!important;
    }
    .numbers-section .bar-chart-box h3 {
        width: 285px!important;
    }
    .numbers-section .kpi-box {
        width: 830px!important;
    }
    .grid-row-2 {
        gap: 150px;
    }
    .cards-row {
        gap: 80px;
    }
	.zp-grid-row {
		gap: 60px;
	}
	.bar-label {
		padding-top: 28px;
	}
}

/* ============================================================
   MOBILE / LANDSCAPE OPTIMIERUNG (≤ 1024 px)
   ============================================================ */

/* Rotate-Overlay: standardmäßig versteckt */
#rotate-overlay {
    display: none;
}

/* Hochformat (Portrait) auf kleinen Geräten: Overlay einblenden */
@media (max-width: 1024px) and (orientation: portrait) {
    #rotate-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 99999;
        background-color: #151F4D;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        box-sizing: border-box;
    }
    #rotate-overlay img {
        object-fit: cover;
		width: 100%;
		height: 100%;
    }

}

/* Querformat (Landscape) bei ≤ 1024 px: Desktop-Layout beibehalten */
@media (max-width: 1024px) and (orientation: landscape) {
    main {
        overflow-x: hidden;
    }
    /* Schriftgrößen für mittlere Viewports anpassen */
    :root {
        --fs-large:  5.5vw;
        --lh-large:  6.5vw;
        --fs-medium: 3.8vw;
        --lh-medium: 4.6vw;
        --fs-small:  2.8vw;
        --lh-small:  3.6vw;
        --fs-copy:   1.8vw;
        --lh-copy:   2.6vw;
    }

    /* ─── Navigation: Abstand links ───────────────────── */
    nav .nav-wrapper .container,
    nav #inner-nav-wrapper .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    nav .nav-wrapper #nav-logo svg {
        width: 120px;
        height: auto;
    }
    nav .nav-wrapper #gb-select p {
        font-size: 15px;
    }

    /* ─── Footer: Kleinere Schriften ──────────────────── */
    footer #footer-nav-wrapper .links div,
    footer #footer-nav-wrapper .address div {
        font-size: 13px !important;
    }

    /* ─── Startseite: Namen der Vorstände untereinander ── */
    .executive-info {
        flex-direction: column;
        gap: 12px;
    }

    /* ─── Startseite: Mehr Abstand Vorstandsabschnitt ──── */
    .executive-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .executive-section h2 {
        margin-bottom: 100px;
    }

    /* ─── Vorstand-Seite: Überschrift Schriftgröße ────── */
    #intro-opener {
        font-size: 20px;
        line-height: 1.4;
    }

    /* ─── Vorstand-Seite: Desktop-Layout beibehalten ───── */
    .letter-container {
        flex-direction: row !important;
        gap: 24px;
    }
    .executive-text-content {
        width: 53% !important;
        order: 0 !important;
    }
    .executive-photo-container {
        width: 47% !important;
        order: 0 !important;
    }
    .signature-area {
        flex-direction: row !important;
        align-items: flex-end !important;
        text-align: left !important;
    }
    .signature-item {
        align-items: flex-start !important;
    }


    /* ─── Schleupen CS: Card-Icons kleiner ────────────── */
    .cs-card-icon svg {
        width: 100px;
        height: auto;
    }

    /* ─── Tabellen horizontal scrollbar ───────────────── */
    .zp-table-wrap,
    .financial-container {
        overflow-x: auto;
    }
    .zp-table,
    .financial-table {
        min-width: 500px;
    }
}