/* =========================================
    FLOATING X (ENTFERNT)
========================================= */

.floating-x { 
    display: none;
}

/* ======================================================
    GLOBAL VARIABLES & BASE STYLES
====================================================== */

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F2F2F2;
    --accent: #FF00CC;
    --text-main: #111111;
    --text-soft: #555555;
    --border-soft: #EBEBEB;
    --nav-height: 96px;

    --content-max: 1350px;
    --content-padding: 40px;
}

@media (max-width: 900px) {
    :root {
        --content-padding: 20px;
    }
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Rajdhani", sans-serif;

    background-color: #ffffff;
    background-attachment: scroll; 
    color: var(--text-main);
}

body {
    padding-top: var(--nav-height);
}

html, body {
    overflow-x: hidden;
}

section {
    margin: 0;
    padding: 100px 0;
}

@media (max-width: 900px) {
    section {
        padding: 100px 0;
    }
}

@media (max-width: 600px) {
    section {
        padding: 80px 0;
    }
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

section[id] {
    scroll-margin-top: var(--nav-height);
}

img, video {
    max-width: 100%;
    height: auto;
}
/* ======================================
   GLOBAL BREAKPOINTS
====================================== */

/* Desktop groß */
@media (min-width: 1400px) {}

/* Laptop */
@media (max-width: 1200px) {}

/* Tablet */
@media (max-width: 900px) {}

/* Mobile */
@media (max-width: 600px) {}


/* ======================================================
    TOP-NAVIGATION (FIXED & IMMER SICHTBAR)
====================================================== */

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: var(--nav-height);
    width: 100%;
    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-soft);

    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Navbar ausgeblendet */
.top-navbar.nav-hidden {
    transform: translateY(-100%);
}

/* Logo */
.nav-logo img {
    width: 150px;
    height: auto;
    display: block;
}

/* DESKTOP NAV */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: 10px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent);
}


/* ======================================
   HAMBURGER BUTTON
====================================== */

.nav-toggle {
    display: none; /* Desktop: AUS */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ======================================================
   LANGUAGE SWITCH – DE / EN
====================================================== */

.lang-switch {
    position: relative;
    margin-left: 20px;
}

.lang-current {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text-main);
    cursor: pointer;
    padding: 10px 6px;
    transition: color 0.25s ease;
}

.lang-current:hover {
    color: var(--accent);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 70px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10000;
}

.lang-dropdown a {
    display: block;
    padding: 8px 16px;
    font-size: 18px;
    color: var(--text-main);
    text-decoration: none;
}

.lang-dropdown a:hover {
    color: var(--accent);
}

.lang-switch.open .lang-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* ======================================================
   MOBILE / TABLET NAVIGATION
====================================================== */

@media (max-width: 900px) {

    .top-navbar {
        padding: 0 16px;
    }

    /* Burger sichtbar */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Mobile Menü */
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;

        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;

        padding: 24px 0;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;

        border-bottom: 1px solid var(--border-soft);
        z-index: 10000;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 22px;
        padding: 10px 14px;
    }

    .lang-switch {
        margin-top: 10px;
    }
}


/* ======================================================
    HERO SECTION (NORMALER FLOW)
====================================================== */

