:root {
    /* Farben */
    --color-primary-dark: #1F5270;  /* medium dark cyan-blue */
    --color-primary: #1FBDBA;       /* shade of cyan */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Typografie */
    --font-base: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;

    /* Layout */
    --max-width: 1440px;
    --page-padding-desktop: 32px;
    --page-padding-mobile: 16px;

    /* Sonstiges */
    --transition-fast: 0.2s ease-in-out;
}

/* work-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/work-sans-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/work-sans-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Reset / Baseline */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    color: var(--color-white);
    background-color: var(--color-black);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* Seitenrahmen */
.page-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: var(--page-padding-desktop);
}

/* Sektionen */
.section {
    padding-block: 64px;
}

@media (max-width: 768px) {
    .page-wrapper {
        padding-inline: var(--page-padding-mobile);
    }

    .section {
        padding-block: 40px;
    }
}

/* Typografie-Helfer */
.section-title {
    font-weight: var(--font-weight-semibold);
    margin: 0 0 24px;
}

.section-subtitle {
    font-weight: var(--font-weight-regular);
    margin: 0 0 16px;
}

/* Platzhalter für spätere Detail-Styles */
/* 1. Menüzeile */
.site-header {
    position: sticky; /* falls gewünscht, später anpassbar */
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
}

/* 2. Hero, 3. Gründe, 4. Leistungen, etc. kommen Abschnitt für Abschnitt, wenn wir dein Design einarbeiten */

/* HEADER / NAVIGATION */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-black);
    color: var(--color-white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 16px;
}

.logo img {
    height: 48px;
    width: auto;
}

/* Rechts: Sprache + Navigation + Toggle */
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switch img {
    height: 20px;
    width: auto;
}

/* Desktop-Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.875rem; /* ~14px */
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-primary);
}

.main-nav ul li:last-child {
    margin-right: 20px;
}

/* Optional: aktive Seite */
.nav-link.is-active {
    color: var(--color-primary);
}

/* Hamburger Button (mobil) */
.menu-toggle {
    display: none; /* nur auf Mobile sichtbar */
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    margin-inline: auto;
    background-color: var(--color-primary);
    transition: transform var(--transition-fast), opacity var(--transition-fast), top var(--transition-fast), bottom var(--transition-fast);
}

.menu-toggle span:nth-child(1) {
    top: 8px;
}

.menu-toggle span:nth-child(2) {
    top: 15px;
}

.menu-toggle span:nth-child(3) {
    top: 22px;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 80%;
    max-width: 420px;
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition-fast);
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.logo-mobile img {
    height: 40px;
}

/* Close-Button (X) */
.menu-close {
    position: relative;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
}

.menu-close span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    margin-inline: auto;
    background-color: var(--color-primary);
    transform-origin: center;
}

.menu-close span:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Menü-Liste */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
}

.mobile-nav-link {
    display: block;
    padding-block: 10px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--color-primary);
}

/* HERO-VIDEO */

.section-hero {
    padding: 0; /* kein zusätzlicher Weißraum um das Video */
}

.hero-video-wrapper {
    width: 100%;
    height: 70vh;      /* ca. 1/3 der Bildschirmhöhe */
    max-width: 100%;   /* innerhalb der page-wrapper max. 1440px */
    overflow: hidden;  /* falls Video etwas größer ist, sauber beschneiden */
    background-color: var(--color-black);
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* füllt den Bereich, ohne verzerrt zu werden – ggf. leichter Beschnitt */
    display: block;
}

/* Optional: auf sehr kleinen Screens etwas Mindesthöhe geben */
@media (max-width: 480px) {
    .hero-video-wrapper {
        min-height: 220px;
    }
}

/* ABSCHNITT 3 – GRÜNDE FÜR ZUSAMMENARBEIT */

.section-reasons {
    /* eigener vertikaler Abstand, da wir hier exakt arbeiten wollen */
    padding-block: 0;
    background: linear-gradient(to bottom, #1F5270 0%, #0D2F48 100%);
    color: var(--color-white);
}

/* Innenabstand laut Vorgabe:
   Desktop: 280px links/rechts, Mobile: 30px */
.reasons-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 280px;
}

