/* ═══════════════════════════════════════
   ROOT — Custom Properties
   ═══════════════════════════════════════ */
:root {
  /* ─── Brand Colors ─────────────────────────────── */
  --blue:        #2700FF;
  --black:       #000000;
  --white:       #ffffff;
  --grey:        #f0f0f0;
  --pink:        #FE04FE;
  --yellow:      #F7F700;

  /* ─── Functional Colors ────────────────────────── */
  --placeholder: #aaaaaa;
  --divider:     #cccccc;
  --error:       #cc0000;
  --body-text:   #333333;

  /* ─── SC / Growth Pilot Tokens ─────────────────── */
  /* Aliase für das SC-System — erben von Brand Colors */
  --sc-blue:       var(--blue);
  --sc-black:      var(--black);
  --sc-white:      var(--white);
  --sc-grey:       #f2f2f2;

  /* SC Typografie — einheitliche Skala */
  --sc-fs-display: clamp(36px, 5vw, 72px);
  --sc-fs-h2:      clamp(28px, 3.5vw, 48px);
  --sc-fs-h3:      clamp(18px, 1.8vw, 24px);
  --sc-fs-body:    clamp(15px, 1.2vw, 18px);
  --sc-fs-small:   clamp(13px, 1vw, 15px);
  --sc-fs-label:   11px;

  /* SC Abstände */
  --sc-pad-x:      clamp(24px, 6vw, 100px);
  --sc-pad-y:      clamp(64px, 8vw, 120px);
  --sc-gap:        clamp(16px, 2vw, 28px);
  --sc-max-w:      1100px;
  --sc-max-w-text: 720px;
  --sc-title-mb:   16px;
  --sc-sub-mb:     56px;
}

/* ═══════════════════════════════════════
   ACCESSIBILITY — Focus Visible
   Keyboard-Navigation: sichtbarer Focus-Ring
   ═══════════════════════════════════════ */
:focus { outline: none; }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

/* Buttons & Links im Dark-Context: weisser Ring */
.main-header.dark :focus-visible,
.fullscreen-menu :focus-visible,
.connection-section :focus-visible,
.stats-section :focus-visible,
.contact-info-section :focus-visible,
.footer-contact :focus-visible {
    outline-color: var(--white);
}

/* Form-Inputs: eigener Focus-Stil */
.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 0;
}

/* ═══════════════════════════════════════
   0. MASTER HERO HEADER
   ═══════════════════════════════════════ */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    min-height: -webkit-fill-available;
    overflow: hidden;
}

.hero-slideshow-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slideshow-slide.active {
    opacity: 1;
}

.hero-slideshow-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 1;
}

.hero-slideshow-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.hero-slideshow-title {
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    line-height: 0.9;
}

.hero-slideshow-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .hero-slideshow {
        height: calc(var(--vh, 1vh) * 100);
        height: 100dvh;
        min-height: -webkit-fill-available;
    }
    .hero-slideshow-title {
        font-size: clamp(90px, 15vw, 100px);
        margin-bottom: 35px;
    }
}

/* ═══════════════════════════════════════
   BASE — Reset & Grundeinstellungen
   ═══════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
button {
    cursor: pointer;
}

/* ─── FIX: overflow-x clip statt hidden — sonst bricht position:sticky ─── */
html {
    overflow-x: clip;
}

/* ─── Scroll-Lock wenn Burger Menu offen ─── */
html.no-scroll {
    overflow: hidden;
}

body {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
}

/* ═══════════════════════════════════════
   HEADER — Fixierter Header
   ═══════════════════════════════════════ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1400;
    transition: all 0.3s ease;
    background-color: transparent;
}

.main-header.menu-open {
    background-color: transparent;
    z-index: 2000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 0 40px;
}

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

/* ─── LANGUAGE SWITCH ─────────────────────────────────── */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--placeholder);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.lang-link:hover {
    color: var(--black);
}

.lang-active {
    color: var(--black);
    font-weight: 700;
}

.lang-divider {
    font-size: 14px;
    font-weight: 400;
    color: var(--divider);
}

/* ─── Dark-Modus Überschreibungen ─── */
.main-header.dark .lang-link {
    color: rgba(255, 255, 255, 0.45);
}

.main-header.dark .lang-link:hover {
    color: var(--white);
}

.main-header.dark .lang-active {
    color: var(--white);
}

.main-header.dark .lang-divider {
    color: rgba(255, 255, 255, 0.3);
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 35px;
    width: auto;
    transition: filter 0.3s ease;
}

/* ═══════════════════════════════════════
   HEADER — Burger Menu
   ═══════════════════════════════════════ */
.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
    transform-origin: center center;
    position: absolute;
    left: 0;
}

.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 9px; }
.burger-line:nth-child(3) { top: 18px; }

.burger-menu.active .burger-line {
    background-color: var(--black);
}

.burger-menu.active .burger-line:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* ═══════════════════════════════════════
   HEADER — Farbmodi (hell / dunkel)
   ═══════════════════════════════════════ */
.main-header.light .burger-line {
    background-color: var(--black);
}

.main-header.light .header-logo {
    filter: brightness(0);
}

.main-header.dark .burger-line {
    background-color: var(--white);
}

.main-header.dark .header-logo {
    filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════
   HEADER — Fullscreen Navigation
   ═══════════════════════════════════════ */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--white);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.menu-link {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--blue);
}

/* ─── Starship Nav-Button ─── */
.menu-link-starship {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    font-style: italic;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 15px 40px;
    border-radius: 50px;
    margin-top: clamp(20px, 3vw, 40px);
    display: inline-block;
    background: linear-gradient(
        270deg,
        #ff00ff,
        #00ffff,
        #39ff14,
        #ff00aa,
        #ffe600,
        #00f5ff,
        #ff00ff
    );
    background-size: 400% 400%;
    animation: neonShift 6s ease infinite;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-link-starship:hover {
    transform: scale(1.08);
}

/* ─── Starship im Footer-Nav — margin-top reset ─── */
.footer-nav .menu-link-starship {
    margin-top: clamp(8px, 1.5vw, 16px);
    font-size: clamp(14px, 1.5vw, 16px);
    align-self: flex-start;
    color: var(--black);
}

/* ─── Aktiver Nav-Link je nach Seite ─── */
/* ─── Hauptnavigation → Blau ─── */
body[data-page="strategie"]    .menu-link[data-nav="strategie"],
body[data-page="design"]       .menu-link[data-nav="design"],
body[data-page="arbeiten"]     .menu-link[data-nav="arbeiten"],
body[data-page="team"]         .menu-link[data-nav="team"],
body[data-page="kontakt"]      .menu-link[data-nav="kontakt"],
body[data-page="jobs"]         .menu-link[data-nav="jobs"],
body[data-page="strategie-en"] .menu-link[data-nav="strategie"],
body[data-page="design-en"]    .menu-link[data-nav="design"],
body[data-page="arbeiten-en"]  .menu-link[data-nav="arbeiten"],
body[data-page="team-en"]      .menu-link[data-nav="team"],
body[data-page="kontakt-en"]   .menu-link[data-nav="kontakt"],
body[data-page="jobs-en"]      .menu-link[data-nav="jobs"] {
    color: var(--blue);
}

/* ─── Footer Navigation → Schwarz ─── */
body[data-page="strategie"]    .footer-nav-link[data-nav="strategie"],
body[data-page="design"]       .footer-nav-link[data-nav="design"],
body[data-page="arbeiten"]     .footer-nav-link[data-nav="arbeiten"],
body[data-page="team"]         .footer-nav-link[data-nav="team"],
body[data-page="kontakt"]      .footer-nav-link[data-nav="kontakt"],
body[data-page="jobs"]         .footer-nav-link[data-nav="jobs"],
body[data-page="strategie-en"] .footer-nav-link[data-nav="strategie"],
body[data-page="design-en"]    .footer-nav-link[data-nav="design"],
body[data-page="arbeiten-en"]  .footer-nav-link[data-nav="arbeiten"],
body[data-page="team-en"]      .footer-nav-link[data-nav="team"],
body[data-page="kontakt-en"]   .footer-nav-link[data-nav="kontakt"],
body[data-page="jobs-en"]      .footer-nav-link[data-nav="jobs"] {
    color: var(--black);
    opacity: 1;
}

/* ═══════════════════════════════════════
   HEADER — Responsive
   ═══════════════════════════════════════ */
@media screen and (max-width: 768px) {
    .header-content {
        padding: 20px;
    }
    .header-logo {
        height: 30px;
    }
    .header-right {
        gap: 24px;
    }
    .burger-menu {
        width: 35px;
        height: 26px;
        gap: 6px;
    }
}

@media screen and (max-width: 480px) {
    .header-logo {
        height: 28px;
    }
    .burger-menu {
        width: 35px;
        height: 22px;
        gap: 6px;
    }
}

/* ═══════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════ */
.hero-static {
    position: relative;
    width: 100%;
    /* ─── iOS Safari Fix: --vh wird via JS im <head> gesetzt ─── */
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-static::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px;
}

.hero-title {
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.4;
}

.hero-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
}