.hero-section-simple {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;

    text-align: center;
    position: relative;
    min-height: calc(100svh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


@media (max-width: 600px) {
    .hero-section-simple {
        min-height: 85svh;
    }
}

/* Hero Bild Container */
.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    z-index: 1; 
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* statt center 10% */
    display: block;
}

.hero-text-block {
    position: relative;
    z-index: 3;
    padding-top: clamp(30px, 4vh, 100px);
    text-align: center;
}

.hero-static-line {
    font-size: clamp(20px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    color: #000;
}


/* Zeile 2 – rotierender Text */
.hero-dynamic-line {
    display: flex;
    justify-content: center;
}

/* Dynamische Zeile – kein Springen, aber responsiv */
.hero-dynamic-wrapper {
    max-width: 100%;
    padding: 0 16px;
    min-height: 1.2em;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Rotierender Text */
.hero-dynamic {
    font-size: clamp(32px, 7vw, 78px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.4px;
    color: #000;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
white-space: nowrap; 
    display: inline-block;
}




@media (max-width: 600px) {
    .hero-text-block {
        padding-top: 40px;
    }
}

@media (max-width: 380px) {
    .hero-dynamic {
        font-size: 20px; 
    }
}

/* ======================================================
    CONTENT UND CHATFENSTER LAYOUT (VEREINFACHT)
====================================================== */

.content-simple {
    position: relative;
    z-index: 3; 
    margin-top: 0; 
    padding: 40px 0; 
    background-color: var(--primary-bg); 
    display: flex;
    justify-content: center;
    transition: none;
}

.content-inner {
    width: 100%;
    max-width: 1350px;  
    padding: 0 40px; 
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Produkt Intro erhält jetzt wieder den normalen oberen Abstand zur Section */


/* ... (Der gesamte Rest des CSS-Codes ist unverändert) ... */
/* ======================================================
    PRODUCT INTRO SECTION
====================================================== */

.product-intro {
    text-align: center;
    /* Passt die Ränder an den normalen Section-Flow an */
    margin-top: 20px !important; /* Etwas Platz zur Hero Section */
    margin-bottom: 0 !important;
    padding: 20px 10px; 
}

/* RESTLICHE STYLES BLEIBEN GLEICH */
/* ... (Der gesamte Rest des CSS-Codes wird nicht verändert) */

/* Alte pi-row Grid-Struktur entfernt */
.pi-row {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Titel und Beschreibung nun zentriert */
.pi-title {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;   /* kleiner */
    margin-top: 0;         /* explizit */
 overflow: hidden;
}


.pi-title-logo {
    width: clamp(260px, 50vw, 560px);
    height: auto;
    max-width: 100%;
    display: block;
    flex: 0 0 auto;
}

@media (max-width: 600px) {
    .pi-title {
        margin-bottom: 20px;
    }
}

.pi-desc {
    margin: 0 auto 50px auto !important;
    text-align: center !important;  
    max-width: none;    
    font-size: 20px;
}

.pi-desc .fw-400 {
    font-weight: 700;   /* fett */
}

/* Subtext bleibt zentriert */
.pi-subtext {
    text-align: center;
    font-size: 20px;
}

/* Mobile Product Intro */
@media (max-width: 900px) {
    .pi-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pi-text {
        text-align: center;
        align-items: center;
    }

    .pi-text .pi-title,
    .pi-text .pi-desc {
        text-align: center;
        
    }
}

/* ======================================================
    ACCORDION – Product Intro Cards
====================================================== */

.pi-accordion {
    margin-top: 0px;
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(255, 0, 204, 0.15);
}

.pi-acc-card {
    background: #ffffff;
    border-bottom: 1px solid var(--border-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pi-acc-card:last-child {
    border-bottom: none;
}

.pi-acc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.10);
}

/* Header */
.pi-acc-header {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
}

.pi-acc-left {
    display: flex;
    align-items: center;
    gap: 14px;
text-align: left; /* Stellt sicher, dass die Texteinheit linksbündig bleibt */
    width: 100%;
}

.pi-acc-icon-left {
    width: 26px;
    height: 26px;
    background: var(--secondary-bg);
    border-radius: 6px;
    
    /* NEU: Verhindert das Skalieren/Zusammendrücken */
    flex-shrink: 0; 
    
    /* Stellt sicher, dass das Bild im Container bleibt */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pi-acc-header span {
    font-size: 22px;
    color: var(--text-main);
    font-weight: 500;
text-align: left; /* Wichtig für die Mobilansicht */
}

/* Chevron */
.pi-acc-chevron {
    width: 18px;
    height: 18px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
}

/* Content */
.pi-acc-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 26px;
    background: #fff;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.pi-acc-content p {
    padding: 16px 0 22px;
    font-size: 22px;
    text-align: left;
    color: var(--text-soft);
    line-height: 1.55;
}

/* OPEN STATE */
.pi-acc-card.active .pi-acc-content {
    max-height: 300px;
    opacity: 1;
}

.pi-acc-card.active .pi-acc-chevron {
    transform: rotate(45deg);
    border-color: var(--accent);
}

@media (max-width: 600px) {
    /* Akkordeon: Überschriften und Textinhalt auf 20px */
    .pi-acc-header span,
    .pi-acc-content p {
        font-size: 20px !important;
    }
}

/* ======================================================
   AE INTRO VIDEO – CARD STYLE FULL WIDTH
====================================================== */

.ae-video-section {
    width: 100%;
    margin: 120px 0;                 /* Luft wie bei Sections */
    display: flex;
    justify-content: center;
}

.ae-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1350px;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;

    /* ✨ gleicher Glow wie Cards */
    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* optional: Hover wie bei Cards */
.ae-video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.20);
}


/* Video */
.ae-video {
    width: 100%;
    display: block;
}

/* Thumbnail */
.ae-video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.35s ease;
}

/* Play Button */
.ae-video-play {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: none;
    border: none;
    font-size: 80px;
    color: white;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    text-shadow: 0 6px 20px rgba(255, 0, 204, 0.45);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ae-video-play:hover {
    transform: scale(1.1);
}

/* Playing State */
.ae-video-wrapper.playing .ae-video-thumbnail,
.ae-video-wrapper.playing .ae-video-play {
    opacity: 0;
    pointer-events: none;
}


/* ======================================================
    EXPERT SECTION MODERN
====================================================== */

.expert-section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.4px;
    color: var(--text-main);
    margin-top: 120px;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
}

/* LEFT BOX */

.modern-left {
    padding: 45px;
    border: 1px solid rgba(255, 125, 230, 0.6);
    border-radius: 20px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-align: left;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 0, 204, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modern-left:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(255, 0, 204, 0.25);
}

.modern-left .ts-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modern-left .ts-item p {
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 20px 0;
    color: var(--text-soft);
}

.ts-divider {
    height: 1px;
    width: 70%;
    background: var(--border-soft);
    margin: 25px auto;
}

.ts-item {
    font-size: inherit;
}

/* RIGHT SIDE – Karten */

.modern-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modern-card {
    padding: 35px 30px;
    border-radius: 20px;
    text-align: left;
    background: #ff7de6;
    border: none;
    color: #ffffff;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.modern-card h3 {
    margin-top: 10px;
    font-size: 22px;
    text-align: center;
    margin-bottom: 14px;
    font-weight: 700;
    color: #ffffff;
}

.modern-card p {
    color: #ffffff;
    line-height: 1.55;
    font-size: 18px;
    text-align: center;
}

/* Icon oben links */
.card-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 6px;
    opacity: 0.85;
}

/* Mobile Expert Grid */

@media (max-width: 900px) {
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modern-left {
        padding: 30px;
    }

    .modern-card {
        padding: 28px;
    }
}

/* ======================================================
    AE ROLE SECTION
====================================================== */

.ae-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

/* Text linksbündig & breiter */
.ae-desc-wide {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    font-size: 22px;
    line-height: 1.55;
    color: var(--text-soft);
    margin-bottom: 30px;
}


.ae-subdesc {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-main);
}

/* SWIPE CONTAINER */
.ae-swipe-container {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0 60px 0;
    margin-top: 50px;
}

.ae-scrollbar {
    height: 4px;
    background: transparent;
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
    position: relative;
}

.ae-scrollbar-thumb {
    height: 100%;
    width: 80px;
    background: var(--accent);
    border-radius: 4px;
    transition: transform 0.1s linear;
}

/* Scrollbar Styling */
.ae-swipe-container::-webkit-scrollbar-button {
    display: none;
}

.ae-swipe-container::-webkit-scrollbar {
    height: 8px;
    background: transparent !important;
}

.ae-swipe-container::-webkit-scrollbar-thumb {
    background: rgba(120,120,120,0.35);
    border-radius: 4px;
}

.ae-swipe-track {
    display: flex;
    gap: 20px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 0px;
    width: max-content;
}

/* SWIPE CARDS */

.ae-swipe-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 240px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(255, 125, 230, 0.35);
    box-shadow: 0 4px 12px rgba(255, 125, 230, 0.15);
    padding: 22px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ae-swipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 125, 230, 0.28);
}