/* H1 */
.reasons-heading {
    margin: 0;
    padding-top: 140px;   /* Abstand zum Abschnittsbeginn */
    margin-bottom: 70px;  /* Abstand zum ersten Textblock */
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 50px;
    line-height: 1.2;
}

.reasons-heading .highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary); /* #1FBDBA */
}

/* Schritte: 2-Spalten-Layout */
.reasons-steps {
    display: flex;
    flex-direction: column;
    gap: 70px; /* Abstand zwischen den 3 Absätzen (Desktop) */
    padding-bottom: 140px; /* Abstand zum nächsten Abschnitt */
}

.reasons-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 40px;
    align-items: stretch;  /* WICHTIG: linke Spalte wird so hoch wie rechte */
}


/* Linke Spalte: Nummer + Pfeil */
.reasons-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;   /* volle Höhe des gesamten Grunds */
}


.reasons-number {
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 40px;
    line-height: 1;
    color: var(--color-white);
}

/* Pfeil/Vertikallinie */
.reasons-arrow {
    flex: 1; 
    width: 2px;
    background-color: var(--color-primary);
    position: relative;
    margin-top: 24px;
}


/* kleiner Pfeilkopf nach unten */
.reasons-arrow::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: translateX(-50%) rotate(-45deg);
}


/* letzte Zeile darf etwas kürzer sein, optional ohne Pfeilkopf */

/* Grund 3: Linie komplett entfernen */
.reasons-arrow-last {
    display: none !important;
}

/* Rechte Spalte: H2 + Text */
.reasons-step-right h2 {
    margin: 0 0 35px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 30px;
    color: var(--color-primary); /* wie im Design grünlich hervorgehoben */
}

.reasons-step-right p {
    margin: 0;
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 1.6;
}


/* ABSCHNITT 4 – UNSERE LEISTUNGEN (CAROUSEL) */

.section-services {
    padding-block: 0;
    background-color: var(--color-primary); /* #1FBDBA */
    color: var(--color-white);
}

.services-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 280px;
}

/* H1 */

.services-heading {
    margin: 0;
    padding-top: 120px;
    margin-bottom: 70px;  /* Desktop: Abstand zur Karte */
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-white);
}

.services-heading .highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary-dark); /* #1F5270 */
}

/* Carousel-Layout (Desktop) */

.services-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Weißer Content-Block */

.services-card-wrapper {
    max-width: 900px;               /* „Realistische“ Breite innerhalb 1440px */
    width: 100%;
}

.services-card {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    padding: 40px 48px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    border-radius: 0;
    display: none;                 /* nur aktiver Slide sichtbar */
}

.services-card.is-active {
    display: block;
}

/* H2 + Linie */

.services-card h2 {
    margin: 0 0 24px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 30px;
    color: var(--color-primary); /* #1FBDBA */
}

.services-divider {
    width: 90%;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 24px;
}

/* Liste mit Pfeil-Bullets */

.services-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-primary-dark);
}

.services-card li::before {
    content: "\2192"; /* Pfeil nach rechts */
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 16px;
    color: var(--color-primary-dark);
}

/* Pfeil-Buttons Desktop */

.services-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast), box-shadow var(--transition-fast);
}

.services-arrow:hover,
.services-arrow:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Punkte-Navigation */

.services-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 35px;     /* Abstand Karte -> Punkte/Controls */
    padding-bottom: 120px; /* Abstand zum nächsten Abschnitt (Desktop) */
}

.services-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-primary-dark);
    opacity: 0.4;
    cursor: pointer;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.services-dot.is-active {
    opacity: 1;
    transform: scale(1.1);
}

/* Welche Pfeile wo sichtbar sind */

.services-arrow-mobile {
    display: none;  /* nur auf Mobile sichtbar */
}

/* ---------- MOBILE / TABLET (<= 768px) ---------- */