.hero-button:hover {
    background-color: var(--white);
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: clamp(90px, 15vw, 100px);
        margin-bottom: 35px;
    }
}

/* ═══════════════════════════════════════
   2. TWO COLUMN SECTION
   ═══════════════════════════════════════ */
.two-column-section {
    display: flex;
    width: 100%;
    height: 750px;
    padding: 40px;
    gap: 15px;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    position: relative;
}

.column-left {
    background-color: var(--black);
}

.column-right {
    background-color: var(--blue);
}

.column-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: clamp(50px, 10vw, 100px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 20px;
    text-align: left;
}

.column-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 50px;
}

.column-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.column-button:hover {
    background-color: var(--white);
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    .column {
        min-height: 375px;
    }
    .column-title {
        font-size: clamp(50px, 12vw, 100px);
        margin-bottom: 15px;
    }
}

/* ═══════════════════════════════════════
   3. PROCESS SECTION
   ═══════════════════════════════════════ */
.process-section {
    background-color: var(--grey);
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 10%;
}

.process-content {
    text-align: center;
    width: 100%;
}

.process-title {
    font-size: clamp(28px, 4.5vw, 45px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 20px;
}

.process-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 80px;
    padding: 0 10%;
}

.process-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: clamp(80px, 12vw, 220px);
    height: clamp(80px, 12vw, 220px);
    background-color: var(--blue);
    will-change: transform, border-radius;
}

/* Kreis 1 — organisch, leicht rotierend, 11s */
.circle-item:nth-child(1) .circle {
    animation: circleWater1 11s ease-in-out infinite;
    border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%;
}

/* Kreis 2 (Mitte) — ruhig, tief, langsam — 14s */
.circle-item:nth-child(3) .circle {
    animation: circleWater2 14s ease-in-out infinite;
    border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%;
}

/* Kreis 3 — schnelle kleine Wellen — 8s */
.circle-item:nth-child(5) .circle {
    animation: circleWater3 8s ease-in-out infinite;
    border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%;
}

@keyframes circleWater1 {
    0%   { transform: translateY(0) rotate(0deg);     border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; }
    10%  { border-radius: 52% 48% 44% 56% / 58% 48% 52% 42%; }
    25%  { transform: translateY(-10px) rotate(-1.5deg); border-radius: 38% 62% 60% 40% / 52% 38% 62% 48%; }
    40%  { border-radius: 56% 44% 38% 62% / 44% 56% 46% 54%; }
    55%  { transform: translateY(-5px) rotate(1deg);  border-radius: 44% 56% 52% 48% / 60% 40% 56% 44%; }
    70%  { border-radius: 60% 40% 46% 54% / 42% 60% 44% 56%; }
    85%  { transform: translateY(-13px) rotate(-0.5deg); border-radius: 48% 52% 62% 38% / 54% 46% 40% 60%; }
    100% { transform: translateY(0) rotate(0deg);     border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; }
}

@keyframes circleWater2 {
    0%   { transform: translateY(0) scale(1);        border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; }
    25%  { transform: translateY(-8px) scale(1.01);  border-radius: 58% 42% 56% 44% / 44% 58% 42% 56%; }
    50%  { transform: translateY(-14px) scale(1);    border-radius: 44% 56% 42% 58% / 56% 44% 58% 42%; }
    75%  { transform: translateY(-6px) scale(0.99);  border-radius: 52% 48% 58% 42% / 42% 52% 48% 58%; }
    100% { transform: translateY(0) scale(1);        border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; }
}

@keyframes circleWater3 {
    0%   { transform: translateY(0);      border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; }
    20%  { transform: translateY(-11px);  border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; }
    40%  { transform: translateY(-5px);   border-radius: 48% 52% 58% 42% / 52% 46% 54% 48%; }
    60%  { transform: translateY(-14px);  border-radius: 56% 44% 46% 54% / 44% 56% 48% 52%; }
    80%  { transform: translateY(-3px);   border-radius: 44% 56% 54% 46% / 56% 42% 52% 48%; }
    100% { transform: translateY(0);      border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; }
}

.circle-label {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    margin-top: 30px;
}

.arrow {
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .process-circles { gap: 30px; }
    .arrow { width: 80px; }
}

@media screen and (max-width: 768px) {
    .process-section {
        padding: 50px 5%;
        min-height: auto;
    }
    .process-subtitle {
        margin-bottom: 60px;
        padding: 0;
    }
    .process-circles {
        flex-direction: column;
        gap: 50px;
    }
    .arrow {
        transform: rotate(90deg);
        width: 60px;
    }
    .circle {
        width: 120px;
        height: 120px;
    }
}

/* ═══════════════════════════════════════
   4. CONNECTION SECTION
   ═══════════════════════════════════════ */
.connection-section {
    background-color: var(--blue);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 10%;
    position: relative;
    overflow: hidden;
}

.connection-content {
    text-align: center;
    width: 100%;
}