.ae-swipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 0px;
    margin-bottom: 10px;
}

/* NAME */
.ae-swipe-card h3 {
    font-size: 22px;
    margin-bottom: 2px;
    color: var(--text-main);
}

/* ROLLE */
.ae-swipe-card .role {
    color: var(--text-soft);
    font-size: 20px;
    margin-top: 0;
}

.ae-role-section {
    padding: 0 24px;
}

@media (max-width: 600px) {

    .ae-swipe-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ae-swipe-track {
        padding-left: 0; /* wird jetzt vom Container übernommen */
    }

}

/*======================================================
    ABOUT SECTION
====================================================== */

.about-section {
    /* Außenabstand kommt von <section> */
}

/* =========================
   Row 1: Logo + Text
========================= */

.about-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-left {
    display: flex;
    justify-content: flex-start;
}

.about-logo {
    width: 100%;
    max-width: 400px;
}

.about-right {
    text-align: left;
}

.about-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-soft);
    text-align: left;
}

/* =========================
   Vision Card
========================= */

.vision-card {
    background: #ff7de6;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 80px auto;
    color: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(255, 0, 204, 0.25);
}

.vision-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.vision-card p {
    font-size: 30px;
    line-height: 1.6;
    color: #ffffff;
}

/* Mobile Textanpassungen (Akkordeon, Intro & Vision Card) */
@media (max-width: 600px) {
    .pi-acc-content p, 
    .pi-desc, 
    .pi-subtext, 
    .vision-card p {
        font-size: 20px !important;
    }
}