@media (max-width: 768px) {
    .services-inner {
        padding-inline: 30px;
    }

    .services-heading {
        padding-top: 120px;
        margin-bottom: 45px;
        font-size: 35px;
    }

    .services-carousel {
        justify-content: center;
        gap: 0;           /* nur Karte */
    }

    .services-card {
        padding: 24px 20px;
    }

    .services-card h2 {
        font-size: 22px;
    }

    .services-card li {
        font-size: 14px;
    }

    /* Desktop-Pfeile ausblenden */
    .services-arrow-desktop {
        display: none;
    }

    /* Mobile-Controls: Pfeile + Punkte in einer Zeile, Abstand nach unten 60px */
    .services-controls {
        margin-top: 24px;
        padding-bottom: 60px;
        justify-content: space-between;
    }

    .services-arrow-mobile {
        display: inline-flex;
    }

    .services-dots {
        justify-content: center;
        flex: 1;
    }
}




/* --------- MOBILE / SMARTPHONE-ANSICHT --------- */

@media (max-width: 768px) {
    .reasons-inner {
        padding-inline: 30px; /* links/rechts 30px */
    }

    .reasons-heading {
        padding-top: 60px;
        margin-bottom: 45px;
        font-size: 35px;
    }

   .reasons-step {
        grid-template-columns: 40px 1fr;  /* links schmal, rechts Text */
        column-gap: 20px;                 /* engerer Abstand */
        align-items: stretch;
    }

    .reasons-step-left {
        align-items: center; 
        height: 100%;
    }

    .reasons-number {
        font-size: 28px;
    }

    .reasons-arrow {
        flex: 1;
        margin-top: 8px;
        width: 2px;
    }

    .reasons-step-right h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .reasons-step-right p {
        font-size: 14px;
    }
}

/* Hervorhebung "Newsletter abonnieren" */
.mobile-nav-link-accent .mobile-nav-link {
    margin-top: 16px;
    color: var(--color-primary);
}

/* Trennlinie zu Impressum/Datenschutz/Werte */
.mobile-nav-separator {
    border-bottom: 1px solid var(--color-white);
    margin-block: 24px 12px;
}

.mobile-nav-link.small {
    font-size: 0.8125rem;
    font-weight: var(--font-weight-regular);
    text-transform: none;
    letter-spacing: normal;
}

/* Footer im Mobile-Menü */
.mobile-nav-footer {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #cccccc;
}

.mobile-nav-footer a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Body sperren, wenn Menü offen */
.body-menu-open {
    overflow: hidden;
}

/* Responsive Verhalten */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ABSCHNITT 5 – PERSONEN */

.section-team {
    padding-block: 0;
    background: linear-gradient(to bottom, #0D2F48 0%, #1F5270 100%);
    color: var(--color-white);
}

.team-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 190px;
}

/* H1 */

.team-heading {
    margin: 0;
    padding-top: 140px;   /* Abstand zum Abschnittsbeginn (Desktop) */
    margin-bottom: 70px;  /* Abstand zu den Personen */
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-white);
}

.team-heading .highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary); /* #1FBDBA */
}

/* Grid für 3 Personen (Desktop) */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 50px;   /* Abstand zwischen den 3 Spalten */
    padding-bottom: 120px; /* Abstand zum unteren Rand des Abschnitts (Desktop) */
}

/* Person-Card */

.person-card {
    display: flex;
    flex-direction: column;
}

.person-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.person-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Textbereich unter dem Bild */

.person-text {
    margin-top: 70px; /* Abstand Bild -> Textblock (Desktop) */
}

/* H2, S1, T1 */

.person-text h2 {
    margin: 0 0 8px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 30px;
    color: var(--color-primary); /* #1FBDBA */
}

.person-subtitle {
    margin: 0 0 24px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-primary); /* #1FBDBA */
}

.person-bio {
    margin: 0;
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
}

/* ---------- MOBILE / TABLET (<= 768px) ---------- */

@media (max-width: 768px) {
    .team-inner {
        padding-inline: 30px;
    }

    .team-heading {
        padding-top: 60px;
        margin-bottom: 45px;
        font-size: 35px;
    }

    .team-grid {
        grid-template-columns: 1fr; /* Personen untereinander */
        row-gap: 45px;              /* Abstand zwischen den Content-Blöcken */
        padding-bottom: 120px;      /* bleibt wie vorgegeben */
    }

    .person-text {
        margin-top: 35px; /* Abstand Bild -> Textblock Mobile */
    }

    /* Schriftgrößen bleiben laut Vorgabe gleich wie Desktop */
    .person-text h2 {
        font-size: 30px;
    }

    .person-subtitle {
        font-size: 18px;
    }

    .person-bio {
        font-size: 18px;
    }
}