.connection-title {
    font-size: clamp(25px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 100px;
}

.circles-container {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moving-circle {
    position: absolute;
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, border-radius, opacity;
    /* Keine CSS transition — JS übernimmt alles via rAF */
}

.circle-text {
    font-size: clamp(16px, 1.8vw, 25px);
    font-weight: 700;
    color: var(--white);
    transition: opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
}

.circle-merged .circle-text {
    font-size: clamp(26px, 2.7vw, 40px);
}

.circle-left  { left: calc(50% - 200px - 480px); }
.circle-right { left: calc(50% - 200px + 480px); }
.circle-merged {
    opacity: 0;
    left: calc(50% - 200px);
    transform: scale(0.85);
}

@media screen and (max-width: 1024px) {
    .circles-container { height: 350px; }
}

@media screen and (max-width: 768px) {
    .connection-section {
        padding: 50px 5%;
        min-height: 80vh;
    }
    .connection-title { margin-bottom: 80px; }
    .circles-container { height: 550px; }

    .circle-left,
    .circle-right,
    .circle-merged {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@media screen and (max-width: 480px) {
    .connection-section { min-height: 70vh; }
    .circles-container { height: 450px; }
}

/* ═══════════════════════════════════════
   5. BUBBLE SECTION
   ═══════════════════════════════════════ */
.bubble-section {
    background-color: var(--white);
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 10%;
    overflow: hidden;
}

.bubble-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bubble-title {
    font-size: clamp(25px, 4.5vw, 60px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
}

.bubble-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
    max-width: 70%;
}

.bubble-wrapper {
    position: relative;
    width: 100%;
    height: clamp(400px, 35vw, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: border-radius, transform;
}

.bubble-thinking {
    width: clamp(180px, 22vw, 390px);
    height: clamp(180px, 22vw, 390px);
    background-color: var(--blue);
    transform: translate(45%, 25%);
    animation: bubbleWater1 11s ease-in-out infinite;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
}

.bubble-design {
    width: clamp(160px, 20vw, 280px);
    height: clamp(160px, 20vw, 280px);
    background-color: var(--black);
    transform: translate(-55%, 38%);
    animation: bubbleWater2 8s ease-in-out infinite;
    border-radius: 45% 55% 60% 40% / 60% 40% 45% 55%;
}

.bubble-feeling {
    width: clamp(140px, 18vw, 350px);
    height: clamp(140px, 18vw, 350px);
    background-color: var(--grey);
    transform: translate(0%, -35%);
    animation: bubbleWater3 14s ease-in-out infinite;
    border-radius: 55% 45% 40% 60% / 40% 60% 55% 45%;
}

/* ─── Bubble Wasser-Keyframes ─── */

.bubble-text {
    font-size: clamp(18px, 2.5vw, 36px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    user-select: none;
}

.bubble-text-dark {
    color: var(--black);
}

/* Thinking (Blau) — organisch, unregelmässig, leicht rotierend */
@keyframes bubbleWater1 {
    0%   { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: translate(45%, 25%) rotate(0deg); }
    10%  { border-radius: 52% 48% 44% 56% / 58% 48% 52% 42%; }
    25%  { border-radius: 38% 62% 60% 40% / 52% 38% 62% 48%; transform: translate(45%, 22%) rotate(-1.5deg); }
    40%  { border-radius: 56% 44% 38% 62% / 44% 56% 46% 54%; }
    55%  { border-radius: 44% 56% 52% 48% / 60% 40% 56% 44%; transform: translate(45%, 27%) rotate(1deg); }
    70%  { border-radius: 60% 40% 46% 54% / 42% 60% 44% 56%; }
    85%  { border-radius: 48% 52% 62% 38% / 54% 46% 40% 60%; transform: translate(45%, 21%) rotate(-0.5deg); }
    100% { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: translate(45%, 25%) rotate(0deg); }
}

/* Design (Schwarz) — kleine schnelle Wellen, lebendig */
@keyframes bubbleWater2 {
    0%   { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translate(-55%, 38%); }
    20%  { border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; transform: translate(-55%, 33%); }
    40%  { border-radius: 48% 52% 58% 42% / 52% 46% 54% 48%; transform: translate(-55%, 40%); }
    60%  { border-radius: 56% 44% 46% 54% / 44% 56% 48% 52%; transform: translate(-55%, 34%); }
    80%  { border-radius: 44% 56% 54% 46% / 56% 42% 52% 48%; transform: translate(-55%, 42%); }
    100% { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translate(-55%, 38%); }
}

/* Feeling (Grau) — ruhig, tief, langsam fliessend */
@keyframes bubbleWater3 {
    0%   { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: translate(0%, -35%) scale(1); }
    25%  { border-radius: 58% 42% 56% 44% / 44% 58% 42% 56%; transform: translate(0%, -38%) scale(1.01); }
    50%  { border-radius: 44% 56% 42% 58% / 56% 44% 58% 42%; transform: translate(0%, -32%) scale(1); }
    75%  { border-radius: 52% 48% 58% 42% / 42% 52% 48% 58%; transform: translate(0%, -37%) scale(0.99); }
    100% { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: translate(0%, -35%) scale(1); }
}

@media screen and (max-width: 768px) {
    .bubble-section {
        padding: 50px 5%;
        min-height: auto;
        height: auto;
    }
    .bubble-content { gap: 0; }
    .bubble-title {
        padding: 0 5%;
        margin-bottom: 30px;
    }
    /* Wrapper — kompakt, Bubbles überlappen sich fein */
    .bubble-wrapper {
        height: 300px;
        margin: 0 0 30px 0;
        position: relative;
        overflow: visible;
    }
    /* Thinking (Blau) — oben links */
    .bubble-thinking {
        width: 190px;
        height: 190px;
        top: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-80%);
        animation: bubbleWater1Mobile 11s ease-in-out infinite;
    }
    /* Design (Schwarz) — oben rechts, überlappt Thinking */
    .bubble-design {
        width: 160px;
        height: 160px;
        top: 30px;
        left: 50%;
        right: auto;
        transform: translateX(10%);
        animation: bubbleWater2Mobile 8s ease-in-out infinite;
    }
    /* Feeling (Grau) — unten mitte, überlappt beide */
    .bubble-feeling {
        width: 170px;
        height: 170px;
        top: 140px;
        left: 50%;
        right: auto;
        transform: translateX(-55%);
        animation: bubbleWater3Mobile 14s ease-in-out infinite;
    }
    .bubble-subtitle {
        padding: 0 5%;
        max-width: 90%;
    }
}

/* ─── Mobile Wasser-Keyframes (ohne Desktop-translate) ─── */
@keyframes bubbleWater1Mobile {
    0%   { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: translateX(-80%) rotate(0deg); }
    10%  { border-radius: 52% 48% 44% 56% / 58% 48% 52% 42%; }
    25%  { border-radius: 38% 62% 60% 40% / 52% 38% 62% 48%; transform: translateX(-80%) translateY(-7px) rotate(-1.5deg); }
    40%  { border-radius: 56% 44% 38% 62% / 44% 56% 46% 54%; }
    55%  { border-radius: 44% 56% 52% 48% / 60% 40% 56% 44%; transform: translateX(-80%) translateY(5px) rotate(1deg); }
    70%  { border-radius: 60% 40% 46% 54% / 42% 60% 44% 56%; }
    85%  { border-radius: 48% 52% 62% 38% / 54% 46% 40% 60%; transform: translateX(-80%) translateY(-10px) rotate(-0.5deg); }
    100% { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: translateX(-80%) rotate(0deg); }
}

@keyframes bubbleWater2Mobile {
    0%   { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translateX(10%); }
    20%  { border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; transform: translateX(10%) translateY(-8px); }
    40%  { border-radius: 48% 52% 58% 42% / 52% 46% 54% 48%; transform: translateX(10%) translateY(4px); }
    60%  { border-radius: 56% 44% 46% 54% / 44% 56% 48% 52%; transform: translateX(10%) translateY(-6px); }
    80%  { border-radius: 44% 56% 54% 46% / 56% 42% 52% 48%; transform: translateX(10%) translateY(6px); }
    100% { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translateX(10%); }
}

@keyframes bubbleWater3Mobile {
    0%   { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: translateX(-55%) scale(1); }
    25%  { border-radius: 58% 42% 56% 44% / 44% 58% 42% 56%; transform: translateX(-55%) translateY(-5px) scale(1.01); }
    50%  { border-radius: 44% 56% 42% 58% / 56% 44% 58% 42%; transform: translateX(-55%) translateY(6px) scale(1); }
    75%  { border-radius: 52% 48% 58% 42% / 42% 52% 48% 58%; transform: translateX(-55%) translateY(-3px) scale(0.99); }
    100% { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: translateX(-55%) scale(1); }
}

/* ═══════════════════════════════════════
   6. STATS SECTION
   ═══════════════════════════════════════ */
.stats-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 10%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 0;
}

.stats-section > * {
    position: relative;
    z-index: 1;
}

.stats-content {
    text-align: center;
    width: 100%;
}

.stats-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 80px;
}

.stats-columns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-column {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.stat-label {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    margin-bottom: 10px;
}

.stat-value {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-divider {
    width: 2px;
    height: clamp(100px, 12vw, 150px);
    background-color: var(--white);
    flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
    .stat-column { padding: 0 20px; }
}

@media screen and (max-width: 768px) {
    .stats-section {
        padding: 50px 5%;
        min-height: auto;
    }
    .stats-title { margin-bottom: 60px; }
    .stats-columns {
        flex-direction: column;
        gap: 40px;
    }
    .stat-column { padding: 0; }
    .stat-divider {
        width: 100%;
        height: 2px;
        max-width: 200px;
    }
    .stat-label { margin-bottom: 15px; }
}

/* ═══════════════════════════════════════
   7. TRANSITION SECTION (Scroll-Effekt)
   ═══════════════════════════════════════ */
.transition-section {
    position: relative;
    width: 100%;
    height: 200vh;
    background-color: var(--black);
}

.transition-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .transition-section {
        height: 100vh;
    }
    .transition-wrapper {
        position: relative;
    }
    .text-state-2 {
        display: none;
    }
}

.transition-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.2);
    z-index: 1;
}

.text-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.text-state {
    position: absolute;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.text-state-1 {
    transform: translateY(0);
    opacity: 1;
}

.text-state-1.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.text-state-2 {
    transform: translateY(100%);
    opacity: 0;
}

.text-state-2.slide-in {
    transform: translateY(0);
    opacity: 1;
}

.transition-title {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.transition-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   8. SERVICES SECTION
   ═══════════════════════════════════════ */
.services-section {
    background-color: var(--white);
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    padding: 75px 5%;
}

.services-content {
    width: 100%;
}

.services-title {
    font-size: clamp(18px, 5vw, 45px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align: center;
    padding: 0 10%;
}

.services-grid {
    display: flex;
    width: 100%;
    gap: 15px;
    align-items: stretch;
}

.service-card {
    flex: 1;
    background-color: var(--blue);
    display: flex;
    padding: 40px;
    overflow: hidden;
    cursor: pointer;
    height: 490px;
    position: relative;
}

.service-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-default {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    transition: opacity 0.25s ease, filter 0.25s ease;
    opacity: 1;
    filter: blur(0px);
}

.service-card:hover .service-default {
    opacity: 0;
    filter: blur(8px);
}

.service-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.service-card:hover .service-hover {
    opacity: 1;
    filter: blur(0px);
}

.service-overtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
    margin-top: 20px;
    margin-left: -22px;
    letter-spacing: 0;
    line-height: 1;
}

.service-title {
    font-size: clamp(60px, 6vw, 250px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 10px;
    margin-left: -22px;
}

.service-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.3;
    margin-left: -22px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: -22px;
}

.service-list li {
    font-size: clamp(13px, 1.3vw, 18px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    min-width: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--white);
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 50px 5%;
        min-height: auto;
    }
    .services-title { max-width: 90%; }
    .services-grid { flex-direction: column; }
    .service-card {
        height: auto;
        min-height: 250px;
        padding: 30px;
        pointer-events: none;
        display: block;
    }
    .service-content {
        height: auto;
        display: block;
        padding-left: 10px;
    }
    .service-overtitle { margin-left: -22px; }
    .service-default {
        opacity: 1 !important;
        filter: blur(0px) !important;
        position: relative !important;
        margin-bottom: 20px !important;
        display: block !important;
    }
    .service-hover {
        opacity: 1 !important;
        filter: blur(0px) !important;
        position: relative !important;
        display: block !important;
        height: auto !important;
    }
}

/* ═══════════════════════════════════════
   9. HERO CTA SECTION
   ═══════════════════════════════════════ */
.hero-cta-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 10%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}

.hero-cta-section .hero-title {
    font-size: clamp(30px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: 0em;
}

.hero-cta-section .hero-subtitle {
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .hero-cta-section { padding: 50px 5%; }
    .hero-cta-section .hero-title { font-size: clamp(20px, 7vw, 60px); }
}

/* ═══════════════════════════════════════
   10. TEAM SECTION
   ═══════════════════════════════════════ */
.team-section {
    background-color: var(--white);
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

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

.team-image-wrapper {
    position: relative;
    height: 530px;
    overflow: hidden;
}

.team-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.7));
    z-index: 1;
    transition: opacity 0.2s ease;
}

.team-card:hover .team-image-wrapper::after {
    opacity: 0;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.team-card:hover .team-image {
    filter: blur(6px);
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.2s ease;
    z-index: 3;
}

.team-card:hover .team-info {
    opacity: 0;
}

.team-name {
    font-size: clamp(18px, 3vw, 40px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0em;
    line-height: 1.1;
    margin-bottom: 5px;
    text-align: center;
}

.team-role {
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.3;
    text-align: center;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 3;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.team-button:hover {
    background-color: var(--white);
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-image-wrapper { height: 302px; }
    .team-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    .team-overlay-content { gap: 8px; }
}

/* ═══════════════════════════════════════
   11. CONTACT FORM
   ═══════════════════════════════════════ */
.contact-section {
    background-color: var(--grey);
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    padding: 75px 15%;
}

.contact-content {
    width: 100%;
}

.contact-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 50px;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-right {
    display: flex;
    flex-direction: column;
}

.form-input {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: var(--black);
    background-color: var(--white);
    border: none;
    padding: 20px;
    outline: none;
    width: 100%;
}

.form-input::placeholder { color: var(--placeholder); }

.form-textarea {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: var(--black);
    background-color: var(--white);
    border: none;
    padding: 20px;
    outline: none;
    width: 100%;
    flex: 1;
    min-height: 280px;
    resize: none;
}

.form-textarea::placeholder { color: var(--placeholder); }

.form-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: var(--blue);
    border: 2px solid var(--blue);
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50px;
    align-self: flex-end;
}

.form-button:hover {
    background-color: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.form-button.loading,
.form-button:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.contact-title.success {
    color: var(--blue);
    transition: color 0.4s ease;
}

/* ─── Inline Fehlermeldungen ─── */
.form-field-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-field-error {
    font-family: "Geist", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--error);
    margin-top: 5px;
    margin-left: 2px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    min-height: 16px;
}

.form-field-error.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-input.invalid,
.form-textarea.invalid {
    border-color: var(--error) !important;
}

/* ─── Form Feedback (Erfolg / Fehler) ─── */
.form-feedback {
    margin-top: 24px;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-feedback.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback.success { color: var(--black); }
.form-feedback.error   { color: var(--error); }

/* ─── Turnstile + Button Zeile ─── */
.form-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.form-bottom-row > * {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .contact-section { padding: 50px 5%; }
    .form-grid { grid-template-columns: 1fr; }
    .form-textarea { min-height: 200px; }
    .form-button { align-self: stretch; }
    .form-bottom-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .form-bottom-row > * {
        width: 100%;
        justify-content: center;
    }
    .form-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════
   12. CONTACT INFO SECTION
   ═══════════════════════════════════════ */
.contact-info-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 75px 15%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}

.contact-info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    width: 100%;
    align-items: center;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-name {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
}

.contact-info-item {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    text-decoration: none;
    display: block;
    width: fit-content;
}

.contact-info-link {
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
}

.contact-info-link:hover { opacity: 0.7; }

.contact-info-gap { margin-top: 15px; }

.contact-info-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

.contact-info-claim {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact-info-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.contact-info-button:hover {
    background-color: var(--white);
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .contact-info-section {
        padding: 50px 5%;
        height: auto;
        min-height: 100vh;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info-left { order: 2; }
    .contact-info-right { order: 1; }
}

/* ═══════════════════════════════════════
   13. FOUNDER SECTION
   ═══════════════════════════════════════ */
.founder-section {
    background-color: var(--grey);
    width: 100%;
    min-height: 750px;
    display: flex;
    align-items: center;
    padding: 75px 15%;
}

.founder-content {
    width: 100%;
}

.founder-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 50px;
    text-align: center;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.founder-card .founder-button:first-of-type {
    margin-top: 40px;
}

.founder-image {
    width: clamp(100px, 15vw, 180px);
    height: clamp(100px, 15vw, 180px);
    border-radius: 50%;
    object-fit: cover;
}

.founder-name {
    font-size: clamp(20px, 2.5vw, 35px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.founder-role {
    font-size: clamp(13px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

.founder-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--black);
    background-color: transparent;
    border: 2px solid var(--black);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
}

.founder-button:hover {
    background-color: var(--black);
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .founder-section { padding: 50px 5%; }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ═══════════════════════════════════════
   14. PARTNER SECTION
   ═══════════════════════════════════════ */
.partner-section {
    background-color: var(--white);
    width: 100%;
    min-height: 460px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 75px 15%;
}

.partner-content {
    width: 100%;
}

.partner-title {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 50px;
    text-align: center;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(20px, 4vw, 80px);
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(100px, 12vw, 150px);
    height: clamp(40px, 5vw, 60px);
    flex-shrink: 1;
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .partner-section {
        min-height: auto;
        padding: 50px 5%;
    }
    .partner-logos {
        flex-wrap: wrap;
        gap: 30px;
    }
    .partner-logo-wrapper {
        width: 100px;
        height: 44px;
    }
}

/* ═══════════════════════════════════════
   15. BRAND HOSPITAL
   ═══════════════════════════════════════ */
.hospital-section {
    background-color: var(--white);
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 40px 15%;
}

.hospital-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hospital-text {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.6;
    max-width: 85%;
}

.hospital-badge {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 400;
    color: var(--white);
    background-color: var(--blue);
    border: none;
    border-radius: 50px;
    padding: 2px 14px;
    display: inline-block;
    margin-right: 3px;
    white-space: nowrap;
}

.hospital-button {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: var(--blue);
    border: 2px solid var(--blue);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}

.hospital-button:hover {
    background-color: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
}

@media screen and (max-width: 768px) {
    .hospital-section {
        padding: 30px 5%;
        min-height: auto;
    }
    .hospital-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .hospital-text { max-width: 100%; }
}

/* ═══════════════════════════════════════
   16. SELECTED PROJECTS
   ═══════════════════════════════════════ */
.projects-section {
    background-color: var(--white);
    width: 100%;
    min-height: 750px;
    padding: 75px 0 0 0;
}

.projects-content {
    width: 100%;
}

.projects-title {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 0;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.project-card {
    position: relative;
    height: 750px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.15);
    z-index: 1;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.project-card:hover .project-image {
    filter: blur(8px);
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 60px 40px;
    z-index: 2;
}

.project-name {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.project-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 30px;
}

.project-button {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--black);
    background-color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.project-card:hover .project-button {
    opacity: 1;
    transform: translateY(0);
}

.project-name-dark { color: var(--black); }
.project-subtitle-dark { color: var(--black); }
.project-button-dark {
    color: var(--white);
    background-color: var(--black);
    border-color: var(--black);
}

@media screen and (max-width: 768px) {
    .projects-section {
        padding: 50px 0 0 0;
        min-height: auto;
    }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card { height: 400px; }
    .project-button {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════ */
.footer {
    width: 100%;
}

.footer-awards {
    background-color: var(--grey);
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8vw;
    min-height: 400px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.award-logo {
    height: 120px;
    width: auto;
}

.award-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.award-winner {
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}

.award-category {
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}

.footer-contact {
    background-color: var(--blue);
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 22vw;
    min-height: 400px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-bold {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
    margin-bottom: 5px;
}

.contact-address {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

.contact-address a {
    text-decoration: none;
    color: inherit;
}

.contact-spacing-top {
    margin-top: 10px;
}

.footer-linkedin {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.linkedin-button {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.linkedin-button:hover {
    background-color: var(--white);
    color: var(--blue);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-nav-link {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    line-height: 1.0;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--white);
    opacity: 0.7;
}

.footer-bottom {
    background-color: var(--white);
    padding: 20px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-item {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}

.footer-bottom-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-bottom-link:hover { opacity: 0.6; }

body[data-page="impressum"] .footer-bottom-item.footer-bottom-link[data-nav="impressum"],
body[data-page="impressum"] .footer-bottom-item.footer-bottom-link[data-nav="datenschutz"] {
    color: var(--blue) !important;
    opacity: 1;
}

.footer-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--black);
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .footer-awards {
        padding: 80px 60px;
        gap: 60px;
    }
    .footer-contact { padding: 80px 60px; }
    .award-logo { height: clamp(60px, 10vw, 100px); }
}

@media screen and (max-width: 768px) {
    .footer-awards {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 40px;
        min-height: auto;
    }
    .footer-contact {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
        min-height: auto;
    }
    .footer-nav-link {
        font-size: clamp(30px, 8vw, 50px);
    }
    .contact-info { padding: 0; }
    .footer-nav { padding: 0; }
    .footer-linkedin { padding: 0; }
    .footer-bottom { padding: 30px 40px; }
    .footer-bottom-content { gap: 8px; }
    .award-item { gap: 20px; }
}

@media screen and (max-width: 480px) {
    .footer-awards { padding: 40px 30px; }
    .footer-contact { padding: 40px 30px; }
    .footer-bottom { padding: 24px 30px; }
}

/* ═══════════════════════════════════════
   18. PORTFOLIO
   ═══════════════════════════════════════ */
.portfolio-section {
    background-color: var(--white);
    width: 100%;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 0 2000px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    overflow: hidden;
    gap: 0;
    font-size: 0;
    line-height: 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
    min-width: 0;
    isolation: isolate;
    transform: translateZ(0);
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: normal;
    vertical-align: bottom;
}

.portfolio-full       { grid-column: span 6; height: 700px; }
.portfolio-half       { grid-column: span 3; height: 600px; }
.portfolio-two-thirds { grid-column: span 4; height: 620px; }
.portfolio-one-third  { grid-column: span 2; height: 620px; }

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    will-change: transform, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.04);
    filter: blur(6px);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    background: rgba(39, 0, 255, 0.80);
}

/* ─── Video: display block verhindert Inline-Gap; will-change/transform
       Reset vermeidet GPU-Compositing-Bug in Chrome/Safari (Video unsichtbar) ─── */
video.portfolio-image {
    display: block;
    object-fit: cover;
    will-change: auto;
    transform: none;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
}

.portfolio-item:hover .portfolio-info {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-title {
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.portfolio-button {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 400;
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.portfolio-button:hover {
    background-color: var(--white);
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .portfolio-full,
    .portfolio-half,
    .portfolio-two-thirds,
    .portfolio-one-third {
        grid-column: span 6;
        height: 400px;
    }

    .portfolio-section {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* Titel kleiner auf Mobile */
    .portfolio-title {
        font-size: 32px;
    }
    .portfolio-info {
        opacity: 0;
        transform: translateY(12px);
    }
    .portfolio-overlay {
        background: rgba(0, 0, 0, 0);
    }
    .portfolio-image {
        transform: scale(1);
        filter: blur(0px);
    }

    /* Aktiv (nach Tap): gleicher Effekt wie Hover auf Desktop */
    .portfolio-item.active .portfolio-image {
        transform: scale(1.04);
        filter: blur(6px);
    }
    .portfolio-item.active .portfolio-overlay {
        background: rgba(39, 0, 255, 0.80);
    }
    .portfolio-item.active .portfolio-info {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════
   19. PROJEKT TEMPLATE
   ═══════════════════════════════════════ */

/* ─── 1. Hero ─── */
.pt-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.pt-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
}

.pt-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
}

.pt-hero-category {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
    letter-spacing: 0;
    margin: 0 0 24px 0;
}

.pt-hero-title {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
}

/* ─── 2. Intro Text ─── */
.pt-intro {
    background-color: var(--white);
    padding: 100px 80px;
}

.pt-intro-content {
    max-width: 900px;
}

.pt-intro-tags {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.pt-tag {
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
    letter-spacing: 0;
}

.pt-tag-black {
    background-color: var(--black);
    color: var(--white);
}

.pt-tag-blue {
    background-color: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.pt-tag-white {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}

.pt-intro-text {
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: 0em;
    margin: 0;
}

/* ─── 3. Facts & Figures ─── */
.pt-facts {
    background-color: var(--blue);
    padding: 100px 80px;
    text-align: center;
}

.pt-facts-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pt-fact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pt-fact-divider {
    width: 2px;
    height: clamp(100px, 12vw, 150px);
    background-color: var(--white);
    flex-shrink: 0;
    margin: 0 60px;
}

.pt-fact-label {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    margin: 0 0 10px 0;
}

.pt-fact-value {
    font-size: 70px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

/* ─── 4. Background / Approach ─── */
.pt-approach {
    background-color: var(--grey);
    padding: 100px 80px;
}

.pt-approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pt-approach-label {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.pt-approach-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--body-text);
    line-height: 1.65;
    margin: 0;
}

.pt-approach-button {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--blue);
    border: 2px solid var(--blue);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pt-approach-button:hover {
    background-color: transparent;
    color: var(--blue);
}

/* ─── 5. Zitat ─── */
.pt-quote-content {
    max-width: 900px;
}

.pt-quote-text {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 40px 0;
}

.pt-quote-button {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    background-color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pt-quote-button:hover {
    background-color: transparent;
    color: var(--white);
}

/* ─── 6. Bilder-Raster ─── */
.pt-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 0 1400px;
}

.pt-image-full {
    position: relative;
    grid-column: span 6;
    height: 640px;
    background-size: cover;
    background-position: center;
    min-width: 0;
}

.pt-image-half {
    position: relative;
    grid-column: span 3;
    height: 560px;
    background-size: cover;
    background-position: center;
    min-width: 0;
}

.pt-image-two-thirds {
    position: relative;
    grid-column: span 4;
    height: 560px;
    background-size: cover;
    background-position: center;
    min-width: 0;
}

.pt-image-one-third {
    position: relative;
    grid-column: span 2;
    height: 560px;
    background-size: cover;
    background-position: center;
    min-width: 0;
}

/* ─── Zitat als Kachel ─── */
.pt-image-quote {
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 60px);
    overflow: hidden;
    min-width: 0;
}

.pt-image-quote .pt-quote-content {
    max-width: 100%;
    min-width: 0;
}

.pt-image-quote .pt-quote-text {
    font-size: clamp(16px, 1.8vw, 36px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 32px 0;
    word-break: break-word;
}

.pt-image-quote .pt-quote-button {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    background-color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pt-image-quote .pt-quote-button:hover {
    background-color: transparent;
    color: var(--white);
}

.pt-image-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
}

.pt-image-tag span {
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    white-space: nowrap;
}

.pt-image-tag-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
}

.pt-image-tag-link:hover {
    opacity: 0.8;
}

.pt-main-content {
    display: block;
}

/* ─── Responsive ─── */
@media screen and (max-width: 768px) {
    .pt-hero { 
        padding-bottom: 50px; 
        transform: none !important; /* bleibt */
        height: 100svh; /* ersetzt die alte vh-Höhe */
        background-attachment: scroll; /* nur falls vorher fixed gesetzt war */
    }

    .pt-hero-content { padding: 0 24px; }

    .pt-intro { padding: 60px 24px; }

    /* Bilder zuerst, dann Facts + Approach */
    .pt-main-content {
        display: flex;
        flex-direction: column;
    }
    .pt-images  { order: 1; }
    .pt-facts   { order: 2; }
    .pt-approach { order: 3; }

    /* Tags auf Mobile einblenden */
    .pt-image-tag { display: inline-flex; }

    /* Bilder untereinander — alle volle Breite, lückenlos */
    .pt-images {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pt-image-full,
    .pt-image-half,
    .pt-image-two-thirds,
    .pt-image-one-third {
        grid-column: span 1;
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: unset;
    }

    .pt-image-quote {
        grid-column: span 1;
        height: auto;
        min-height: 280px;
        padding: 40px 24px;
    }

    .pt-facts { padding: 60px 24px; text-align: left; }
    .pt-facts-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .pt-fact { align-items: flex-start; }
    .pt-fact-divider {
        width: 100%;
        height: 2px;
        margin: 0;
    }
    .pt-fact-value { font-size: 48px; }

    .pt-approach { padding: 60px 24px; }
    .pt-approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* ─── Floating Project Pill ─── */
.project-pill {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: rgba(0,0,0,.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    white-space: nowrap;
}

.project-pill.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.pill-prev,
.pill-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 24px;
    color: var(--white);
    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.pill-prev:hover,
.pill-next:hover {
    opacity: 0.6;
}

.pill-counter {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: var(--white);
    padding: 0 20px;
    border-left: 2px solid var(--white);
    border-right: 2px solid var(--white);
    height: 20px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .project-pill {
        bottom: 20px;
        max-width: calc(100vw - 48px);
    }

    .pill-prev span,
    .pill-next span {
        display: none;
    }

    .pill-prev,
    .pill-next {
        padding: 15px 18px;
    }
}

/* ─── Projects Arrow ─── */
.projects-arrow {
    display: block;
    margin: 50px auto 30px auto;
}

/* ═══════════════════════════════════════
   20. STARSHIP SECTION (Master-Beispiel)
   ═══════════════════════════════════════ */

.starship-section {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    overflow: hidden;
}

.starship-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 5vw, 80px);
    padding: 0 clamp(24px, 5vw, 80px);
    flex-wrap: wrap;
}

.starship-title {
    font-size: clamp(60px, 11vw, 150px);
    font-weight: 900;
    font-style: italic;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0;
    white-space: nowrap;
}

.starship-section .menu-link-starship {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .starship-section {
        height: auto;
        padding: 50px 24px;
    }
    .starship-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .starship-title {
        white-space: normal;
        text-align: center;
    }
}

/* ═══════════════════════════════════════
   21. STARSHIP CONNECT — Growth Pilot
   State of the Art Desktop + Mobile
   ═══════════════════════════════════════ */

/* ─── Basis-Reset alle SC-Sections ─── */
.sc-hero,
.sc-setup,
.sc-team,
.sc-execution,
.sc-impact,
.sc-cta {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ─── Shared: Section Label ─── */
.sc-section-label {
  margin-bottom: 20px;
}

.sc-label-center {
  display: flex;
  justify-content: center;
}

/* ─── Shared: Neon Button ─── */
.sc-button-neon {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #ff00ff, #00ffff, #39ff14, #ff00aa, #ffe600, #00f5ff, #ff00ff);
  background-size: 400% 400%;
  animation: neonShift 6s ease infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
  white-space: nowrap;
}

.sc-button-neon:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

@keyframes neonShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════════
   1. HERO
══════════════════════════════════════ */
.sc-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 1;
}

.sc-hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--sc-pad-y) var(--sc-pad-x);
  max-width: var(--sc-max-w);
  width: 100%;
}

.sc-headline {
  font-size: var(--sc-fs-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--sc-white);
  margin: 0 0 20px 0;
}

.sc-subheadline {
  font-size: var(--sc-fs-body);
  font-weight: 400;
  color: var(--sc-white);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: var(--sc-max-w-text);
}

/* ══════════════════════════════════════
   2. SETUP
══════════════════════════════════════ */
.sc-setup {
  background: var(--sc-white);
  padding: var(--sc-pad-y) 0;
  overflow: hidden;
}

.sc-setup-inner {
  max-width: var(--sc-max-w);
  margin: 0 auto;
  padding: 0 var(--sc-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.sc-setup-title {
  font-size: var(--sc-fs-h2);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--sc-black);
  margin: 0 0 var(--sc-title-mb) 0;
  max-width: var(--sc-max-w);
}

.sc-setup-subtitle {
  font-size: var(--sc-fs-body);
  font-weight: 400;
  color: var(--sc-black);
  line-height: 1.6;
  margin: 0 0 var(--sc-sub-mb) 0;
  max-width: var(--sc-max-w-text);
}

.sc-setup-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  align-items: end;
}

.sc-setup-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.sc-setup-circle {
  background: var(--sc-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: clamp(20px, 3vw, 40px);
  gap: clamp(6px, 1vw, 12px);
  box-sizing: border-box;
  will-change: border-radius, transform;
}

.sc-setup-circle--md  { width: 80%;  aspect-ratio: 1/1; height: auto; animation: waterWave1 7s ease-in-out infinite; }
.sc-setup-circle--lg  { width: 90%;  aspect-ratio: 1/1; height: auto; animation: waterWave2 9s ease-in-out infinite; }
.sc-setup-circle--xl  { width: 100%; aspect-ratio: 1/1; height: auto; animation: waterWave3 6s ease-in-out infinite; }

/* ─── Kreis 1 (01 — --lg) bekommt waterWave4 ─── */
.sc-setup-circle-item:nth-child(1) .sc-setup-circle {
  animation: waterWave4 11s ease-in-out infinite;
}

/* ─── Wasser-Keyframes — 4 verschiedene Charaktere ─── */

/* Kreis 2 (KPIs — --xl): Grosses, langsam fliessendes Wasser */
@keyframes waterWave1 {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translateY(0px) rotate(0deg); }
  15%  { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
  30%  { border-radius: 55% 45% 62% 38% / 42% 58% 45% 55%; transform: translateY(-6px) rotate(1deg); }
  45%  { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }
  60%  { border-radius: 62% 38% 50% 50% / 48% 62% 38% 52%; transform: translateY(-3px) rotate(-1deg); }
  75%  { border-radius: 50% 50% 38% 62% / 60% 42% 58% 40%; }
  100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: translateY(0px) rotate(0deg); }
}

/* Kreis 3 (Zielgruppen — --md): Kleine, schnelle Wellen */
@keyframes waterWave2 {
  0%   { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translateY(0px); }
  20%  { border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; transform: translateY(-8px); }
  40%  { border-radius: 48% 52% 58% 42% / 52% 46% 54% 48%; transform: translateY(-4px); }
  60%  { border-radius: 56% 44% 46% 54% / 44% 56% 48% 52%; transform: translateY(-10px); }
  80%  { border-radius: 44% 56% 54% 46% / 56% 42% 52% 48%; transform: translateY(-2px); }
  100% { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translateY(0px); }
}

/* Kreis 4 (Budget — --lg): Ruhiges, tiefes Wasser */
@keyframes waterWave3 {
  0%   { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: translateY(0px) scale(1); }
  25%  { border-radius: 58% 42% 56% 44% / 44% 58% 42% 56%; transform: translateY(-5px) scale(1.01); }
  50%  { border-radius: 44% 56% 42% 58% / 56% 44% 58% 42%; transform: translateY(-9px) scale(1); }
  75%  { border-radius: 52% 48% 58% 42% / 42% 52% 48% 58%; transform: translateY(-4px) scale(0.99); }
  100% { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: translateY(0px) scale(1); }
}

/* Kreis 1 (Zielbild — --lg): Organisch, unregelmässig */
@keyframes waterWave4 {
  0%   { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: translateY(0px) rotate(0deg); }
  10%  { border-radius: 52% 48% 44% 56% / 58% 48% 52% 42%; }
  25%  { border-radius: 38% 62% 60% 40% / 52% 38% 62% 48%; transform: translateY(-7px) rotate(-1.5deg); }
  40%  { border-radius: 56% 44% 38% 62% / 44% 56% 46% 54%; }
  55%  { border-radius: 44% 56% 52% 48% / 60% 40% 56% 44%; transform: translateY(-4px) rotate(1deg); }
  70%  { border-radius: 60% 40% 46% 54% / 42% 60% 44% 56%; }
  85%  { border-radius: 48% 52% 62% 38% / 54% 46% 40% 60%; transform: translateY(-11px) rotate(-0.5deg); }
  100% { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: translateY(0px) rotate(0deg); }
}

.sc-setup-circle-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--sc-white);
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.7;
}

.sc-setup-circle-title {
  font-size: clamp(13px, 2vw, 50px);
  font-weight: 900;
  color: var(--sc-white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.sc-setup-circle-text {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  color: var(--sc-white);
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}

/* ══════════════════════════════════════
   3. TEAM
══════════════════════════════════════ */
.sc-team {
  background: var(--sc-blue);
  padding: var(--sc-pad-y) var(--sc-pad-x);
  box-sizing: border-box;
}

.sc-team-inner {
  max-width: var(--sc-max-w);
  margin: 0 auto;
  text-align: center;
}

.sc-team-title {
  font-size: var(--sc-fs-h2);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--sc-white);
  margin: 0 0 var(--sc-title-mb) 0;
}

.sc-team-subtitle {
  font-size: var(--sc-fs-body);
  font-weight: 400;
  color: var(--sc-white);
  line-height: 1.6;
  margin: 0 auto var(--sc-sub-mb) auto;
  max-width: var(--sc-max-w-text);
}

.sc-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sc-gap);
}

.sc-team-card {
  background: var(--sc-white);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

.sc-team-tag {
  font-size: var(--sc-fs-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  background: var(--sc-blue);
  color: var(--sc-white);
}

.sc-team-card-title {
  font-size: var(--sc-fs-h3);
  font-weight: 900;
  color: var(--sc-black);
  letter-spacing: 0em;
  line-height: 1.2;
  margin: 0;
}

.sc-team-card-text {
  font-size: var(--sc-fs-small);
  font-weight: 400;
  color: var(--sc-black);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════
   4. EXECUTION
══════════════════════════════════════ */
.sc-execution {
  background: var(--sc-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--sc-pad-y) var(--sc-pad-x);
  position: relative;
  box-sizing: border-box;
}

.sc-execution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
  z-index: 1;
}

.sc-execution-inner {
  position: relative;
  z-index: 2;
  max-width: var(--sc-max-w);
  margin: 0 auto;
  text-align: center;
}

.sc-execution-title {
  font-size: var(--sc-fs-h2);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--sc-white);
  margin: 0 0 var(--sc-title-mb) 0;
}

.sc-execution-subtitle {
  font-size: var(--sc-fs-body);
  font-weight: 400;
  color: var(--sc-white);
  line-height: 1.6;
  margin: 0 auto var(--sc-sub-mb) auto;
  max-width: var(--sc-max-w-text);
}

.sc-execution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sc-gap);
  width: 100%;
}

.sc-execution-card {
  background: var(--sc-white);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  text-align: left;
}

.sc-execution-card-title {
  font-size: var(--sc-fs-h3);
  font-weight: 900;
  color: var(--sc-black);
  letter-spacing: 0em;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.sc-exec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-exec-list li {
  font-size: var(--sc-fs-small);
  font-weight: 400;
  color: var(--sc-black);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.sc-exec-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sc-blue);
  font-weight: 700;
}

/* ══════════════════════════════════════
   5. IMPACT
══════════════════════════════════════ */
.sc-impact {
  background: var(--sc-grey);
  padding: var(--sc-pad-y) var(--sc-pad-x);
}

.sc-impact-inner {
  max-width: var(--sc-max-w);
  margin: 0 auto;
  text-align: center;
}

.sc-impact-title {
  font-size: var(--sc-fs-h2);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--sc-black);
  margin: 0 0 var(--sc-title-mb) 0;
}

.sc-impact-subtitle {
  font-size: var(--sc-fs-body);
  font-weight: 400;
  color: var(--sc-black);
  line-height: 1.6;
  margin: 0 auto var(--sc-sub-mb) auto;
  max-width: var(--sc-max-w-text);
}

.sc-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
}

.sc-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sc-impact-circle {
  width: clamp(88px, 9vw, 120px);
  height: clamp(88px, 9vw, 120px);
  background: var(--sc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
  will-change: border-radius, transform;
}

/* 4 Kreise — je eigener Wassercharakter */
.sc-impact-item:nth-child(1) .sc-impact-circle {
  animation: impactWater1 11s ease-in-out infinite;
  border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%;
}
.sc-impact-item:nth-child(2) .sc-impact-circle {
  animation: impactWater2 8s ease-in-out infinite;
  border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%;
}
.sc-impact-item:nth-child(3) .sc-impact-circle {
  animation: impactWater3 14s ease-in-out infinite;
  border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%;
}
.sc-impact-item:nth-child(4) .sc-impact-circle {
  animation: impactWater4 9s ease-in-out infinite;
  border-radius: 56% 44% 46% 54% / 44% 56% 52% 48%;
}

/* ─── Impact Wasser-Keyframes ─── */

/* 1 — organisch, leicht rotierend */
@keyframes impactWater1 {
  0%   { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: rotate(0deg); }
  10%  { border-radius: 52% 48% 44% 56% / 58% 48% 52% 42%; }
  25%  { border-radius: 38% 62% 60% 40% / 52% 38% 62% 48%; transform: translateY(-6px) rotate(-1.5deg); }
  40%  { border-radius: 56% 44% 38% 62% / 44% 56% 46% 54%; }
  55%  { border-radius: 44% 56% 52% 48% / 60% 40% 56% 44%; transform: translateY(-3px) rotate(1deg); }
  70%  { border-radius: 60% 40% 46% 54% / 42% 60% 44% 56%; }
  85%  { border-radius: 48% 52% 62% 38% / 54% 46% 40% 60%; transform: translateY(-8px) rotate(-0.5deg); }
  100% { border-radius: 64% 36% 58% 42% / 46% 62% 38% 54%; transform: rotate(0deg); }
}

/* 2 — schnelle kleine Wellen */
@keyframes impactWater2 {
  0%   { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translateY(0); }
  20%  { border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; transform: translateY(-7px); }
  40%  { border-radius: 48% 52% 58% 42% / 52% 46% 54% 48%; transform: translateY(-3px); }
  60%  { border-radius: 56% 44% 46% 54% / 44% 56% 48% 52%; transform: translateY(-9px); }
  80%  { border-radius: 44% 56% 54% 46% / 56% 42% 52% 48%; transform: translateY(-2px); }
  100% { border-radius: 42% 58% 52% 48% / 58% 44% 56% 42%; transform: translateY(0); }
}

/* 3 — ruhig, tief, Scale-Atmung */
@keyframes impactWater3 {
  0%   { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: scale(1); }
  25%  { border-radius: 58% 42% 56% 44% / 44% 58% 42% 56%; transform: translateY(-5px) scale(1.02); }
  50%  { border-radius: 44% 56% 42% 58% / 56% 44% 58% 42%; transform: translateY(-9px) scale(1); }
  75%  { border-radius: 52% 48% 58% 42% / 42% 52% 48% 58%; transform: translateY(-4px) scale(0.98); }
  100% { border-radius: 50% 50% 48% 52% / 52% 50% 50% 48%; transform: scale(1); }
}

/* 4 — wellig, mittelschnell */
@keyframes impactWater4 {
  0%   { border-radius: 56% 44% 46% 54% / 44% 56% 52% 48%; transform: translateY(0) rotate(0deg); }
  15%  { border-radius: 44% 56% 58% 42% / 56% 44% 46% 54%; }
  30%  { border-radius: 60% 40% 50% 50% / 48% 60% 40% 52%; transform: translateY(-8px) rotate(1deg); }
  50%  { border-radius: 46% 54% 42% 58% / 58% 46% 56% 44%; }
  65%  { border-radius: 54% 46% 60% 40% / 40% 54% 48% 52%; transform: translateY(-4px) rotate(-1deg); }
  80%  { border-radius: 42% 58% 48% 52% / 52% 42% 54% 46%; }
  100% { border-radius: 56% 44% 46% 54% / 44% 56% 52% 48%; transform: translateY(0) rotate(0deg); }
}

.sc-impact-icon {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--sc-white);
  line-height: 1;
}

.sc-impact-label {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  color: var(--sc-black);
  letter-spacing: 0em;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.sc-impact-text {
  font-size: var(--sc-fs-small);
  font-weight: 400;
  color: var(--sc-black);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ══════════════════════════════════════
   6. CTA
══════════════════════════════════════ */
.sc-cta {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}

.sc-cta-inner {
  position: relative;
  z-index: 2;
  padding: var(--sc-pad-y) var(--sc-pad-x);
  max-width: var(--sc-max-w);
  width: 100%;
}

.sc-cta-headline {
  font-size: var(--sc-fs-display);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--sc-white);
  margin: 0 0 20px 0;
}

.sc-cta-text {
  font-size: var(--sc-fs-body);
  font-weight: 400;
  color: var(--sc-white);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: var(--sc-max-w-text);
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile
   Alle SC-Sections ≤ 768px
══════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --sc-pad-x:    clamp(20px, 5vw, 32px);
    --sc-pad-y:    clamp(48px, 10vw, 80px);
    --sc-gap:      16px;
    --sc-title-mb: 14px;
    --sc-sub-mb:   36px;
  }

  /* ── 1. HERO ── */
  .sc-hero {
    align-items: flex-end;
    background-position: center top;
  }

  .sc-hero-inner {
    padding: var(--sc-pad-y) var(--sc-pad-x);
    max-width: 100%;
  }

  .sc-headline {
    font-size: clamp(34px, 10vw, 52px);
    margin-bottom: 14px;
  }

  .sc-subheadline {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  /* ── 2. SETUP ── */
  .sc-setup {
    padding: var(--sc-pad-y) 0;
  }

  .sc-setup-inner {
    padding: 0 var(--sc-pad-x);
  }

  .sc-setup-circles {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 16px;
  }

  .sc-setup-circle--md,
  .sc-setup-circle--lg,
  .sc-setup-circle--xl {
    width: 90%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .sc-setup-circle {
    padding: clamp(14px, 4.5vw, 22px);
    gap: 7px;
  }

  .sc-setup-circle-num    { font-size: 11px; }
  .sc-setup-circle-title  { font-size: clamp(11px, 3.2vw, 16px); }
  .sc-setup-circle-text   { font-size: clamp(9px, 2.5vw, 12px); }

  /* ── 3. TEAM ── */
  .sc-team-grid {
    grid-template-columns: 1fr;
  }

  .sc-team-card {
    padding: 28px 24px;
  }

  /* ── 4. EXECUTION ── */
  .sc-execution::before {
    background: rgba(0,0,0,.65);
  }

  .sc-execution-grid {
    grid-template-columns: 1fr;
  }

  .sc-execution-card {
    padding: 28px 24px;
  }

  /* ── 5. IMPACT ── */
  .sc-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 6vw, 40px);
  }

  .sc-impact-circle {
    width: clamp(72px, 18vw, 96px);
    height: clamp(72px, 18vw, 96px);
  }

  /* ── 6. CTA ── */
  .sc-cta {
    align-items: flex-end;
    background-position: center top;
  }

  .sc-cta::before {
    background: rgba(0,0,0,.65);
  }

  .sc-cta-inner {
    max-width: 100%;
  }

  .sc-cta-headline {
    font-size: clamp(34px, 10vw, 52px);
    margin-bottom: 14px;
  }

  .sc-cta-text {
    font-size: 15px;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .sc-button-neon {
    display: block;
    text-align: center;
    max-width: 360px;
    font-size: 15px;
    padding: 14px 28px;
    white-space: normal;
  }
}

/* ── Extra Small ≤ 390px ── */
@media (max-width: 390px) {
  .sc-setup-circle--md,
  .sc-setup-circle--lg,
  .sc-setup-circle--xl {
    width: 95%;
  }

  .sc-setup-circle-title  { font-size: 10px; }
  .sc-setup-circle-text   { display: none; }

  .sc-impact-grid {
    gap: 20px;
  }

  .sc-team-card,
  .sc-execution-card {
    padding: 24px 20px;
  }
}

/* ═══════════════════════════════════════
   TYPOGRAFIE SECTION
   3 Akte — Scroll-gesteuert
   ═══════════════════════════════════════ */

.typo-section {
    width: 100%;
    height: 400vh; /* 4× — extra Puffer für langsames Scrollen */
    position: relative;
}

/* ─── Sticky Viewport ─── */
.typo-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ─── Akt-Basis — alle übereinander, absolut ─── */
.typo-akt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    will-change: transform;
    /* Akt 1 sichtbar, 2 & 3 warten unten */
}

.typo-akt-1 { transform: translateY(0);    z-index: 1; }

/* Split-Hälften — versetzt animiert via JS */
.typo-akt-1 .typo-half-left,
.typo-akt-1 .typo-half-right,
.typo-akt-3 .typo-half-left,
.typo-akt-3 .typo-half-right {
    will-change: transform;
}

/* Akt 1 rechte Hälfte — kein Versatz */
.typo-akt-1 .typo-half-right {
    transform: translateY(0);
}

/* ─── Split Layout ─── */
.typo-akt-1,
.typo-akt-3 {
    display: flex;
    height: 100vh;
}

.typo-akt-3 {
    transform: translateY(100%);
    z-index: 3;
    overflow: hidden;
}

.typo-half {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* ─── Fullscreen ─── */
.typo-akt-2 {
    transform: translateY(100%);
    z-index: 2;
    height: 100vh;
    background: transparent;
}

.typo-full {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* ─── Farben ─── */
.typo-bg-black { background-color: var(--black); }
.typo-bg-white { background-color: var(--white); }
.typo-bg-blue  { background-color: var(--black); }

/* Akt 2 — transparent, Akt 1 scheint durch */
.typo-akt-2 .typo-full {
    background: transparent !important;
}

/* Akt 3 — komplett transparent, Akt 2 scheint durch */
.typo-akt-3 .typo-half-left,
.typo-akt-3 .typo-half-right {
    background: transparent !important;
}

/* Akt 3 Schrift — schwarz auf transparentem Grund */
.typo-akt-3 .typo-staatliches-left {
    color: var(--blue);
}
.typo-akt-3 .typo-staatliches-right {
    color: var(--blue);
}

/* ─── Inner Container — shared padding ─── */
.typo-left-inner,
.typo-right-inner,
.typo-full-inner {
    padding: clamp(30px, 4vw, 70px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ══════════════════════════════════════
   AKT 1 — Climate Crisis + Jacquard
══════════════════════════════════════ */

/* Links: Climate Crisis — 45° gedreht */
.typo-climate-text {
    font-family: 'Climate Crisis', sans-serif;
    font-size: clamp(48px, 8vw, 180px);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.01em;
    display: block;
    white-space: normal;
    word-break: break-word;
    hyphens: none;
    width: 100%;
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
    transition: opacity 1s ease, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.typo-akt-1.visible .typo-climate-text {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Rechts: Jacquard 12 — Typewriter */
.typo-right-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    gap: 0;
}

.typo-jacquard-text {
    font-family: 'Tiny5', monospace;
    font-size: clamp(24px, 3.5vw, 30px);
    color: var(--pink);
    line-height: 1.6;
    letter-spacing: 0.04em;
    word-spacing: 0.35em;
    text-align: center;
    margin: 0;
    min-height: 4em;
    position: relative;
}

/* Glitch Effekt */
.typo-jacquard-text.glitch {
    animation: typoGlitch 0.15s steps(2) forwards;
}

@keyframes typoGlitch {
    0%   { transform: translate(0); filter: none; }
    20%  { transform: translate(-4px, 2px); filter: hue-rotate(90deg) brightness(1.5); }
    40%  { transform: translate(4px, -2px); filter: hue-rotate(180deg); clip-path: inset(20% 0 30% 0); }
    60%  { transform: translate(-2px, 4px); filter: hue-rotate(270deg) brightness(0.8); clip-path: inset(40% 0 10% 0); }
    80%  { transform: translate(3px, -1px); filter: brightness(2); }
    100% { transform: translate(0); filter: none; clip-path: none; }
}

.typo-cursor {
    font-family: 'Tiny5', monospace;
    font-size: clamp(24px, 3.5vw, 60px);
    color: var(--pink);
    animation: typoBlink 0.7s steps(1) infinite;
    display: inline-block;
    margin-left: 2px;
}

@keyframes typoBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ══════════════════════════════════════
   AKT 2 — Unbounded Fullscreen
══════════════════════════════════════ */

/* ─── Akt-2 full-inner override ─── */
.typo-full-inner {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.typo-unbounded-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(64px, 13vw, 150px);
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -0.03em;
    line-height: 1.0;
    margin: 0 0 clamp(30px, 4vw, 60px) 0;
}

/* Jede Zeile einzeln — via span.typo-word */
.typo-word {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.typo-word:nth-child(1) { transition-delay: 0.05s; }
.typo-word:nth-child(2) { transition-delay: 0.22s; }
.typo-word:nth-child(3) { transition-delay: 0.40s; }

.typo-akt-2.visible .typo-word {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   AKT 3 — Staatliches Split
══════════════════════════════════════ */

/* Links: schwarz auf weiss — 45° */
.typo-staatliches-left {
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 9vw, 160px);
    color: var(--blue);
    line-height: 0.9;
    letter-spacing: 0.02em;
    display: block;
    transform: rotate(-45deg);
    transform-origin: center center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.7s ease 0.1s;
}

.typo-akt-3.visible .typo-staatliches-left {
    opacity: 1;
}

.typo-staatliches-right {
    font-family: 'Anton', sans-serif;
    font-size: clamp(100px, 18vw, 180px);
    color: var(--blue);
    line-height: 0.85;
    letter-spacing: -0.01em;
    display: block;
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0;
    transition: opacity 0.7s ease 0.3s;
}

.typo-akt-3.visible .typo-staatliches-right {
    opacity: 1;
}

/* ─── Mobile ─── */
@media screen and (max-width: 768px) {

    /* ─── Akt 1 & 3: Splits werden gestapelt ─── */
    .typo-akt-1,
    .typo-akt-3 {
        flex-direction: column;
        height: 100vh;
    }

    /* Jede Hälfte nimmt genau 50vh */
    .typo-half {
        width: 100%;
        height: 50vh;
        min-height: unset;
    }

    /* ─── Akt 1 Links: Climate Crisis ─── */
    .typo-climate-text {
        font-size: clamp(38px, 12vw, 80px);
        line-height: 0.95;
        transform: translateX(-60px) scale(0.95);
    }

    .typo-akt-1.visible .typo-climate-text {
        transform: translateX(0) scale(1);
    }

    /* ─── Akt 1 Rechts: Typewriter ─── */
    .typo-jacquard-text {
        font-size: clamp(14px, 4.5vw, 26px);
        min-height: unset;
    }

    .typo-cursor {
        font-size: clamp(14px, 4.5vw, 26px);
    }

    /* ─── Akt 2: Fullscreen ─── */
    .typo-unbounded-title {
        font-size: clamp(36px, 13vw, 72px);
        letter-spacing: -0.04em;
    }

    .typo-full-inner {
        padding: clamp(24px, 6vw, 48px);
    }

    /* ─── Akt 3: Split transparent ─── */
    .typo-staatliches-left {
        font-size: clamp(44px, 12vw, 90px);
        transform: rotate(-45deg);
    }

    .typo-akt-3.visible .typo-staatliches-left {
        transform: rotate(-45deg) scale(1);
    }

    .typo-staatliches-right {
        font-size: clamp(72px, 20vw, 140px);
        transform: rotate(-45deg) scale(0.8);
    }

    .typo-akt-3.visible .typo-staatliches-right {
        transform: rotate(-45deg) scale(1);
    }

    /* Padding reduzieren auf Mobile */
    .typo-left-inner,
    .typo-right-inner {
        padding: clamp(20px, 5vw, 40px);
    }
}