@charset "UTF-8";

/* ========================================================================= */
/* -------------------------- FONTS ---------------------------------------- */
/* ========================================================================= */
@font-face {
    font-family: "CoFo Kak";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/CoFoKak-Regular-Trial.otf') format('opentype');
}

@font-face {
    font-family: "CoFo Kak";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/CoFo_Kak-Medium.eot') format('embedded-opentype'),
        url('../fonts/CoFo Kak Medium.woff2') format('woff2'),
        url('../fonts/CoFo Kak Medium.woff') format('woff'),
        url('../fonts/CoFoKak-Medium-Trial.otf') format('opentype');
}

@font-face {
    font-family: "CoFo Kak";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/CoFoKak-Black-Trial.otf') format('opentype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url('../fonts/static/Roboto-Thin.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 100;
    font-display: swap;
    src: url('../fonts/static/Roboto-ThinItalic.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/static/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/static/Roboto-LightItalic.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/static/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/Roboto-Regular-webfont.woff') format('woff');
}

@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/static/Roboto-Italic.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Roboto-Medium-webfont.woff') format('woff'),
        url('../fonts/static/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/static/Roboto-MediumItalic.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/static/Roboto-Bold.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/static/Roboto-BoldItalic.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/static/Roboto-Black.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/static/Roboto-BlackItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/static/Roboto_Condensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/static/Roboto_Condensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.missing {
    border: 5px red solid;
}

.text-center {
    text-align: center !important;
    padding: 4vh;
}

a.cases__item {
    display: block;
    /* Damit das a-Tag sich wie eine Box verhält */
    cursor: pointer;
    text-transform: uppercase;
    /* Die Hand als Mauszeiger */
    text-decoration: none;
    border: none;
}

/* --- LOGO SLIDER BASIC SETUP --- */

/* Standardmäßig den Mobile Slider verstecken */
.mobile-logo-slider {
    display: none;
}

/* Animation definieren */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Schiebt um genau die Hälfte (ein Bild) nach links */
}


/* ========================================================================= */
/* -------------------------- VARIABLES ------------------------------------ */
/* ========================================================================= */
:root {
    --color-primary: #63B22F;
    /* Green */
    --color-secondary: #414141;
    /* Dark Grey */
    --color-accent: #d4ff00;
    /* Neon/Lime */
    --color-highlight: #ff8ea7;
    /* Pink */
    --color-white: #fff;
    --color-black: #414141;

    --font-primary: "CoFo Kak", sans-serif;
    --font-secondary: "Roboto", sans-serif;
    --font-condensed: "Roboto Condensed", sans-serif;
    --grid-gap: 0.5em;
}

/* ========================================================================= */
/* -------------------------- GLOBAL RESET --------------------------------- */
/* ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    /* Original Base Size */
    letter-spacing: 0.01rem;
}

body {
    color: var(--color-secondary);
}

p {
    margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h6 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 5em;
    text-transform: uppercase;
    text-align: left;
    color: var(--color-black);
}

h5 {
    font-size: 1em;
    font-family: var(--font-secondary);
}

.full-width {
    width: 100vw;
}

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

.result__video {
    width: 100%;
    padding: 10vh;
}

img {
    max-width: 100%;
    height: auto;
}


/* Global Content Section Padding */
.content-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-white);
    /* Ensure background is white by default */
    color: var(--color-secondary);
    /* Ensure text is grey by default */
}

.content-section__dark {
    padding: 100px 0;
    position: relative;
    color: var(--color-white);
    background-color: var(--color-secondary);
}

/* ============================================
   VIDEO LIGHTBOX MODAL
============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* 90% Schwarz */
    z-index: 10000; /* Muss über allem liegen */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none; /* Klicks gehen durch, wenn unsichtbar */
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal__content {
    position: relative;
    width: 80%; /* Wunschbreite */
    max-width: 1200px;
    background: #000;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Close Button (X) */
.video-modal__close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-modal__close:hover {
    transform: scale(1.1);
    color: var(--color-accent); /* Deine grüne Farbe */
}

/* Responsive Iframe Container (16:9 Ratio) */
.video-modal__responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
}

.video-modal__responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================================================= */
/* -------------------------- UTILITIES ------------------------------------ */
/* ========================================================================= */
.btn,
.button,
.Button,
.btn-primary,
.btn-lime-green {
    display: inline-block;
    padding: 0.75rem 5rem;
    background-color: var(--color-accent);
    border: 1px solid #d3d71d;
    color: var(--color-secondary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.3em;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover,
.button:hover,
.Button:hover,
.btn-primary:hover,
.btn-lime-green:hover {
    background-color: #b8c73c;
    color: #000;
    text-decoration: none;
    border-color: #b8c73c;
}

.lime-green {
    color: #D9FF3D;
}

.neon-yellow {
    color: var(--color-accent);
}

.text-white {
    color: var(--color-white) !important;
}

.tw35 {
    width: 35vw;
}

/* ========================================================================= */
/* -------------------------- NAVIGATION ----------------------------------- */
/* ========================================================================= */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: transparent !important;
    transition: background-color 0.3s ease-in-out;
}

#main-nav.scrolled {
    background-color: var(--color-white) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.navbar-brand img {
    width: 187px;
    height: 42px;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 54px;
    transition: background-color 0.3s ease;
    font-size: 1.5em;
}

.btn-contact:hover {
    background-color: #8BB82D;
    color: var(--color-white);
}

#menu-toggle-btn {
    height: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

/* Offcanvas Basis-Container */
#offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: transparent; /* Overlay dahinter macht es dunkel */
    z-index: 1045;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* Erlaubt Scrollen, falls Menü zu lang wird */
}

#offcanvas-menu.is-open {
    transform: translateX(0);
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Etwas dunkler für besseren Kontrast */
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(5px); /* Optional: macht den Hintergrund unscharf */
}

body.offcanvas-open .page-overlay {
    opacity: 1;
    visibility: visible;
}

#offcanvas-menu .navbar-nav {
    width: 100%;
    text-align: center;
    padding-top: 2rem; /* Abstand oben */
}

/* Haupt-Links */
#offcanvas-menu .nav-link {
    font-family: var(--font-primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.8rem; /* Etwas größer */
    color: var(--color-white);
    transition: color 0.2s ease-in-out;
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    cursor: pointer;
}

#offcanvas-menu .nav-link:hover {
    color: var(--color-accent);
}

/* --- LOGIC FÜR DAS SUBMENU (ACCORDION) --- */

/* Plus-Zeichen hinzufügen */
.has-submenu > .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Das + Zeichen rechts neben dem Text */
.has-submenu > .nav-link::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 10px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--color-accent); /* Farbe für das Plus */
}

/* Wenn offen: Minus (oder gedrehtes Plus) */
.has-submenu.is-open > .nav-link::after {
    content: '-';
    transform: rotate(180deg);
}

/* --- FIX FÜR DAS SUBMENU (FINAL) --- */

/* 1. Standard: Das Menü ist weg */
/* Wir nehmen !important hier RAUS, damit wir es leichter überschreiben können */
#offcanvas-menu .submenu {
    display: none; 
    opacity: 0;
    padding-left: 0;
}

/* 2. Wenn OFFEN: Zeig es an! */
/* WICHTIG: Wir nutzen hier jetzt auch #offcanvas-menu am Anfang. 
   Dadurch ist diese Regel STÄRKER als die obere. */
#offcanvas-menu .has-submenu.is-open .submenu {
    display: block !important;
    opacity: 1;
    animation: fadeIn 0.3s ease-in;
}

/* 3. Links Styling */
#offcanvas-menu .submenu-item .nav-link {
    display: block;
    color: var(--color-white);
    font-size: 1.2rem;
    padding: 10px 0 10px 20px; /* Mehr Platz zum Klicken */
    text-transform: none; 
    opacity: 0.8;
}

#offcanvas-menu .submenu-item .nav-link:hover {
    color: var(--color-accent);
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


.video-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    text-align: center;
    font-family:var(--font-primary);
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    color: var(--color-accent);
    font-size: 1.8rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.video-text-overlay.visible {
    opacity: 1;
}