/* ABSCHNITT 6 – PROJEKTE & REFERENZEN */

.section-projects {
    padding-block: 0;
    background-color: var(--color-primary); /* #1FBDBA */
    color: var(--color-white);
}

.projects-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 280px;
}

/* H1 + Intro T2 */

.projects-heading {
    margin: 0;
    padding-top: 120px;   /* Desktop: Abstand Abschnittsbeginn */
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-white);
}

.projects-heading .highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary-dark); /* #1F5270 */
}

.projects-intro {
    margin: 20px 0 70px;  /* 70px Abstand zum Grid (Desktop) */
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-white);
    max-width: 900px;
}

/* GRID MIT 6 KARTEN */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 50px;   /* Abstand der Spalten */
    row-gap: 50px;      /* Abstand zwischen den Karten-Zeilen */
    margin-bottom: 60px; /* Abstand zu „MEHR ANZEIGEN“ (Desktop) */
}

/* Karte */

.project-card {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

/* Titel & Untertitel */

.project-header {
    padding: 24px 24px 12px;
}

.project-header h2 {
    margin: 0 0 4px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 30px; /* H2 Desktop */
    color: var(--color-primary);    /* #1FBDBA */
}

.project-location {
    margin: 0;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 18px; /* T3 Desktop */
    color: var(--color-primary-dark);
}

/* Bild */

.project-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Details unten */

.project-details {
    padding: 24px;
}

.project-label {
    margin: 0 0 4px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 18px;         /* S1 Desktop */
    text-transform: uppercase;
    color: var(--color-primary); /* #1FBDBA */
}

.project-text {
    margin: 0 0 12px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 18px;         /* T1 Desktop */
    color: var(--color-primary-dark);
}

/* Liste mit Pfeil-Bullets */

.project-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-primary-dark);
}

.project-list li::before {
    content: "\2192"; /* → */
    position: absolute;
    left: 0;
    top: 0.15em;
    font-size: 12px;
    color: var(--color-primary-dark);
}

/* MEHR ANZEIGEN */

.projects-more {
    text-align: center;
    padding-bottom: 120px; /* Abstand zum unteren Rand des Abschnitts (Desktop) */
}

.projects-more-link {
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-primary-dark);
    display: inline-block;
}

/* ---------- MOBILE / TABLET (<= 768px) ---------- */

@media (max-width: 768px) {
    .projects-inner {
        padding-inline: 30px;
    }

    .projects-heading {
        padding-top: 60px;
        font-size: 35px;
    }

    .projects-intro {
        margin: 16px 0 45px; /* 45px bis zum ersten Block */
        font-size: 14px;
    }

    .projects-grid {
        grid-template-columns: 1fr; /* Karten untereinander */
        row-gap: 30px;              /* Abstand zwischen Content-Blöcken */
        margin-bottom: 30px;        /* Abstand zu „MEHR ANZEIGEN“ */
    }

    .project-header {
        padding: 20px 20px 10px;
    }

    .project-header h2 {
        font-size: 22px;  /* H2 Mobile */
    }

    .project-location {
        font-size: 14px;  /* T3 Mobile */
    }

    .project-details {
        padding: 20px;
    }

    .project-label {
        font-size: 14px;        /* S1 Mobile */
    }

    .project-text,
    .project-list li {
        font-size: 14px;        /* T1 Mobile */
    }

    .projects-more {
        padding-bottom: 60px;   /* Abstand zum unteren Rand Mobile */
    }
}


/* ABSCHNITT 7 – PROJEKTANFRAGE */

.section-inquiry {
    padding-top: 0;
    padding-bottom: 60px; /* Desktop Abstand zum nächsten Abschnitt */
    background: linear-gradient(to bottom, #0C2D46 0%, #1F5270 100%);
    color: var(--color-white);
}

.inquiry-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 280px;
}

/* H1 */