/* =========================
   LEITPRINZIPIEN
========================= */

.about-block {
    margin-top: 80px;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.about-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: center;
}

.leitprinzipien-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.leit-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.principles-list li {
    margin-bottom: 32px;
    max-width: 700px;
}

.principles-list strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    text-align: left;
}

.principles-list p {
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    color: var(--text-soft);
    max-width: 650px;
    text-align: left;
}

.leit-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leit-graphic img {
    width: 120%;
    max-width: 850px;
    display: block;
    margin: 0 auto;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .about-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* About Row */
    .about-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-right {
        order: 1;
        text-align: center;
    }

    .about-left {
        order: 2;
        justify-content: center;
    }

    .about-logo {
        max-width: 260px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    /* Leitprinzipien */
    .leit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leit-graphic img {
        width: 100%;
        max-width: 100%;
    }
}


/* ======================================
    DATENSCHUTZ & SICHERHEIT BEREICH
====================================== */

.security-section {
    max-width: none;
    margin: 120px auto;
    padding: 0 20px;
}

.security-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

/* 2-Spalten Grid wie Screenshot */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 50px;
}

/* Einzelner Block */
.security-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    position: relative;
    padding-bottom: 6px;
text-align: left;
}

/* Pinker Divider */
.security-item h3::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: var(--accent);
    opacity: 0.7;
    margin-top: 6px;
    border-radius: 2px;
}

.security-item p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0;
text-align: left;
}

/* Responsive – 1 Spalte */
@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ======================================================
    LOCATIONS SECTION
====================================================== */

.locations-section {
    text-align: center;
}