.podcast__video-wrapper,
.cases__video-wrapper {
    position: relative;
    overflow: hidden;
}

/* ========================================================================= */
/* --------------------------  PARTIALS  ----------------------------------- */
/* ========================================================================= */

.content-section__image_section {
    height: 80vh;
    z-index: 0;
    position: absolute;
    margin-top: -45vh;
}

.content-section__image_section img {
    height: 100%;
    width: 100%;
}

/* ========================================================================= */
/* -------------------------- HERO SECTION --------------------------------- */
/* ========================================================================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero__image{
    height:100vh;
}

.hero__image_50{
    height:50vh;
}

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

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero__claim {
    background-color: var(--color-primary);
    padding: 11vh 0 11vh 0;
}

.hero__claim-subtitle {
    font-size: 1.9rem;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 600;
    margin-top: -5vh;
    margin-bottom: 3.5rem;
}

.hero__claim-subtitle-white {
    font-size: 1.9rem;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: 600;
    margin-top: -5vh;
    margin-bottom: 3.5rem;
}

.hero__claim-main-text {
    font-size: 6rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    text-align: center;
    color: var(--color-white);
}

.hero__claim-sub-text {
    font-size: 7rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    color: var(--color-secondary);
    text-align: center;
}

/* ========================================================================= */
/* -------------------------- WITH YOU SECTION ----------------------------- */
/* ========================================================================= */
.with-you {
    background-color: var(--color-white);
    padding: 35px 0 35px 0;
    /* height: 35vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.with-you__video-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.with-you__video {
    width: 55%;
    height: 100%;
    object-fit: contain;
}

/* ========================================================================= */
/* ----------------------- HIGH QUALITY VIDEO ------------------------------ */
/* ========================================================================= */
.high-quality-video {
    background-color: var(--color-secondary);
    padding: 80px 0;
    color: var(--color-white);
    min-height: 90vh;
    /* restored from original !important rule */
}

.high-quality-video__container {
    width: 90vw;
    margin: auto;
}

.high-quality-video__title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    /* Original deviation */
    margin-bottom: 1rem;
    text-align: center;
}

.high-quality-video__subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-white);
    line-height: 32px;
}

.high-quality-video__info-text {
    color: var(--color-white);
    line-height: 32px;
    font-size: 1.3rem;
    /* inferred from p style */
}

.high-quality-video__grid {
    display: grid;
    /* Exakt 2 gleich große Spalten */
    grid-template-columns: 1fr 1fr; 
    /* Der Abstand wird vom Grid verwaltet, nicht vom Element */
    gap: 20px; 
    width: 100%;
}

.high-quality-video__grid-item {
    /* Keine Breitenberechnung mehr nötig, das macht das Grid */
    width: 90%;
    margin: 0 !important; /* WICHTIG: Margins stören hier nur */
}

/* Sicherstellen, dass das Video den Platz ausfüllt */
.high-quality-video__video-cut {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 2;
}

.high-quality-video__video-title {
    font-size: 1.2rem;
    color: var(--color-white);
    text-transform: uppercase;
    font-family: var(--font-secondary);
    letter-spacing: 2px;
    
    /* FIXES: */
    display: block;
    width: 100%;           /* Volle Breite des Containers nutzen */
    text-align: center;      /* Links bündig mit dem Video */
    
    /* Abstände aufräumen */
    margin-top: 0;      /* Definierter Abstand zum Video (statt 1.5rem, was oft zu viel ist) */
    margin-bottom: 0;      /* Kein Rand unten */
    margin-left: 0;        /* Sicherstellen, dass es links klebt */
    margin-right: 0;
    
    line-height: 1.2;      /* Verhindert riesige Lücken bei Zeilenumbruch */
}

.high-quality-video__button {
    margin-top: 3vh;
    margin-bottom: 1vh;
    text-align: center;
}

/* ========================================================================= */
/* ----------------------- IHRE VORTEILE ----------------------------------- */
/* ========================================================================= */
.ihre-vorteile {
    background-color: var(--color-accent);
    font-family: var(--font-primary);
    color: var(--color-secondary);
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.ihre-vorteile__content {
    width: 90%;
    margin: auto;
}

.ihre-vorteile__title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-secondary);
}

.ihre-vorteile__subtitle {
    text-align: center;
    color: var(--color-secondary);
    font-size: 2.5rem;
    /* xx-large approx */
    font-family: var(--font-primary);
    text-transform: none;
    font-weight: 500;
}

.ihre-vorteile__item {
    background-color: var(--color-accent);
    padding: 30px;
    margin-bottom: 2rem;
    color: var(--color-secondary);
    width: 38em;
    /* Original specific width */
    display: flex;
}

.ihre-vorteile__icon {
    width: 76px;
    height: auto;
    margin-right: 2rem;
}

.ihre-vorteile__item-title {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 !important;
    text-align: left;
    color: var(--color-secondary);
}