.inquiry-heading {
    margin: 0;
    padding-top: 140px;  /* Abstand Abschnittsbeginn Desktop */
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 50px;
    color: var(--color-white);
    line-height: 1.2;
}

.inquiry-heading .highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary); /* #1FBDBA */
}

/* Textblock */

.inquiry-text {
    margin-top: 70px;  /* Abstand H1 -> Text Desktop */
    margin-bottom: 50px; /* Abstand Text -> Button Desktop */
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-white);
    max-width: 900px;
}

/* Button */

.inquiry-button-wrapper {
    margin-bottom: 60px; /* Abstand Button -> nächster Abschnitt Desktop */
}

.inquiry-button {
    display: inline-block;
    padding: 18px 28px;
    background-color: var(--color-primary); /* #1FBDBA */
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.inquiry-button:hover,
.inquiry-button:focus {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ---------- MOBILE (<= 768px) ---------- */

@media (max-width: 768px) {

    .inquiry-inner {
        padding-inline: 30px;  /* Seitenränder */
    }

    .inquiry-heading {
        padding-top: 60px;      /* Abstand oben Mobile */
        font-size: 35px;        /* H1 Mobile */
    }

    .inquiry-text {
        margin-top: 45px;       /* Abstand H1 -> Text Mobile */
        margin-bottom: 45px;    /* Abstand Text -> Button Mobile */
        font-size: 14px;        /* T1 Mobile */
    }

    .inquiry-button-wrapper {
        margin-bottom: 30px;    /* Abstand Button -> nächster Abschnitt Mobile */
    }

    .section-inquiry {
        padding-bottom: 30px; /* Mobile Abstand zu Newsletter */
    }
}

/* ABSCHNITT 8 – NEWSLETTER */


.section-newsletter {
    padding-block: 0;
    background-color: var(--color-primary-dark); /* #1F5270 */
    color: var(--color-white);
}

.newsletter-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 280px;
}

/* H2 */

.newsletter-heading {
    margin: 0;
    padding-top: 60px; /* Abstand Abschnittsbeginn Desktop */
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 30px;
    line-height: 1.4;
    color: var(--color-primary); /* #1FBDBA */
}

/* Content-Block (3 Textblöcke) */

.newsletter-content {
    margin-top: 70px; /* Abstand H2 -> erster T2 Desktop */
}

.newsletter-item + .newsletter-item {
    margin-top: 32px; /* Abstand zwischen den drei Textblöcken */
}

.newsletter-title {
    margin: 0 0 6px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 18px;       /* T2 */
    color: var(--color-white);
}

.newsletter-text {
    margin: 0;
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 18px;       /* T1 Desktop */
    line-height: 1.6;
    color: var(--color-white);
}

/* Formular: E-Mail + Button */

.newsletter-form {
    margin-top: 50px; /* Abstand letzter T1 -> Eingabefeld Desktop */
    padding-bottom: 140px; /* Abstand Button -> nächster Abschnitt Desktop */
}

.newsletter-form-row {
    display: flex;
    align-items: center;
    gap: 35px; /* Abstand Input <-> Button Desktop */
}

.newsletter-input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    font-family: var(--font-base);
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: #cccccc;
}

.newsletter-button {
    padding: 14px 24px;
    background-color: var(--color-primary); /* #1FBDBA */
    border: none;
    cursor: pointer;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-white);
    white-space: nowrap;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.newsletter-button:hover,
.newsletter-button:focus {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ---------- MOBILE (<= 768px) ---------- */

@media (max-width: 768px) {

    .newsletter-inner {
        padding-inline: 30px;
    }

    .newsletter-heading {
        padding-top: 30px;
        font-size: 22px;
    }

    .newsletter-content {
        margin-top: 30px; /* Abstand H2 -> erster T2 Mobile */
    }

    .newsletter-title {
        font-size: 16px;
    }

    .newsletter-text {
        font-size: 14px;
    }

    .newsletter-form {
        margin-top: 45px;    /* Abstand letzter T1 -> Input Mobile */
        padding-bottom: 60px; /* Abstand Button -> nächster Abschnitt Mobile */
    }

    .newsletter-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px; /* Input -> Button Mobile */
    }

    .newsletter-button {
        width: 100%;
        text-align: center;
    }
}
/* ABSCHNITT 9 – FOOTER */

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 280px;
    padding-top: 70px; /* Abstand Abschnittsbeginn -> erster Block Desktop */
    padding-bottom: 40px; /* Basis, unten kommt dann noch Footer-Bottom */
}