.locations-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* GRID: Links Karte groß, rechts kleine Cards */
.locations-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.5fr;
    gap: 60px;
    align-items: center;
    max-width: none; 
    margin: 0 auto;
    padding: 0 20px;
}

.locations-map img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loc-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 20px 24px;
    text-align: left;
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.loc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.20);
}

.loc-card h3 {
    margin: 0 0 6px 0;
    font-size: 24px;
    font-weight: 700;
}

.loc-card p {
    font-size: 18px;
    line-height: 1.45;
    color: var(--text-soft);
    margin: 0;
}

/* Mobile Locations */

@media (max-width: 900px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .locations-map img {
        max-width: 350px;
    }

    .locations-list {
        align-items: center;
    }

    .loc-card {
        width: 100%;
        max-width: 340px;
    }
}

/* ======================================================
    BLOG SECTION
====================================================== */

.blog-section {
    text-align: center;
margin: 0;
    width: 100%;
 
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-subtitle {
    max-width: 720px;
    margin: 0 auto 50px;
    color: var(--text-soft);
font-size: 22px; 
}

/* FEATURE CARD */
.blog-feature {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    overflow: hidden;
    max-width: none; 
    width: 100%;
    margin: 0 auto 10px;
    box-shadow: 0 5px 14px rgba(255,0,204,0.12);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255,0,204,0.20);
}

.blog-feature-content {
    padding: 40px 45px;
}

.blog-feature-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-feature-content p {
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 750px;
    font-size: 22px; 
}

/* SMALL CARDS – horizontal scroll */

.blog-scroll-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 25px 5px 25px 5px;
    scroll-snap-type: x mandatory;
}

.blog-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}

.blog-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(120,120,120,0.35);
    border-radius: 4px;
}

.blog-small-card {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 25px 28px;
    text-align: left;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(255,0,204,0.1);
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
    color: inherit;
}

.blog-small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(255,0,204,0.18);
}

.blog-small-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-small-card p {
    color: var(--text-soft);
    line-height: 1.5;
}


.linkedin-more {
    margin-top: 100px;
    text-align: center;
}

.linkedin-more-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Button im gewünschten Pink */
.linkedin-more-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #ff7de6;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;

    box-shadow: 0 4px 12px rgba(255, 125, 230, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.linkedin-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 125, 230, 0.5);
    opacity: 0.95;
}


@media (max-width: 900px) {
  .blog-section {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .blog-scroll-wrapper {
    padding-left: 0;          /* kommt von .blog-section */
    padding-right: 24px;      /* wichtiger Teil */
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
    box-sizing: border-box;
  }
}

/* ======================================================
    PARTNER SECTION
====================================================== */



.partner-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 70px;
}

/* GRID: Vorteile links, Card rechts */
.partner-benefit-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 0px;
}

.partner-benefits-left h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.partner-benefits-left {
    max-width: 520px;        
}

.partner-benefits-left p,
.partner-benefits-left .benefit-item {
    text-align: left;
}



.benefit-item {
    margin-bottom: 25px;
}

.benefit-item h4 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-soft);
    line-height: 1.6;
}

/* Right-side Card – Glow */

.partner-graphic-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 25px;

    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.partner-graphic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.20);
}

.partner-graphic-placeholder {
    width: 100%;
    height: 500px;
    background: none;
    border: none;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-graphic-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {

    .partner-benefit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    /* Text zuerst */
    .partner-benefits-left {
        order: 1;
        max-width: none;
        margin: 0 auto;
    }

    .partner-benefits-left h3,
    .partner-benefits-left p,
    .benefit-item {
        text-align: left;
    }

    /* Grafik darunter */
    .partner-benefits-right {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .partner-graphic-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .partner-graphic-placeholder {
        height: auto;
    }

    .partner-graphic-img {
        max-width: 100%;
    }
}

/* WHY PARTNER */

.why-partner-section {
    text-align: center;
    margin-top: 80px;
}

.why-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-subtitle {
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 22px;
}

.why-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 60px 40px;

    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}


/* WHY Partner Card – Hover Effekt */
.why-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.20);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    padding: 20px;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.why-item h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.why-line {
    width: 70%;
    height: 2px;
    background: var(--accent);
    opacity: 0.4;
    margin: 15px auto 25px auto;
    border-radius: 2px;
}