.ihre-vorteile__item-text {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

/* ========================================================================= */
/* ----------------------- VISION VIDEO ------------------------------------ */
/* ========================================================================= */
.vision-video {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-family: var(--font-primary);
    padding: 80px 0;
}

.vision-video__lead {
    font-size: 2.5em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

.vision-video__title {
    font-size: 2.8rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
}

.vision-video__card {
    text-align: center;
}

.vision-video__card video {
    width: 100%;
}

.vision-video__card-title {
    color: var(--color-white);
    font-size: 0.9em;
    font-family: var(--font-secondary);
    text-align: center;
    font-weight: 300;
}

/* ========================================================================= */
/* ----------------------- READY FOR CONTENT ------------------------------- */
/* ========================================================================= */
.ready-for-content {
    font-family: var(--font-primary);
    background-color: var(--color-highlight);
    text-align: center;
    padding: 4rem 1rem;
}

.ready-for-content__text-block {
    display: inline-block;
    text-align: center;
    line-height: 1;
    padding-bottom: 5vh;
    padding-top: 50px;
}

.ready-for-content__small-text {
    display: block;
    color: var(--color-white);
    font-weight: 800;
    font-size: 4.25em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ready-for-content__big-text {
    display: block;
    color: var(--color-white);
    font-weight: 900;
    font-size: 8em;
    text-transform: uppercase;
    line-height: 0.9;
}

.ready-for-content__button {
    padding-bottom: 5vh;
}

.ready-for-content__contact-info {
    width: fit-content;
    text-align: left;
    margin: auto;
}

.ready-for-content__contact-item {
    font-size: 1.6em;
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
}

.cases {
    background: var(--color-secondary);
}

/* GRID */
.cases__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px;
}

/* GENERIC ITEM */
.cases__item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

/* VIDEO */
.cases__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT */
.cases__text-container {
    background: var(--color-accent);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cases__text-title {
    font-size: 5em;
    color: var(--color-primary);
    font-family: var(--font-primary);
    text-align: left;
    margin: 0;
}

.cases__text-subtitle {
    color: var(--color-secondary);
    font-size: 6.5em;
    text-transform: uppercase;
    z-index: 2;
    text-align: left;
    line-height: 0.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.is-vertical::before {
    padding-top: 177.77%;
    /* 9:16 */
}

/* Beide in der Reihe gleiche Höhe erzwingen */
.cases__grid {
    align-items: stretch;
}

/* GRID SPANS */
.grid__item--span-3 {
    grid-column: span 3;
}

.grid__item--span-4 {
    grid-column: span 4;
}

.grid__item--span-6 {
    grid-column: span 6;
}

.grid__item--span-9 {
    grid-column: span 9;
}


/* ========================================================================= */
/* ----------------------- UNSERE STÄRKEN ---------------------------------- */
/* ========================================================================= */
.unsere-staerken {
    background-color: var(--color-secondary);
    padding: 80px 0;
}

.unsere-staerken__title {
    color: var(--color-primary);
    font-size: 5em;
    text-align: center;
}

.unsere-staerken__subtitle {
    color: var(--color-accent);
    font-size: 6em;
    text-align: center;
    padding-bottom: 1em;
}

.unsere-staerken__grid {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-template-rows: repeat(2, 1fr);
}

.unsere-staerken__kachel {
    height: auto;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: 0 auto;
}

.unsere-staerken__kachel-image img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.kachel-label {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    display: block;
}

/* ========================================================================= */
/* ----------------------- STEPS TO GOAL ----------------------------------- */
/* ========================================================================= */
.steps-to-goal {
    background-color: var(--color-secondary);
    padding-top: 60px;
    padding-bottom: 110px;
}

.steps-to-goal-div {
    background-color: var(--color-secondary);
    margin-bottom: 60px;
}

.steps-to-goal__title {
    color: var(--color-highlight);
    font-size: 4.5rem;
    font-weight: bold;
    text-align: center;
}

.steps-to-goal__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 80vw;
    margin: 0 auto;
    padding-bottom: 10vh;
}

.steps-to-goal__step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
    min-height: 100px;
}

.steps-to-goal__step-number {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 5rem;
    font-weight: bold;
    color: var(--color-accent);
    line-height: 0.8;
    font-family: var(--font-primary);
    min-width: 4vw;
    display: inline-flex;
    justify-content: center;
}

.steps-to-goal__step-content {
    position: relative;
    z-index: 2;
    padding-top: 15px;
    padding-left: 4vw;
    font-size: 1.2em;
}

.steps-to-goal__step-content h3 {
    color: var(--color-highlight);
    font-size: 1.5rem;
    letter-spacing: 0;
    margin: 0 0 8px 0;
    text-align: left;
    margin-top: -3vh;
    font-family: var(--font-secondary);
    font-weight: 700;
    padding-bottom: 3vh;
}

.steps-to-goal__step-content p {
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.5;
    margin: 0;
}

/* ========================================================================= */
/* ----------------------- HOW TO SOCIAL ----------------------------------- */
/* ========================================================================= */
.how-to-social {
    text-align: center;
    color: #fff;
    background-color: var(--color-secondary);
    /* inferred background */
}

.how-to-social__container {
    padding: 50px 0px;
    width: 100%;
    background: #6AB024;
    /* Green background from original */
}

.how-to-social__subtitle {
    text-align: center;
    color: white;
    font-size: 5em;
    /* Assumed size for 'how to' h3 */
}

.how-to-social__title {
    text-align: center;
    color: white;
    font-size: 7em;
}

.how-to-social__tagline {
    color: var(--color-accent);
    text-align: center;
    display: block;
}

/* ========================================================================= */
/* ----------------------- SOCIAL MEDIA ------------------------------------ */
/* ========================================================================= */
.social_media {
    text-align: center;
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.social_container {
    max-width: 90vw;
    margin: 0 auto;
}

.social_header {
    font-size: 3.2em;
    font-family: var(--font-primary);
    padding: 2vw;
    font-weight: 500;
    text-align: center;
}

.hts_social_media_two_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 3vw;
    width: 15vw;
    margin: auto;
}

.tiktok_round_icon {
    grid-area: 1 / 1 / 3 / 3;
}

.ig_round_icon {
    grid-area: 1 / 3 / 3 / 5;
}

.ig_postings {
    display: grid;
    grid-template-columns: repeat(3, 20vw);
    gap: 10px;
    justify-content: center;
    margin: auto;
}

.social_we_do {
    background-color: var(--color-secondary);
    height: 70vh;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.swd_header {
    height: 20vh;
}

.swd_header h1 {
    font-size: 5.3em;
    font-family: var(--font-primary);
    text-align: center;
    color: white;
    margin-top: 5vh;
    text-transform: none;
    padding: 20px;
    line-height: 2.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    background-color: var(--color-secondary);
}

.swd_brands {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: 59vh;
    margin: auto;
    background-color: var(--color-secondary);
}

.swd_brands .div1 {
    grid-area: 2 / 2 / 4 / 4;
}

.swd_brands .div2 {
    grid-area: 2 / 4 / 4 / 6;
}

.swd_brands .div3 {
    grid-area: 2 / 6 / 4 / 8;
}

.swd_brands .div4 {
    grid-area: 2 / 8 / 4 / 10;
}

.swd_icon {
    background-size: cover;
    background-position: center;
    height: 30vh;
}

.swd_icon img {
    height: 75%;
}

/* ========================================================================= */
/* ----------------------- UNITY ------------------------------------------- */
/* ========================================================================= */
.unity {
    background-color: var(--color-secondary);
    padding: 80px 0;
}

.unity__header h1 {
    text-align: center;
    color: var(--color-highlight);
    font-size: 6.2em;
    text-transform: uppercase;
    margin-bottom: -5vh;
    margin-top: 6vh;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.unity__header h2 {
    text-align: center;
    color: var(--color-accent);
    font-size: 10em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5vh;
}

.unity__header-lemon {
    font-weight: 600;
    color: var(--color-accent);
    display:block;
}

.unity__grid {
    display: grid;
    grid-template-columns: 90vh repeat(4, 8vw);
    grid-template-rows: repeat(4, 16vh);
    grid-column-gap: 3vw;
    grid-row-gap: 5vh;
    width: 90vw;
    margin: auto;
    margin-bottom: 1vh;
}

.unity__grid-text {
    font-size: 1.50em;
    padding-right: 2em;
}

/* Mapping BEM grid items to original grid areas */
.unity__grid-item--text {
    grid-area: 1 / 1 / 6 / 2;
}

.unity__grid-item--image-1 {
    grid-area: 1 / 2 / 3 / 4;
    border-radius: 50px;
    overflow: hidden;
}

.unity__grid-item--image-2 {
    grid-area: 1 / 4 / 3 / 6;
    border-radius: 50px;
    overflow: hidden;
}

.unity__grid-item--image-3 {
    grid-area: 3 / 2 / 5 / 4;
    border-radius: 50px;
    overflow: hidden;
}

.unity__grid-item--image-4 {
    grid-area: 3 / 4 / 5 / 6;
    border-radius: 50px;
    overflow: hidden;
}

.unity__grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 1. Der Container */
.unity__img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; 
    overflow: hidden; /* Nichts darf überstehen */
    text-decoration: none;
}

/* 2. Das Bild (Bleibt jetzt voll sichtbar, wird nicht transparent!) */
.unity__img-link .unity__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* Nur der Zoom wird animiert */
}

/* 3. Der "Dimmer" (Schwarzes Overlay) */
.unity__img-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 70% Schwarz */
    opacity: 0; /* Standardmäßig unsichtbar */
    transition: opacity 0.4s ease;
    z-index: 1; /* Liegt ÜBER dem Bild */
}

/* 4. Das Logo */
.unity__overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60%;
    max-width: 200px;
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    z-index: 2;
    pointer-events: none;
}

/* --- HOVER EFFEKTE --- */

/* Dimmer einschalten */
.unity__img-link:hover::before {
    opacity: 1; /* Overlay wird sichtbar */
}

/* Bild zoomen (optional, sieht gut aus) */
.unity__img-link:hover .unity__bg-image {
    transform: scale(1.05);
}

/* Logo einblenden */
.unity__img-link:hover .unity__overlay-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- HOVER EFFEKTE --- */

/* Wenn man über den Link fährt -> Hintergrund abdunkeln & zoomen */
.unity__img-link:hover .unity__bg-image {
    opacity: 0.3;
    filter: blur(2px) grayscale(50%);
    transform: scale(1.05);
}

/* Wenn man über den Link fährt -> Logo einblenden */
.unity__img-link:hover .unity__overlay-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1); /* Kleiner Pop-Effekt */
}

/* ========================================================================= */
/* ----------------------- TEAM -------------------------------------------- */
/* ========================================================================= */
.team {
    position: relative;
    z-index: 0;
    font-family: var(--font-primary);
    height: 98vh;
    overflow: hidden;
}