/* 3 Hauptblöcke oben */

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 50px;
    align-items: flex-start;
}

/* Block 1: Logo + Adresse + Badges */

.footer-logo img {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-address {
    margin: 24px 0 24px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold); /* T4 */
    font-size: 12px;
    line-height: 1.6;
}

/* Badges (Desktop + Mobile nebeneinander) */

.footer-badges {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-badge {
    flex: 1;
    background-color: transparent;
    padding: 8px;
}

.footer-badge img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Block 2 & 3: Überschriften + Texte */

.footer-heading {
    margin: 0 0 16px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary); /* #1FBDBA – S1 */
}

.footer-contact-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    font-family: var(--font-base);
    font-size: 12px;
    line-height: 1.5;
}

.footer-label {
    font-weight: var(--font-weight-semibold); /* T3 -> Semibold für Label */
}

.footer-value {
    font-weight: var(--font-weight-regular); /* T3 */
}

.footer-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-services-list li {
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 4px;
}

/* Untere Leiste: Links + Copyright */

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid transparent; /* optische Trennung bei Bedarf */
}

/* Link-Spalten 1–3 */

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-link-item {
    text-decoration: none;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer-link-line {
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-white);
    margin-bottom: 8px;
}

.footer-link-text {
    display: inline-block;
}

/* Copyright-Spalte (4 + 5 zusammengefasst) */

.footer-copy {
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 10px;
    line-height: 1.6;
    text-align: right;
}

.footer-copy-highlight {
    font-weight: var(--font-weight-semibold);
}

/* ---------- MOBILE / TABLET (<= 768px) ---------- */

@media (max-width: 768px) {

    .footer-inner {
        padding-inline: 30px;
        padding-top: 45px; /* Abstand Abschnittsbeginn -> Logo */
    }

    .footer-main {
        grid-template-columns: 1fr; /* Blöcke untereinander */
        row-gap: 30px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .footer-address {
        margin-top: 30px;  /* Logo -> Adresse */
        font-size: 10px;   /* T4 Mobile */
    }

    .footer-badges {
        margin-top: 20px;
        margin-bottom: 30px; /* Abstand Bilder -> Kontakt-Block */
    }

    .footer-badge {
        padding: 6px;
    }

    .footer-heading {
        font-size: 10px;  /* S1 Mobile */
    }

    .footer-contact-row,
    .footer-services-list li {
        font-size: 10px;  /* T3 Mobile */
    }

    .footer-col-contact {
        margin-bottom: 30px; /* Abstand Kontakt -> Unsere Leistungen */
    }

    /* Unterer Bereich */

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        padding-top: 24px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-link-item {
        align-items: center;
        font-size: 10px; /* Links Mobile */
    }

    .footer-link-line {
        width: 60px;
    }

    .footer-copy {
        font-size: 8px;  /* Copyright Mobile */
        text-align: center;
    }
}
/* IMPRESSUM / RECHTSTEXTE */

.section-legal {
    padding-block: 0;
    background: linear-gradient(to bottom, #0D2F48 0%, #1F5270 100%);
    color: var(--color-white);
}

.legal-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 280px;
}


.legal-heading {
    margin: 0 0 8px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 40px;
}

.legal-version {
    margin: 0 0 32px;
    font-size: 14px;
    opacity: 0.8;
}

.legal-subheading {
    margin: 40px 0 12px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.legal-label {
    margin: 24px 0 4px;
    font-family: var(--font-base);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.section-legal p {
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.legal-note {
    font-size: 10px;
    opacity: 0.9;
}

.legal-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 40px 0;
}

/* Mobile */

@media (max-width: 768px) {
    .legal-inner {
        padding: 60px 30px;
    }

    .legal-heading {
        font-size: 32px;
    }

    .section-legal p {
        font-size: 14px;
    }
}