.why-item p {
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Mobile Why Partner */

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-card {
        padding: 40px 25px;
    }
}

/* PARTNER LEVEL ACCORDION */

.partnerlevels-title {
    font-size: 30px !important;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 80px;
}

.partnerlevels-subtitle {
    font-size: 22px !important;
    line-height: 1.55;
    max-width: 900px;
    color: var(--text-soft);
    margin: 0 auto 50px;
    text-align: center;
}

.partnerlevels-accordion {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 60px;
}

.partnerlevel-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 40px 32px;

    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    cursor: default;
    min-height: 450px;

    display: flex;
    flex-direction: column;          
    justify-content: center;
    align-items: center;

    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.partnerlevel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.20);
}


.partnerlevel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255,0,204,0.20);
}

.pl-header {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.pl-sub {
    font-size: 22px;
    color: var(--text-soft);
    text-align: center;
    max-width: 90%;
}

.pl-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .35s ease, padding-top .35s ease;
    width: 100%;
    margin-top: 20px;
}

.pl-content p {
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 12px;
    text-align: left;
    font-size: 16px;
}

.pl-content > p {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.55;
}

.pl-content ul {
    padding-left: 20px;
    margin: 0;
    text-align: left;
    color: var(--text-soft);
    line-height: 1.55;
    font-size: 16px;
}

/* EXPAND on Hover */

.partnerlevel-card:hover .pl-content {
    max-height: 600px;
    opacity: 1;
    padding-top: 10px;
}


@media (max-width: 900px) {

    @media (max-width: 900px) {

.partner-section {
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }    

.partnerlevels-accordion {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
        padding: 0 16px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }

    .partnerlevel-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        border-radius: 22px;
        min-height: auto;
        padding: 28px 22px;

        box-sizing: border-box;
        min-width: 0; /* 🔑 extrem wichtig */
    }
}

    

    .pl-header {
        font-size: 26px;
    }

    .pl-sub {
        font-size: 20px;
        max-width: 100%;
    }
}
@media (max-width: 900px) {

    /* Hover auf Mobile deaktivieren */
    .partnerlevel-card:hover .pl-content {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
    }

    /* Expand nur bei ACTIVE (per Klick / JS) */
    .partnerlevel-card.active .pl-content {
        max-height: 800px; /* genug für längste Liste */
        opacity: 1;
        padding-top: 16px;
    }
}



/* ======================================================
    CAREER SECTION – im Stil von Security
====================================================== */

.career-section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 20px;
    text-align: center;
}

.career-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.career-intro {
    font-size: 22px;
    line-height: 1.55;
    color: var(--text-soft);
    margin-bottom: 70px;
}

/* Liste untereinander */
.career-list {
    display: flex;
    flex-direction: column;
    gap: 50px;

}

/* Einzelner Bereich */
.career-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
    text-align: left; 
}

/* Pink Divider – exakt wie Security */
.career-item h3::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: var(--accent);
    opacity: 0.7;
     margin: 8px 0 0 0;
    border-radius: 2px;

}

.career-item p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0 auto;
   text-align: left;
}

.career-note {
    margin: 70px auto 40px;
    max-width: 820px;
    font-size: 22px;
    line-height: 1.55;
    text-align: center;
    color: var(--text-soft);
}

/* CTA Button */


.career-btn {
    display: inline-block;
    padding: 16px 28px;
    background: #ff7de6; /* exakt wie LinkedIn Button */
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;

    box-shadow: 0 4px 12px rgba(255, 125, 230, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.career-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 125, 230, 0.5);
    opacity: 0.95;
}