.team video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.team__overlay {
    z-index: 1;
    color: white;
    /* Adding flex centering to match bootstrap util classes usage in index.php */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team__text-link {
    text-decoration: none;
    /* Keine Unterstreichung */
    cursor: pointer;
    /* Hand-Cursor */
    display: flex;
    /* Damit h1 und h2 untereinander bleiben */
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    /* Sanfter Effekt beim Drüberfahren */
}

/* Optional: Leichter Zoom beim Hovern für besseres Feedback */
.team__text-link:hover {
    transform: scale(1.02);
}


.team__title {
    color: var(--color-primary);
    font-size: 6em;
    text-transform: uppercase;
    font-weight: 900;
}

.team__subtitle {
    color: var(--color-accent);
    font-size: 9.5em;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.6em;
}

/* ========================================================================= */
/* -------------------------- TEAM PAGE (PARTIAL) -------------------------- */
/* ========================================================================= */

.team-grid-section {
    background-color: var(--color-accent);
    /* Neon Gelb Hintergrund */
    padding: 80px 0;
    min-height: 100vh;
}

.team-grid__title {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 6rem;
    text-align: center;
    color: var(--color-secondary);
    /* Dunkelgraue Schrift */
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 1;
}

/* Grid Layout: 5 Spalten */
.team-grid {
    display: grid;
    /* 5 Spalten */
    grid-template-columns: repeat(5, 1fr);

    /* Etwas weniger Gap, damit es kompakter wirkt */
    gap: 30px 15px;

    /* WICHTIG: 100% statt 90vw! Damit passt es sich dem Container an */
    width: 100%;

    /* Sicherheitshalber zentrieren, falls es doch mal kleiner ist */
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Linksbündig */
}

.team-member__image {
    width: 100%;
    /* Aspect Ratio ist okay, aber wir stellen sicher, dass es nirgendwo ausbricht */
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 10px;
    /* Etwas weniger Abstand zum Namen */
    background-color: #000;
    position: relative;
}

.team-member__name {
    font-size: 1rem;
    /* War 1.1rem */
    margin-bottom: 2px;
}

.team-member__role {
    font-size: 0.75rem;
    /* War 0.8rem */
    color: var(--color-secondary);
    opacity: 0.9;
}

.team-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* Schwarz-Weiß Look */
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover Effekt */
.team-member:hover .team-video {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Macht alle Bilder schwarz-weiß */
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover Effekt (Optional): Farbe kommt zurück */
.team-member:hover .team-member__image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.team-member__name {
    font-family: var(--font-secondary);
    font-weight: 700;
    /* Bold */
    font-size: 1.1rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.team-member__role {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 0.8rem;
    /* Kleiner als Name */
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 5px;
    line-height: 1.2;
}

/* ========================================================================= */
/* ----------------------- UNTIL HERE -------------------------------------- */
/* ========================================================================= */
.until-here {
    background-color: var(--color-highlight);
    color: #fff;
    padding-top: 10vh;
    padding-bottom: 15vh;
}

.until-here__container {
    width: 100%;
    margin: auto;
    text-align: center;
}

.until-here__text--regular {
    font-size: 3.3em;
    margin: auto;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 4vh;
    font-family: var(--font-condensed);
}

.until-here__text--big {
    font-weight: 900;
    font-size: 4.6em;
    text-transform: uppercase;
    line-height: 0.9;
    width: 100%;
    display: ruby-text;
    font-family: var(--font-primary);
}

.until-here__text--ultra-big {
    font-size: 8.3em;
    line-height: 0.5em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 800;
}

/* ========================================================================= */
/* ----------------------- FAQ --------------------------------------------- */
/* ========================================================================= */
.faq {
    background-color: var(--color-secondary);
    padding: 60px 20px 80px 20px;
    font-family: var(--font-secondary);
}

.faq__container {
    max-width: 75vw;
    margin: 0 auto;
    padding-top: 7vh;
}

.faq__heading {
    font-family: var(--font-primary);
    font-size: 7rem;
    font-weight: 900;
    color: #6AB024;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    text-transform: none;
}

.faq__list {
    border-top: 2px solid #6AB024;
}

.faq__item {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #6AB024;
}

.faq__question {
    display: block;
    cursor: pointer;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    list-style: none;
}

.faq__question::marker,
.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '▼';
    font-size: 1.5rem;
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease-out;
}

details[open]>.faq__question::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Container für die Antwort */
.faq__answer {
    overflow: hidden; /* Wichtig: Versteckt den Inhalt beim Zuklappen */
    height: 0; /* Standardmäßig zu */
    opacity: 0;
    transition: height 0.4s ease, opacity 0.4s ease; /* Weiche Animation */
}

/* Wenn offen (wird kurzzeitig vom JS gesetzt oder für Fallback) */
details[open] .faq__answer {
    height: auto;
    opacity: 1;
}

/* Der Text darin bekommt den Abstand */
.faq__answer p {
    margin: 0;
    line-height: 1.6;
    padding: 15px 20px 0 0; /* Oben, Rechts, Unten, Links */
    color: #ffffff;
    padding-bottom: 20px; /* Wichtig: Abstand nach unten HIER definieren */
}

/* ========================================================================= */
/* ----------------------- CONTACT INFO ------------------------------------ */
/* ========================================================================= */
.contact-info {
    background-color: var(--color-secondary);
    color: #fff;
}

.contact-info__inner {
    padding: 3rem 0 1rem 0;
    margin: 0 auto;
}

.contact-info__container {
    max-width: 90vw;
    margin: auto;
}

.contact-info__logo-row {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 50% 30% repeat(2, 19%);
    grid-template-rows: 15vh;
    align-items: end;
}

.contact-info__logo-col {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info__logo-col img {
    height: 7vh;
}

.contact-info__logo-col img.logo-footer {
    margin-right: auto;
}

.contact-info__logo-col span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9em;
}

.contact-info__detail {
    display: grid;
    grid-template-columns: 2rem auto;
    grid-gap: 0.5rem;
    justify-content: stretch;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info__detail img {
    filter: brightness(0) invert(1);
}

.contact-info__detail p {
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-weight: 100;
    font-size: 1.2em;
}

.contact-info__map-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 200px;
    width: 100%;
    height: 270px;
    margin-top: 1rem;
    border-radius: 25px;
}

.contact-info__map-placeholder:hover {
    background: #dee2e6;
}

.contact-info__map-content {
    text-align: center;
    padding: 20px;
}

.contact-info__map-content h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #414141;
}

.contact-info__map-content button {
    padding: 8px 16px;
    background: var(--color-accent);
    color: #414141;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.5em;
}

/* Sitemap */
.sitemap {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 4rem 0;
    font-family: var(--font-secondary);
}

.sitemap h5 {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: none;
}

.sitemap ul {
    list-style: none;
    padding: 0;
}

.sitemap li {
    margin-bottom: 0.5rem;
    /* font-family inherited */
}

.sitemap a {
    color: var(--color-white);
    text-decoration: none;
}

.sitemap a:hover {
    color: var(--color-accent);
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-top: 2em;
    padding-bottom: 2em;
}

.footer__nav {
    list-style: none;
}

.footer__nav .item {
    display: inline-block;
}

.footer__nav .item a {
    text-decoration: none;
    display: block;
    padding: 0.3rem 0.8rem 0.3rem 0;
    color: inherit;
}

.footer__socials {
    text-align: right;
}

.footer__socials a {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    /* Ensure link behaves correctly for images */
}

.footer__socials img {
    margin-right: 0.5rem;
    width: 25px;
    height: 25px;
}

/* Show only the light icons (first child) by default */
.footer__socials a img:first-child {
    display: inline-block;
}

.footer__socials a img:last-child {
    display: none;
}

/* ========================================================================= */
/* ----------------------- CONSENT BANNER ---------------------------------- */
/* ========================================================================= */
#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#consent-banner.hidden {
    display: none;
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

.consent-content h4 {
    color: white;
}

.consent-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-family: var(--font-primary);
    font-size: 2.2em;
    /* Original 1080p value */
}

.btn-accept {
    background: #28a745;
    color: white;
}

.btn-accept:hover {
    background: #218838;
}

.btn-decline {
    background: #414141;
    color: white;
}

/* ========================================================================= */
/* ----------------------- PODCAST PARTIAL --------------------------------- */
/* ========================================================================= */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    min-height: 100vh;
    /* Ensure grid has height */
}

.podcast-grid__item--1 {
    grid-area: 1 / 1 / 2 / 5;
}

.podcast-grid__item--2 {
    grid-area: 1 / 5 / 2 / 9;
}

.podcast-grid__item--3 {
    grid-area: 1 / 9 / 2 / 13;
}

.podcast-grid__item--4 {
    grid-area: 2 / 1 / 3 / 7;
}

.podcast-grid__item--5 {
    grid-area: 2 / 7 / 3 / 13;
}

.podcast-grid__item--6 {
    grid-area: 3 / 1 / 4 / 4;
}

.podcast-grid__item--7 {
    grid-area: 3 / 4 / 4 / 7;
}

.podcast-grid__item--8 {
    grid-area: 3 / 7 / 4 / 10;
}

.podcast-grid__item--9 {
    grid-area: 3 / 10 /4 / 13;
}

.podcast__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* oder contain, je nach Geschmack */
    background: #111;
}

.podcast-grid-section {
    margin-bottom: 2vh;
}

/* ========================================================================= */
/* ----------------------- PAGE TRANSITIONS -------------------------------- */
/* ========================================================================= */
.page-section {
    display: none;
    width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-section.active {
    display: block;
    opacity: 1;
    animation: pageSlideIn 0.4s ease-out;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================================= */
/* ----------------------- PARTIAL LAYOUTS --------------------------------- */
/* ========================================================================= */

/* Split Layout (e.g. Content Strategy) */
.split-layout {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 4rem;
    align-items: start;
}

.split-layout__title h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(3.5rem, 0vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 0;
    text-align: left;
}

.split-layout__content {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-secondary);
    text-align: left;
}

.split-layout__content h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: none;
    color:var(--color-secondary);
}