/* Mobile Feinschliff */
@media (max-width: 600px) {
    .career-title {
        font-size: 26px;
    }

    .career-intro {
        font-size: 20px;
    }
}


/* ======================================================
   CAREER CARD – im Stil der Blog Feature Card
====================================================== */

.career-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    max-width: 1280px;
    padding: 50px 60px;
margin: 0 auto;

    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    transition: transform .25s ease, box-shadow .25s ease;

    display: flex;
    flex-direction: column;
    gap: 45px;
    text-align: left;
}

/* optionaler Hover – gleich wie Blog */
.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255, 0, 204, 0.20);
}

/* Items bleiben wie gehabt */
.career-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
}

/* Divider bleibt */
.career-item h3::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: var(--accent);
    opacity: 0.7;
    margin-top: 8px;
    border-radius: 2px;
}

.career-item p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
    .career-card {
        padding: 32px 26px;
        gap: 35px;
    }
}
/* ======================================
    CONTACT SECTION (modern Logicx Style)
====================================== */

.contact-section {
    max-width: 1100px; /* Hier behalten wir die engere Breite bei, da es sich um ein Formular handelt */
    margin: 120px auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --------------------------------------
    LEFT SIDE – ADDRESS + CONTACT LINKS
--------------------------------------- */

.contact-left h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
text-align: left;
}

.contact-left p {
    font-size: 20px;
    line-height: 1.55;
    margin: 0 0 25px 0;
    color: var(--text-soft);
text-align:left;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    text-decoration: none;
    color: var(--text-main);
    margin-bottom: 14px;
    transition: color 0.25s ease;
}

.contact-link img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link:hover img {
    opacity: 1;
}

/* --------------------------------------
    RIGHT SIDE – LINKEDIN CARD
--------------------------------------- */

.contact-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 40px 45px;
    box-shadow: 0 5px 14px rgba(255, 0, 204, 0.12);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(255,0,204,0.20);
}

.contact-card-icon {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 25px 0;
}

/* BUTTON */
.contact-btn {
    display: inline-block;
    padding: 14px 22px;
    background: #ff7de6;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255,0,204,0.25);
    transition: opacity .25s ease, transform .25s ease;
}

.contact-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* --------------------------------------
    RESPONSIVE
--------------------------------------- */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        padding: 32px;
    }
}



/* --------------------------------------
    CTA PARTNER UND EK
--------------------------------------- */

/* Container für die Button-Blöcke */
.section-cta-block {
    text-align: center;
    margin: 60px auto;
    padding: 0 20px;
}

/* Der Text über den Buttons */
.cta-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Gemeinsamer Style für alle Action-Buttons (Basis: career-btn) */
.partner-btn, 
.expert-btn {
    display: inline-block;
    padding: 16px 28px;
    background: #ff7de6; /* Logicx Pink */
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(255, 125, 230, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: "Rajdhani", sans-serif;
}

.partner-btn:hover, 
.expert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 125, 230, 0.5);
    opacity: 0.95;
    color: #ffffff; /* Sicherstellen, dass Text weiß bleibt */
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .cta-text {
        font-size: 20px;
    }
    .partner-btn, .expert-btn {
        width: 100%; /* Auf Mobile volle Breite für bessere Klickbarkeit */
        box-sizing: border-box;
    }
}
/* ======================================================
    FOOTER – vereinfacht, keine Sidebar-Abhängigkeit
====================================================== */

.footer {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 15px;
    margin-top: 80px;
    border-top: none;
}

.footer-left {
    display: flex;
    gap: 25px;
}

.footer-left a {
    text-decoration: none;
    color: var(--text-main);
    transition: 0.2s ease;
}

.footer-left a:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-soft);
}

/* Mobile Footer */

@media (max-width: 900px) {
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ======================================================
    SCROLL REVEAL ANIMATION (unverändert)
====================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