.split-layout__content h3 {
    font-family: var(--font-secondary);
    color:var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.animation__content{
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-size: 2em;
    FONT-FAMILY: "CoFo Kak";
}

.content-strategie__content h2{
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-size: 2em;
    FONT-FAMILY: "CoFo Kak";
    font-weight: 300;
}

.content-strategie__content h3{
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 1em;
    text-transform: uppercase;
    text-align: left;
    color:var(--color-secondary);
}

.motion-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: dense; 
        gap: 15px;
    }

    .motion-item {
        position: relative;
        background: #000;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    /* Das vertikale Element rechts */
    .motion-item.vertical-span {
        grid-column: 3; 
        grid-row: span 2; 
        aspect-ratio: 9 / 16; 
    }

    /* Das breite Element mitte */
    .motion-item.wide-span {
        grid-column: span 2; 
        aspect-ratio: 15.365 / 9; 
    }

    .motion-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* --- MOBILE OPTIMIERUNG --- */
    @media screen and (max-width: 768px) {
        .motion-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .motion-item, 
        .motion-item.vertical-span, 
        .motion-item.wide-span {
            width: 100%;
            grid-column: auto;
            grid-row: auto;
            aspect-ratio: 16/9; 
        }
    }

.recruiting-grid {
        display: grid;
        /* Wir nutzen 6 Spalten für maximale Flexibilität (Drittel & Hälften möglich) */
        grid-template-columns: repeat(6, 1fr);
        grid-auto-flow: dense;
        gap: 15px;
    }

    .recruiting-item {
        position: relative;
        background: #000;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 16 / 9; /* Standard Format */
        cursor:pointer;
    }

    /* --- SPAN KLASSEN (basierend auf 6 Spalten) --- */
    
    /* span-2 = 1/3 Breite (2 von 6) */
    .recruiting-item.span-2 { grid-column: span 2; }
    
    /* span-3 = 50% Breite (3 von 6) */
    .recruiting-item.span-3 { grid-column: span 3; }

    /* span-4 = 2/3 Breite (4 von 6) */
    .recruiting-item.span-4 { grid-column: span 4; }

    /* Vertikales Element rechts (DLRG) */
    .recruiting-item.vertical-span {
        grid-row: span 2; /* Höhe von 2 Reihen */
        aspect-ratio: 9 / 15.536; /* Hochformat erzwingen */
    }

    .recruiting-item video {
        width: 101%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* --- MOBILE --- */
    @media screen and (max-width: 768px) {
        .recruiting-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .recruiting-item,
        .recruiting-item.vertical-span {
            width: 100%;
            grid-column: auto;
            grid-row: auto;
            aspect-ratio: 16/9; /* Auf Handy alles einheitlich */
        }
    }

    .fw-title {
        font-family: var(--font-primary);
        font-size: clamp(2rem, 5vw, 3.5rem); 
        line-height: 1.1;
        text-transform: uppercase;
        color: white;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }

    .fw-subtitle {
        font-family: var(--font-secondary);
        font-size: 1.8rem;
        color: var(--color-accent); 
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .fw-block p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        max-width: 800px; /* Lesbare Zeilenlänge auf Desktop */
    }

    /* --- MOBILE OPTIMIERUNG (NEU) --- */
    @media screen and (max-width: 768px) {
        
        /* 1. Split Layout untereinander stapeln */
        .split-layout {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .split-layout__title h1 {
            font-size: 4rem; /* Kleiner als Desktop-Riesen-Schrift */
            margin-bottom: 0;
        }

        /* 2. Full Width Text anpassen */
        .fw-title {
            font-size: 2.2rem; /* Lesbare Größe für Handy */
            max-width: 100%; /* Volle Breite nutzen */
            hyphens: auto; /* Silbentrennung bei langen Wörtern */
        }

        .fw-subtitle {
            font-size: 1.4rem;
            margin-top: 2rem; /* Mehr Abstand nach oben */
        }

        .fw-block p {
            font-size: 1rem; /* Standard Lesegröße */
            max-width: 100%;
            text-align: left; /* Flattersatz liest sich mobil oft besser */
        }

        /* Abstand zwischen den Blöcken verringern */
        .fw-block {
            margin-bottom: 2rem !important; /* Überschreibt mb-5 */
        }
    }

/* Eine Zeile, die Bild und Text enthält */
.feature-row {
    display: flex;
    align-items: center; /* Vertikal zentriert */
    justify-content: space-between;
    gap: 4rem; /* Abstand zwischen Bild und Text */
    margin-bottom: 5rem; /* Abstand zur nächsten Zeile */
}

/* Die beiden Spalten teilen sich den Platz 50/50 */
.feature-text, 
.feature-image {
    flex: 1;
    width: 100%; /* Wichtig für Responsivität */
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* Optional: leicht abgerundet */
    object-fit: cover;
    display: block;
}

/* --- DER TRICK: Umdrehen --- */
/* Diese Klasse dreht die Reihenfolge um (Bild zuerst, dann Text) */
.feature-row--reverse {
    flex-direction: row-reverse;
}

/* --- MOBILE ANSICHT --- */
/* Auf Handys alles untereinander und Bild immer oben oder unten */
@media (max-width: 768px) {
    .feature-row, 
    .feature-row--reverse {
        flex-direction: column; /* Immer untereinander */
        gap: 2rem;
    }
    
    /* Optional: Auf Handy Bild immer zuerst anzeigen? */
    /* .feature-row { flex-direction: column-reverse; } */
}


/* IMPRESSUM - CLEAN LOOK */
.impressum-section {
    background-color: #ffffff; /* Weiß */
    color: var(--color-secondary); /* Dunkelgrau */
    min-height: 100vh;
}

.impressum-section h1 {
    color: var(--color-secondary);
    font-size: 2em; /* Maximalgröße wie gewünscht */
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.impressum-section h3 {
    color: var(--color-secondary);
    font-size: 1.2em; /* Kleiner als H1 */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.impressum-content {
    font-size: 1em; /* Fließtext Größe */
    line-height: 1.6;
}

.impressum-link {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.impressum-link:hover {
    color: var(--color-primary); /* Hover wird Grün (TVN Grün) */
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Dunkler Hintergrund */
    z-index: 10000; /* Ganz weit oben */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    background-color: white;
    color: var(--color-secondary);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.cookie-modal-content h4 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-modal-buttons button {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-primary);
}

/* --- ERKLÄRFILM BENTO GRID --- */

.erklaerfilm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense; 
    gap: 15px;
}

.erklaerfilm-item {
    position: relative;
    background: #000;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9; /* Standard */
}

/* Das vertikale Element rechts */
.erklaerfilm-item.vertical-span {
    grid-column: 3; 
    grid-row: span 2; 
    aspect-ratio: 9 / 16; 
}

/* Das breite Element mitte */
.erklaerfilm-item.wide-span {
    grid-column: span 2; 
    aspect-ratio: 15.35 / 9; /* Ultra-Wide */
}

.erklaerfilm-item video {
    width: 101%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- MOBILE OPTIMIERUNG --- */
@media screen and (max-width: 768px) {
    .erklaerfilm-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .erklaerfilm-item, 
    .erklaerfilm-item.vertical-span, 
    .erklaerfilm-item.wide-span {
        width: 100%;
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 16/9; 
    }
}
/* 12-Spalten Grid */
.science-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px;
}

.science-item {
    position: relative;
    background: #000;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

/* Grid Spans */
.science-item.span-3 {
    grid-column: span 3;
}

.science-item.span-4 {
    grid-column: span 4;
}

.science-item.span-6 {
    grid-column: span 6;
}

.science-item.span-9 {
    grid-column: span 9;
}

/* Video Fitting */
.science-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Generelles Grid Setup */
.ki-row-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.ki-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 3.1605fr;
    gap: 15px;
    align-items: start;
}

/* Container für die Videos */
.ki-item {
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
}

/* Aspect Ratio: 16 / 9 (Landscape) */
.ki-item.landscape,
.ki-item.landscape-in-row {
    aspect-ratio: 16 / 9;
}

/* Aspect Ratio: 9 / 16 (Portrait/Vertikal) */
.ki-item.portrait {
    aspect-ratio: 9 / 16;
}

/* Video füllt Box aus */
.ki-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px;
    /* Kleiner Gap wie Cases */
}

.health-item {
    position: relative;
    background: #000;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

/* Grid Spans */
.health-item.span-3 {
    grid-column: span 3;
}

.health-item.span-4 {
    grid-column: span 4;
}

.health-item.span-6 {
    grid-column: span 6;
}

.health-item.span-9 {
    grid-column: span 9;
}

/* Video Fitting */
.health-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder Box */
.placeholder-box {
    width: 100%;
    height: 20vh;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 2rem;
    text-transform: uppercase;
}

/* Split Layout Vertical Hero (Social Media) */
.hero-split-vertical {
    display: grid;
    grid-template-columns: 25% 75%;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-split-vertical__video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-split-vertical__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-vertical__content {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    padding: clamp(2rem, 5vw, 6rem);
    padding-top: 15vh;
    /* Start content higher up */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top */
}

.hero-split-vertical__content h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(4rem, 4vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.hero-split-vertical__content p {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    /* More space on top */
    margin-bottom: 4rem;
    width: 70vw;
    /* Restrict width */
    margin-left: auto;
    margin-right: auto;
    height: 150vh;
}

.industrial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Spalten nebeneinander */
    gap: 20px;
    width: 100%;
}

.industrial-grid__item {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Erzwingt 16:9 Format */
    overflow: hidden;
    background: #000;
}

.industrial-grid__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Wir nutzen deine existierende Hover-Logik via Klasse 'gridVideo' */
}

/* Reihe 1: Drei Spalten */
.industrial-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    /* Abstand zur nächsten Reihe */
}

/* Reihe 2: Zwei Spalten */
.industrial-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Items */
.industrial-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    position: relative;
    /* Wichtig für das Text-Overlay */
}

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

/* Process Section (Ablauf) */
.process-section {
    background-color: var(--color-light-gray);
    padding: 5rem 0;
    color: var(--color-secondary);
}

.process-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 4rem;
    color: var(--color-secondary);
}

.container--90vw {
    width: 90vw;
    max-width: 90vw !important;
    margin: 0 auto;
    padding-left: 0;
    /* Bootstrap reset if needed */
    padding-right: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-item h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.process-item p {
    font-family: var(--font-condensed);
    font-size: 1rem;
    margin: 0;
}

/* ========================================================================= */
/* -------------------------- MEDIA QUERIES -------------------------------- */
/* ========================================================================= */
@media screen and (max-width: 1200px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 110px;
        line-height: 100px;
        color:var(--color-secondary);

    }
}

@media (max-width: 980px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 90px;
        line-height: 80px;
        color:var(--color-secondary);

    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-layout__title h1 {
        font-size: 15vw;
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 786px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 70px;
        line-height: 65px;
    }

    .science-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .science-item {
        width: 100%;
        grid-column: auto !important;
    }

    .health-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .health-item {
        width: 100%;
        grid-column: auto !important;
        /* Spans überschreiben */
    }

    .ki-row-1,
    .ki-row-2 {
        grid-template-columns: 1fr;
        /* Alles 1-spaltig */
        gap: 20px;
    }

    .industrial-grid {
        grid-template-columns: 1fr;
        /* 1 Spalte auf Handy */
        gap: 30px;
    }

    .industrial-row-3,
    .industrial-row-2 {
        grid-template-columns: 1fr;
        /* Alles 1-spaltig */
        gap: 30px;
    }

    .btn,
    .button,
    .Button,
    .btn-primary,
    .btn-lime-green {
        display: inline-block;
        padding: 0.75rem 4rem;
        background-color: var(--color-accent);
        border: 1px solid #d3d71d;
        color: var(--color-secondary);
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 500;
        font-size: 1em;
        border-radius: 25px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .btn-contact {
        background-color: var(--color-accent);
        color: var(--color-secondary);
        border: none;
        border-radius: 50px;
        padding: 0.5rem 1.5rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        height: 40px;
        transition: background-color 0.3s ease;
        font-size: 1em;
        display: none !important;
    }

    .hero__claim {
        background-color: var(--color-primary);
        padding: 10vh 0 11vh 0;
        height: 30vh;
    }

    .hero__claim-subtitle-white {
        font-size: 1rem;
        line-height: 1.2;
        color: #fff;
        letter-spacing: 0.1rem;
        text-align: center;
        font-weight: 600;
        margin-top: -5vh;
        margin-bottom: 3.5rem;
    }

    .hero__claim-main-text {
        font-size: 2rem;
        line-height: 1;
        letter-spacing: 0.1rem;
        text-align: center;
        color: var(--color-white);
    }

    .hero__claim-sub-text {
        font-size: 2rem;
        line-height: 1;
        letter-spacing: 0.1rem;
        color: var(--color-secondary);
        text-align: center;
    }

    .with-you {
        background-color: var(--color-white);
        padding: 1vh 0 1vh 0;
        height: 20vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .with-you__video-container {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .with-you__video {
        width: 100%;
        object-fit: contain;
    }

    /* --- MOBILE LABEL FIX (Data-Text) --- */

    /* Das Overlay, das sonst nur bei Hover kommt */
    .video-text-overlay {
        opacity: 1 !important;
        /* Immer sichtbar machen */

        /* Text nach unten schieben, damit das Video sichtbar bleibt */
        align-items: flex-end !important;
        padding-bottom: 20px;
        /* Etwas Abstand vom unteren Rand */
        font-family: var(--font-primary);
        /* Kein Voll-Schwarz, sondern ein Verlauf von unten nach oben */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%) !important;

        /* Schrift anpassen */
        font-size: 1.5rem !important;
        /* Groß genug für Touch */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        /* Schatten für Kontrast */
    }

    /* Falls das Overlay Klicks blockiert (wichtig für Video-Play!) */
    .video-text-overlay {
        pointer-events: none;
        font-size: 0.6em !important;
        margin: auto;
        text-align: center;
    }



    /* --- LOGO SLIDER MOBILE --- */

    /* 1. Desktop Bild verstecken */
    .cases__image-banner .desktop-banner {
        display: none !important;
    }

    /* 2. Mobile Slider sichtbar machen */
    .mobile-logo-slider {
        display: block !important;
        width: 100%;
        overflow: hidden;
        /* Versteckt alles was rechts rausragt */
        padding-top: 2vh;
        padding-bottom: 2vh;
        background: var(--color-secondary);
        /* Hintergrundfarbe zur Sicherheit */
    }

    /* 3. Die Bahn für die Bilder */
    .slider-track {
        display: flex;
        width: fit-content;
        /* Passt sich der Breite der beiden Bilder an */
        gap: 0;
        /* Keine Lücke zwischen den Bildern */

        /* Hier passiert die Magie: 40s Laufzeit, linear, unendlich */
        animation: scroll 40s linear infinite;
    }

    /* 4. Die Bilder im Slider */
    .slider-track img {
        height: 60px;
        /* Höhe fixieren, damit alle gleich groß sind */
        width: auto;
        /* Breite passt sich an */
        max-width: none;
        /* Wichtig! Verhindert, dass Bootstrap das Bild auf 100% Screenbreite quetscht */
        flex-shrink: 0;
        /* Verhindert Stauchen */
        padding-right: 50px;
        /* Ein bisschen Abstand, bevor das Logo wiederholt wird */
    }

    .cases__text-title {
        font-size: 1.7em;
        color: var(--color-primary);
        font-family: var(--font-primary);
        text-align: left;
        margin: 0 0 -2vh 0;
    }

    .mt-5 {
        margin-top: 0rem !important;
    }

    .tw35 {
        width: 100%;
    }

    /* --- TEAM GRID MOBILE FIX --- */

    .team-grid__title {
        font-size: 3.5rem;
        margin-bottom: 30px;
    }

    .team-grid {
        /* Auf Handy 2 Spalten (sieht aus wie Instagram Grid) oder 1 Spalte */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-member__name {
        font-size: 0.9rem;
    }

    .team-member__role {
        font-size: 0.7rem;
    }

    .cases__text-subtitle {
        color: var(--color-secondary);
        font-size: 2em;
        text-transform: uppercase;
        z-index: 2;
        text-align: left;
        line-height: 0.6;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cases__text-container {
        background: var(--color-accent);
        padding: 4rem;
        display: flex;
        margin-left: -4rem;
        flex-direction: column;
        justify-content: center;
    }

    .ihre-vorteile__title {
        font-size: 1.5em;
        /* Passt sich an die anderen Titel an */
        line-height: 1.1;
    }

    .ihre-vorteile__subtitle {
        font-size: 1.8em;
        margin-bottom: 1.5rem;
    }

    .ihre-vorteile__item {
        width: 100% !important;
        /* WICHTIG: Überschreibt die starren 41em */
        flex-direction: column;
        /* Icon oben, Text unten -> mehr Platz für Text */
        align-items: center;
        /* Alles schön mittig */
        text-align: center;
        padding: 1.5rem;
        /* Padding etwas reduzieren */
        gap: 0.5rem;
        /* Abstand zwischen Elementen */
        height: auto;
    }

    .ihre-vorteile__icon {
        margin-right: 0;
        /* Reset: Abstand rechts weg */
        margin-bottom: 1rem;
        /* Neu: Abstand nach unten zum Text */
        width: 60px;
        /* Icon etwas dezenter skalieren */
    }

    .ihre-vorteile__item-title {
        font-size: 1.3em;
        /* Titel kompakter */
        text-align: center;
        margin-bottom: 0.5rem !important;
        width: 100%;
    }

    .ihre-vorteile__item-text {
        font-size: 1rem;
        /* Fließtext auf Standardgröße (16px) */
        line-height: 1.4;
        /* Gute Lesbarkeit bei viel Text */
        font-family: var(--font-secondary);
        /* Sicherstellen, dass es gut lesbar ist */
    }

    /* Reset der Inline-Styles aus dem HTML (Padding & Breite erzwingen) */
    .hqv_col {
        padding-right: 0 !important;
        margin-bottom: 3rem;
        /* Abstand zum Grid */
    }

    .hqv_col_short {
        width: 100% !important;
        /* Inline-Width von 30vw überschreiben */
    }

    /* Section kompakter machen */
    .high-quality-video {
        padding: 50px 0;
        min-height: auto !important;
        /* Die riesige Höhe entfernen */
    }

    /* Titel lesbar machen */
    .high-quality-video__title {
        font-size: 2.2em !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .high-quality-video__subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .high-quality-video__info-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Grid aufräumen: Alles untereinander */
    .high-quality-video__grid {
        grid-template-columns: 1fr; /* 1 Spalte */
        gap: 30px;
    }

    .high-quality-video__grid-item {
        width: 100%;
        /* Volle Breite nutzen */
        margin: 0;
    }

    .high-quality-video__grid-item a {
        display: block;
        position: relative;
        z-index: 1;
    }

    /* Video-Container flexibel machen (war fest 409px) */
    .high-quality-video__video-cut {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        /* Seitenverhältnis beibehalten */
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 2; /* Video liegt über dem Container-Hintergrund */
        pointer-events: auto; /* WICHTIG: Erlaubt Maus-Events */
    }

    .high-quality-video__video-title {
        font-size: 1.4em;
        margin-top: 0.5rem;
        position: relative; 
        z-index: 3;
        pointer-events: none; /* Klicks gehen durch den Text durch */
    }

    .ready-for-content__contact-item {
        font-size: 1em;
        color: var(--color-white);
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 300;
    }

    .ready-for-content__small-text {
        display: block;
        color: var(--color-white);
        font-weight: 800;
        font-size: 1em;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .ready-for-content__big-text {
        display: block;
        color: var(--color-white);
        font-weight: 900;
        font-size: 2em;
        text-transform: uppercase;
        line-height: 0.9;
        width: 100%;
    }

    /* --- HOW TO SOCIAL FIX --- */

    .how-to-social__title {
        text-align: center;
        color: white;
        font-size: 2em;
        margin-bottom: 0px;
        line-height: 1;
    }

    .how-to-social__subtitle {
        text-align: center;
        color: white;
        font-size: 3em;
        margin-bottom: 0;
        line-height: 1;
    }

    .hts_social_media_two_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 3vw;
        width: 35vw;
        margin: auto;
    }

    /* - SOCIAL WE DO FIX - */
    .social_we_do {
        background-color: var(--color-secondary);
        height: 19vh;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .swd_header {
        height: 0vh;
    }

    .swd_header h1 {
        font-size: 1.9rem;
        font-family: var(--font-primary);
        text-align: center;
        color: white;
        margin-top: 5vh;
        text-transform: none;
        padding: 20px;
        line-height: 2.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        font-weight: 500;
    }

    .swd_brands {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 10vw;
        height: 0vh;
        margin: auto;
        background-color: var(--color-secondary);
    }

    .text-center {
        text-align: center !important;
        padding: 4vh;
    }

    /* --- STEPS TO GOAL FIX --- */

    .steps-to-goal {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .steps-to-goal__title {
        font-size: 2em !important;
        /* Überschrift kleiner */
        margin-bottom: 0px;
        line-height: 1;
    }

    .steps-to-goal__container {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        gap: 30px;
        padding: 0;
        margin-top: 5vh;
    }

    /* HIER DER TRICK FÜR DIE REIHENFOLGE:
     Da im HTML die Reihenfolge 1 -> 3 -> 2 -> 4 ist, 
     sortieren wir sie optisch für Mobile neu.
  */
    .steps-to-goal__step:nth-child(1) {
        order: 1;
    }

    /* Schritt 1 */
    .steps-to-goal__step:nth-child(3) {
        order: 2;
    }

    /* Schritt 2 (ist das 3. Element im HTML) */
    .steps-to-goal__step:nth-child(2) {
        order: 3;
    }

    /* Schritt 3 (ist das 2. Element im HTML) */
    .steps-to-goal__step:nth-child(4) {
        order: 4;
    }

    /* Schritt 4 */

    .steps-to-goal__step {
        padding-left: 70px;
        /* Platz für die Nummer links */
        margin-bottom: 0;
        /* Margin macht jetzt der Container-Gap */
        width: 100%;
    }

    .steps-to-goal__step-number {
        font-size: 3rem;
        /* Nummer kleiner (war 5rem) */
        left: 0;
        /* Ganz links kleben */
        top: 0;
        /* Ganz oben bündig */
        width: 50px;
        /* Breite begrenzen */
        text-align: center;
        line-height: 1;
    }

    .steps-to-goal__step-content {
        padding-top: 0;
        /* Reset Desktop Padding */
        padding-left: 0;
        /* Reset Desktop Padding */
    }

    .steps-to-goal__step-content h3 {
        font-size: 1.5em;
        /* Überschrift "VERSTEHEN" etc. lesbar */
        margin-top: 0;
        /* Negativen Margin vom Desktop entfernen */
        margin-bottom: 0.5rem;
        padding-bottom: 0;
    }

    .steps-to-goal__step-content p {
        font-size: 1rem;
        /* Fließtext Standardgröße */
    }

    .steps-container,
    .unsere-staerken__grid {
        grid-template-columns: 1fr;
    }

    .team__title {
        color: var(--color-primary);
        font-size: 4em;
        text-transform: uppercase;
        font-weight: 900;
    }

    .team__subtitle {
        color: var(--color-accent);
        font-size: 4.5em;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 0.6em;
    }

    .unity__header h1 {
        text-align: center;
        color: var(--color-highlight);
        font-size: 3rem;
        text-transform: uppercase;
        margin-bottom: -2vh;
        margin-top: 6vh;
        margin-left: auto;
        margin-right: auto;
        font-weight: 600;
        line-height: 1;
    }

    .unity__header h2 {
        text-align: center;
        color: var(--color-accent);
        font-size: 4em;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 5vh;
        line-height: 1;
    }

    .unity__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .unity__grid-item--text,
    .unity__grid-item--image-1,
    .unity__grid-item--image-2,
    .unity__grid-item--image-3,
    .unity__grid-item--image-4 {
        grid-area: auto;
    }

    .unity__grid-text {
        font-size: 1.50em;
        padding-right: 0em;
    }

    .unsere-staerken__title {
        color: var(--color-primary);
        font-size: 2.5em;
        text-align: center;
        margin-bottom: -1vh;
    }

    .unsere-staerken__subtitle {
        font-size: 2.5em;
        /* Erzwingt die Größe */
        line-height: 1.1;
        padding-bottom: 20px;
    }

    .until-here {
        background-color: var(--color-highlight);
        color: #fff;
        padding-top: 5vh;
        padding-bottom: 0vh;
    }

    .until-here__text--big {
        font-weight: 900;
        font-size: 1.6em;
        text-transform: uppercase;
        line-height: 1;
        width: 100%;
        display: ruby-text;
        font-family: var(--font-primary);
    }

    .until-here__text--ultra-big {
        font-size: 3em;
        line-height: 0;
        font-family: var(--font-primary);
        text-transform: uppercase;
        font-weight: 800;
        margin-top: -10px;
    }

    .until-here__text--regular {
        font-size: 1.3em;
        margin: auto;
        width: 100%;
        display: inline-block;
        text-align: center;
        margin-bottom: 0vh;
        font-family: var(--font-condensed);
    }

    .faq {
        background-color: var(--color-secondary);
        padding: 20px 20px 80px 20px;
        font-family: var(--font-secondary);
    }

    .footer__socials {
        text-align: center;
    }

    .contact-info {
        padding-bottom: 40px;
    }

    .contact-info__inner {
        padding-top: 2rem;
        /* Weniger Padding oben */
    }

    /* Das Grid auflösen und Logos untereinander packen */
    .contact-info__logo-row {
        display: flex !important;
        /* Grid überschreiben */
        flex-direction: column;
        /* Untereinander stapeln */
        height: auto !important;
        /* Fixe Höhe (15vh) entfernen */
        gap: 30px;
        /* Abstand zwischen den Logos */
        margin-bottom: 40px;
        /* Abstand zum Adressblock */
        align-items: flex-start;
        /* Linksbündig ausgerichtet */
    }

    .contact-info__logo-col {
        width: 100%;
        /* Volle Breite */
        align-items: flex-start;
        /* Inhalt links */
        margin-bottom: 0;
    }

    /* Bilder/Logos zähmen */
    .contact-info__logo-col img {
        height: auto !important;
        /* Fixe Höhe entfernen */
        max-width: 80%;
        /* Nicht breiter als Screen */
        object-fit: contain;
        margin-bottom: 5px;
    }

    /* Das Hauptlogo darf etwas größer sein */
    .contact-info__logo-col:first-child img {
        max-height: 70px;
        width: auto;
    }

    /* Adresszeilen lesbarer machen */
    .contact-info__detail {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: flex-start;
        /* Icon oben bündig mit Text */
    }

    .contact-info__detail img.icon {
        margin-top: 5px;
        /* Icon optisch mittig zur ersten Textzeile */
        min-width: 25px;
        /* Damit Icon nicht gequetscht wird */
    }

    .contact-info__detail p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Karte */
    .contact-info__map-col {
        margin-top: 2rem;
        /* Abstand nach oben zur Adresse */
        padding-left: 15px;
        /* Standard Bootstrap Padding nutzen */
        padding-right: 15px;
    }

    .contact-info__map-placeholder {
        width: 100% !important;
        /* Volle Breite erzwingen */
        height: 300px;
        /* Karte schön hoch auf Mobile */
        border-radius: 15px;
        min-height: 300px;
    }

    .contact-form-wrapper h1 {
        font-size: 3em !important;
    }

    .sitemap h5 {
        color: var(--color-white);
        font-family: var(--font-secondary);
        font-weight: 700;
        text-transform: none;
        font-size: 1.5em;
    }
}

/* ========================================================================= */
/* -------------------------- 4K / HIGH RES OPTIMIZATION ------------------- */
/* ========================================================================= */
@media (min-width: 2500px) {

    html,
    body {
        font-size: 24px;
        background-color: var(--color-secondary);
        /* Scale up base font size significantly */
    }

    .container,
    .high-quality-video__container,
    .ihre-vorteile__content,
    .contact-info__container,
    .faq__container,
    .until-here__container {
        max-width: 90vw;
        /* Allow containers to grow wider on huge screens */
    }

    .high-quality-video__info-text {
        color: var(--color-white);
        line-height: 1;
        font-size: 1.5rem;
    }

    .high-quality-video__subtitle {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: var(--color-white);
        line-height: 1;
    }

    /* High Quality Video 4K Scaling */
    .high-quality-video__video-cut {
        width: 800px;
        height: 450px;
        margin-bottom: 0;
    }

    .high-quality-video__video-title {
        font-size: 2.5rem;
        margin-top: 0;
    }

    .ihre-vorteile__icon {
        width: 8vw;
        height: auto;
        margin-right: 1rem;
    }

    /* Unsere Stärken 4K Scaling */
    .unsere-staerken {
        padding-top: 40px;
        /* Reduce top padding */
    }

    .unsere-staerken__subtitle {
        margin-bottom: -5rem;
        /* Specific visual tweak for 4K */
    }

    .unsere-staerken__kachel {
        width: 400px;
        gap: 20px;
    }

    .unsere-staerken__kachel-image img {
        width: 400px;
        height: 400px;
    }

    .kachel-label {
        font-size: 1.5rem;
        margin-top: 15px;
    }

    .contact-info__map-placeholder {
        position: relative;
        display: flex;
        /* align-items: flex-start; */
        /* justify-content: center; */
        background: #e9ecef;
        cursor: pointer;
        transition: background 0.3s;
        /* min-height: 200px; */
        width: 75%;
        height: 20vh;
        margin-top: 1rem;
        border-radius: 25px;
    }

}

@media (min-width: 3800px) {

    html,
    body {
        font-size: 32px;
        /* Even larger for true 4K/5K */
    }
}

