/* ====== Farb- und Design-Variablen ====== */
:root {
  --darkblue: #0f1f27;
  --darkblue-80: rgba(15, 31, 39, 0.8);
  --zp-green: #203c46;
  --green: #b2c96f;
  --green-dark: #6f843d;
  --accent: #58e6c2;
  --highlight: #ff6f91;
  --highlight2: #d99f40;
  --gold-1: #9e5f02;
  --gold-2: #d99f40;
  --gold-3: #f6b218;
  --cd-green-1: #6fb969;
  --cd-green-2: #c6d86b;
  --cd-accent: #d99f40;

  /* Roadmap: einheitliche Medienhöhe (kann via clamp dynamisch werden) */
  --ticket-media-h: 136px;
}

@media (max-width: 767px){
  :root { --ticket-media-h: 112px; }
}

/* Basis-Schrift */
body { font-family: 'Roboto', sans-serif; -webkit-font-smoothing: antialiased; }


/* Navigation Links */
nav {
  font-size: 16px;
  font-weight: 400;
  z-index: 100001;
}

.global-nav {
  background: var(--zp-green);
  transition: background 0.2s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100001;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.global-nav.is-scrolled {
  background: rgba(32, 60, 70, 0.8);
}

.global-nav .max-w-6xl {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.global-nav .flex {
  display: flex;
}

.global-nav .items-center {
  align-items: center;
}

.global-nav .justify-between {
  justify-content: space-between;
}

.global-nav .text-base {
  font-size: 16px;
}

.global-nav .font-normal {
  font-weight: 400;
}

.global-nav .h-7 { height: 1.75rem; }
.global-nav .h-8 { height: 2rem; }
.global-nav .h-9 { height: 2.25rem; }
.global-nav .w-auto { width: auto; }

.global-nav .hidden {
  display: none;
}

.global-nav .md\:hidden {
  display: flex;
}

.global-nav .md\:flex {
  display: none;
}

@media (min-width: 768px) {
  .global-nav .md\:hidden {
    display: none;
  }
  .global-nav .md\:flex {
    display: flex;
  }
}

.global-nav .nav-contact {
  color: #203C46;
  background: var(--green);
  padding: 0.5rem 1.5rem;
  border-radius: 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.global-nav .nav-contact:hover {
  background: #9bb85d;
}

.nav-link {
  color: white;
  transition: color 0.2s ease;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active { color: var(--green); }

nav a {
  font-weight: 400;
  color: inherit;
  text-decoration: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 19, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 100005;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  min-height: 100%;
  background: #0f1f27;
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 100006;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1.2rem;
  border: 0;
  text-decoration: none;
  display: grid;
  place-items: center;
}

.mobile-menu__toggle {
  width: 32px;
  height: 24px;
  background: transparent;
  border: 0;
  padding: 0;
  appearance: none;
  display: grid;
  place-items: center;
  gap: 3px;
  position: relative;
  z-index: 100002;
  pointer-events: auto;
}

.mobile-menu__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.mobile-menu__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu__group {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.75rem;
}

.mobile-menu__group summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-menu__group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__links {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-menu__links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.mobile-menu__links a:visited {
  color: #ffffff;
}

.mobile-menu__links a:hover {
  opacity: 1;
  color: var(--green);
}

.mobile-menu__contact {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--green);
  color: #203C46;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

/* Team skeleton */
.team-skeleton {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-skeleton-card {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(255,255,255,0.08) 8%, rgba(255,255,255,0.18) 18%, rgba(255,255,255,0.08) 33%);
  background-size: 200% 100%;
  animation: team-shimmer 1.2s ease-in-out infinite;
}

@keyframes team-shimmer {
  to { background-position: -200% 0; }
}

/* Newsletter */
.newsletter-page {
  background: #0f1f27;
  color: #ffffff;
}

.newsletter-hero {
  background: #e6f1f1 url('https://zutt.ch/wp-content/uploads/2023/02/Newsletter_mockup_HG-e1676278838663.png') center/cover no-repeat;
  padding: 72px 0 96px;
}

.newsletter-hero__content {
  max-width: 720px;
  text-align: center;
  color: #203c46;
}

.newsletter-kicker {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
}

.newsletter-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter-lead {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
}

.newsletter-note {
  margin-top: 16px;
  font-size: 16px;
  color: #203c46;
}

.newsletter-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.newsletter-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.newsletter-benefits__title {
  color: #007479;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #203c46;
  font-size: 18px;
}

.newsletter-benefits__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
}

.newsletter-benefits__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  background: url('https://zutt.ch/wp-content/uploads/2023/02/Element-4-e1675775103516.png') center/contain no-repeat;
}

.newsletter-form-section {
  color: #203c46;
}

.newsletter-form-title {
  text-align: center;
  color: #007479;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.newsletter-form {
  display: grid;
  gap: 20px;
}

.newsletter-fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.newsletter-fields label,
.newsletter-consent {
  display: grid;
  gap: 8px;
  font-size: 16px;
  color: #203c46;
}

.newsletter-fields input,
.newsletter-fields select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(32,60,70,0.2);
  background: #ffffff;
  color: #203c46;
}

.newsletter-fields input::placeholder {
  color: rgba(32,60,70,0.5);
}

.newsletter-consent {
  font-size: 14px;
  color: rgba(32,60,70,0.85);
}

.newsletter-consent input {
  margin-right: 10px;
}

.newsletter-actions {
  display: flex;
  justify-content: center;
}

/* Reveal-Animation */
.reveal { opacity: 0; transform: translateY(24px); transition: all .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Glas-Effekt */
.glass { backdrop-filter: blur(14px); background: rgba(255,255,255,.06); }

/* Verlaufstext */
.grad-text {
  background: linear-gradient(90deg, #F2C861, #D9A441, #9C7A1F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: hue 8s linear infinite; background-size: 250% 250%;
}
@media (max-width: 1023px){
  .grad-text {
    background: linear-gradient(90deg, #FFD166, #E6B34A, #9C7A1F);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: hue 8s linear infinite; background-size: 250% 250%;
  }
}
@keyframes hue {
  0% {background-position:0% 50%}
  50% {background-position:100% 50%}
  100% {background-position:0% 50%}
}

/* Maus-Glow */
#blob {
  position: fixed; top: 0; left: 0; width: 300px; height: 300px;
  pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(178,201,111,.35), rgba(88,230,194,.08) 70%);
  filter: blur(60px); mix-blend-mode: screen; z-index: 0;
}

/* Abgerundete Buttons/Links */
button, a[class*="px-"] { border-radius: 32px !important; }

/* Icons weiß färben */
.icon-white { filter: brightness(0) invert(1); }

/* ===== Before/After Slider ===== */
.ba { position: relative; display: inline-block; height: var(--ba-h, 420px); aspect-ratio: var(--ba-ar, 16/9); max-width: 100%; cursor: grab; touch-action: none; overflow: hidden; border-radius: 0.75rem; vertical-align: top; }
.ba:active { cursor: grabbing; }
.ba__layer { position: absolute; inset: 0; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); -webkit-clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__handle { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 42px; height: 42px; border-radius: 999px; border: 2px solid #fff; background: transparent; box-shadow: 0 0 10px rgba(0,0,0,.6); z-index: 20; display: inline-flex; align-items: center; justify-content: center; animation: ba-pulse 1.8s ease-out infinite; }
@keyframes ba-pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.4), 0 0 10px rgba(0,0,0,.6);} 70% { box-shadow: 0 0 0 16px rgba(255,255,255,0), 0 0 10px rgba(0,0,0,.6);} 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 0 10px rgba(0,0,0,.6);} }
.ba__handle::before, .ba__handle::after { content: ""; position: absolute; left: 50%; width: 2px; background: #fff; z-index: -1; }
.ba__handle::before { bottom: calc(50% + 22px); height: 9999px; margin-left: -1px; box-shadow: 0 0 10px rgba(0,0,0,.6); }
.ba__handle::after { top: calc(50% + 22px); height: 9999px; margin-left: -1px; box-shadow: 0 0 5px rgba(0,0,0,.5); }
.ba__arrow { position: absolute; top: 50%; margin-top: -6px; width: 0; height: 0; border: 6px inset transparent; }
.ba__arrow--left { border-right: 6px solid #fff; left: 50%; margin-left: -17px; }
.ba__arrow--right { border-left: 6px solid #fff; right: 50%; margin-right: -17px; }
.ba__label { position: absolute; top: .75rem; padding: 2px 10px; font-size: .875rem; background: rgba(18,18,18,.85); color: #fff; border-radius: .25rem; pointer-events: none; }
.ba__label--before { left: .75rem; } .ba__label--after { right: .75rem; }
@media (prefers-reduced-motion: reduce) { .ba__handle { transition: none !important; } }

/* ===== Logo-Marquee ===== */
.marquee { display:flex; overflow:hidden; user-select:none; gap:0; }
.marquee-track {
  display:flex;
  flex-shrink:0;
  gap:3rem;
  align-items:center;
  padding-right: 3rem;
  animation: scroll 60s linear infinite;
}
.marquee-track img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-100%)} }

/* ===== Skeleton Loader ===== */
@keyframes zutt-shimmer { 0% { background-position: -200% 0;} 100% { background-position: 200% 0;} }
.skeleton { position: relative; overflow: hidden; }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%); background-size: 200% 100%; animation: zutt-shimmer 1.2s linear infinite; pointer-events: none; }
.skel-card { border-radius: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); overflow: hidden; }
.skel-img  { height: 11rem; background: rgba(255,255,255,.06); }
.skel-body { padding: 1.25rem; }
.skel-line { height: .9rem; margin-top: .5rem; border-radius: .5rem; background: rgba(255,255,255,.08); }
.skel-line.thin { height: .7rem; opacity: .8; }

/* ===== News (horizontal scroll) ===== */
.news-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-scroll::-webkit-scrollbar {
  display: none;
}

.news-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: stretch;
  padding-bottom: .5rem;
}

.news-track > article {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.news-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--green);
  color: #ffffff;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}

.news-nav-btn:hover {
  background: rgba(178, 201, 111, 0.18);
  transform: translateY(-1px);
}

.news-nav-btn:active {
  transform: translateY(0);
}

/* Cases filter chips */
.case-filter-chip.is-active {
  background: var(--green);
  color: #203c46;
  border-color: rgba(32, 60, 70, 0.35);
}

.case-filter-icon {
  width: auto;
  height: 36px;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.case-filter-chip.is-active .case-filter-icon {
  filter: none;
}

/* ==================== CONTACT PAGE ==================== */
.contact-page .contact-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  overflow: visible;
}


.contact-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 720px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-page .contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-page .contact-field label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-page .contact-field input,
.contact-page .contact-field select,
.contact-page .contact-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 15, 19, 0.65);
  color: #fff;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-page .contact-field input:focus,
.contact-page .contact-field select:focus,
.contact-page .contact-field textarea:focus {
  border-color: rgba(178, 201, 111, 0.7);
  background: rgba(8, 15, 19, 0.9);
}

.contact-page .contact-field--hidden {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-page .contact-turnstile {
  margin: 18px 0 10px;
  display: flex;
  justify-content: center;
}

.contact-page .contact-actions {
  margin-top: 6px;
  text-align: center;
}

.contact-page .contact-alert {
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.contact-page .contact-alert--success {
  border-color: rgba(178, 201, 111, 0.6);
  color: #f1f6dc;
}

.contact-page .contact-alert--error {
  border-color: rgba(255, 120, 120, 0.45);
  color: #ffd7d7;
}

/* CTA buttons (mobile full-width) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-btn {
    width: auto;
  }
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: #f3f3f3;
  color: var(--darkblue);
  padding: 64px 24px 0;
  font-size: 16px;
  font-weight: 400;
}

.footer-inner,
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.footer-col h4 {
  font-weight: 700;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col a:visited {
  color: inherit;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-lang {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-brand {
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-contact {
  margin: 8px 0 0;
  color: var(--darkblue-80);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 8px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(15, 31, 39, 0.18);
  padding: 18px 24px 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--darkblue);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.footer-social__icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* ==================== TEAM PAGE ==================== */
.team-page .team-section .teamloader {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-page .team-section .teamholder {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.team-page .team-section .teamholder img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.team-page .team-section .teamholder h3,
.team-page .team-section .teamholder h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
}

.team-page .team-section .teamholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
}

.team-page .team-section .teamholder .zuttbutton {
  margin: 0;
  align-self: flex-start;
}

.team-page .team-section .teamholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 39, 0.65);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.team-page .team-section .teamholder .team-meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.team-page .team-section .teamholder .team-meta h3,
.team-page .team-section .teamholder .team-meta h4,
.team-page .team-section .teamholder .team-meta p {
  color: #ffffff;
  margin: 0;
}

.team-page .team-section .teamholder:hover::after,
.team-page .team-section .teamholder:hover .team-meta {
  opacity: 1;
}

.team-page .team-section .team-jobs {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-page .team-section .team-job-card {
  background: #1a2e38;
  color: #ffffff;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  aspect-ratio: 4 / 5;
  justify-content: center;
  text-align: center;
}

.team-page .team-section .team-job-card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.team-page .team-section .team-job-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.values-section {
  background: #ffffff;
  color: #203C46;
}

.values-section .slick .slide {
  padding: 10px 0 30px;
}

.values-section .values-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: left;
}

.values-section .values-slide img {
  width: 180px;
  height: auto;
  display: block;
}

.values-section .values-text {
  color: rgba(32, 60, 70, 0.9);
  font-size: 1.3rem;
  line-height: 1.4;
  max-width: 520px;
}

.values-section .slick-arrow {
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #203C46;
  box-shadow: none;
}

.values-section .slick-arrow:before {
  color: #203C46;
  font-size: 26px;
}

.values-section .slick-dots li button:before {
  color: rgba(32, 60, 70, 0.35);
}

.values-section .slick-dots li.slick-active button:before {
  color: #203C46;
}

.impressions-section .impressions-slider .slide img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  display: block;
}

.impressions-section .impressions-slider .slick-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.impressions-section .impressions-slider .slick-arrow:before {
  color: #ffffff;
  font-size: 18px;
}

.video-section .video-embed {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.video-section .video-embed video {
  width: 100%;
  height: 100%;
  display: block;
}


.team-page .mission-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.team-page .mission-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 25px rgba(88, 230, 194, 0.45)) drop-shadow(0 0 50px rgba(88, 230, 194, 0.25));
}

.team-page .mission-text {
  max-width: 640px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .team-page .mission-wrap {
    grid-template-columns: 1fr;
  }

  .team-page .mission-text {
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .team-page .team-section .teamloader {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-page .team-section .team-jobs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-page .team-section .teamloader {
    grid-template-columns: 1fr;
  }
  .team-page .team-section .team-jobs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .news-track > article { flex-basis: 80%; }
}

/* ===== Tangible Roadmap Styles ===== */

/* Stage-Tabs */
.stage-tab{
  display:flex; gap:.75rem; align-items:center;
  padding:.9rem 1rem; border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 24px rgba(0,0,0,.18) inset, 0 6px 18px rgba(0,0,0,.08);
}
.stage-dot{
  display:grid; place-items:center;
  width:72px; height:72px;               /* großzügige Dots */
  border-radius:999px;
  box-shadow:0 0 0 4px rgba(255,255,255,.06);
}
.stage-title{ font-weight:800; line-height:1.1; }
.stage-sub{ font-size:.8rem; opacity:.8; margin-top:2px; }

/* Tickets – Basis */
.ticket{
  position:relative; overflow:hidden; border-radius:20px;
  padding:1.1rem;
  background: linear-gradient(130deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.ticket:before{
  /* perforierte Ticket-Kante */
  content:""; position:absolute; right:96px; top:0; bottom:0; width:1px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.22) 0 6px, rgba(255,255,255,0) 6px 12px);
  opacity:.4;
}
.ticket:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 24px 50px rgba(0,0,0,.3);
}

/* Farbvarianten */
.ticket.a{ background: linear-gradient(160deg, rgba(178,201,111,.28), rgba(255,255,255,.04)); }
.ticket.b{ background: linear-gradient(160deg, rgba(88,230,194,.22), rgba(255,255,255,.04)); }
.ticket.c{ background: linear-gradient(160deg, rgba(255,111,145,.20), rgba(255,255,255,.04)); }

/* Ticket-Header / Inhalt */
.ticket-head{ display:flex; align-items:center; justify-content:flex-end; margin-bottom:.6rem; }
.badge{
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.25rem .55rem; font-size:.72rem; border-radius:999px;
  background: rgba(0,0,0,.25); border:1px solid rgba(255,255,255,.14); color: #fff;
}
.ticket-title{ font-weight:900; font-size:1.15rem; line-height:1.15; margin:.2rem 0 .35rem; }
.ticket-copy{ color:rgba(255,255,255,.92); }

/* Body-Grid 1/5 – 1/5 */
.ticket-body{
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2/3 Text | 1/3 Bild */
  gap: 1rem;
  align-items: start;               /* Startkanten bündig */
  margin-top: .65rem;
}

/* Bullet-Liste */
.ticket-points{
  margin-top:.0rem; display:grid; gap:.35rem;
  font-size:.92rem; color:rgba(255,255,255,.88);
}
.ticket-points li{
  position:relative; padding-left:1.25rem;
}
.ticket-points li:before{
  content:""; position:absolute; left:0; top:.5rem;
  width:.5rem; height:.5rem; border-radius:999px; background: currentColor; opacity:.55;
}

/* Medienbereich: feste Höhe, Cropping */
.ticket-media{
  height: var(--ticket-media-h);
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  background: rgba(255,255,255,.06);
}
.ticket-media img{
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}
.ticket:hover .ticket-media img{
  transform: scale(1.04);
  opacity: .98;
}

/* Subtile Entry-Animation (falls mit IO ergänzt) */
.ticket{ opacity:0; transform: translateY(16px); }
.ticket.appear{ opacity:1; transform:none; transition: all .6s cubic-bezier(.4,0,.2,1); }


/* (Optional) Reduzierte Motion */
@media (prefers-reduced-motion: reduce){
  .ticket, .ticket-media img{ transition: none !important; }
}


/* ==================== BENEFITS ==================== */
.benefits-section {
  position: relative;
  background: #ffffff;
  transition: background-color .6s ease;
  overflow: hidden;
}

/* ==================== ABOUT STACK ==================== */
.about-stack {
  position: relative;
  min-height: 520px;
}

.about-stack__img {
  position: absolute;
  width: 72%;
  max-width: 360px;
}

.about-stack__img--front {
  top: 0;
  left: 8%;
  z-index: 3;
}

.about-stack__img--mid {
  top: 140px;
  left: 30%;
  z-index: 2;
}

.about-stack__img--back {
  top: 300px;
  left: 12%;
  z-index: 1;
}

@media (max-width: 1023px) {
  .about-stack {
    min-height: 460px;
  }

  .about-stack__img {
    width: 78%;
    max-width: 340px;
  }

  .about-stack__img--mid { top: 120px; left: 22%; }
  .about-stack__img--back { top: 260px; left: 8%; }
}

@media (max-width: 767px) {
  .about-stack {
    min-height: 420px;
  }

  .about-stack__img {
    position: absolute;
    width: 88%;
    max-width: none;
  }

  .about-stack__img--front { top: 0; left: 6%; }
  .about-stack__img--mid { top: 120px; left: 16%; }
  .about-stack__img--back { top: 240px; left: 2%; }
}


.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, #0f1f27 0%, #0b1a23 50%, #0f1f27 100%);
  opacity: 1;
  transition: opacity .7s ease;
  z-index: 0;
}

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

.benefits-heading {
  color: #ffffff;
  transition: color .6s ease;
}

.benefits-section--light::before {
  opacity: 0;
}

.benefits-section--light .benefits-heading {
  color: var(--darkblue-80);
}

.benefit-card {
  --benefit-color: var(--green);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem 2.1rem 2.6rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(22, 44, 52, 0.08);
  box-shadow: 0 18px 35px rgba(15, 31, 39, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  min-height: 100%;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(15, 31, 39, 0.15);
}

.benefit-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: var(--green);
}

.benefit-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-symbol {
  width: 92px;
  height: 92px;
}

.benefit-dot {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--benefit-color) 32%, rgba(255,255,255,0.6));
  opacity: .9;
  filter: blur(0.2px);
}

.benefit-dot--xl {
  width: 88px;
  height: 88px;
  top: -16px;
  left: -12px;
}

.benefit-dot--sm {
  width: 34px;
  height: 34px;
  bottom: 2px;
  right: 6px;
  opacity: .65;
}

.benefit-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  color: var(--darkblue-80);
  text-align: center;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--benefit-color) 75%, #12232a);
  background: color-mix(in srgb, var(--benefit-color) 15%, rgba(83,104,112,0.08));
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--benefit-color) 45%, rgba(18,35,42,0.16));
}

.benefit-card h3 {
  font-size: clamp(1.55rem, 1.35rem + .5vw, 1.9rem);
  font-weight: 800;
  margin: 0;
  color: inherit;
}

.benefit-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: inherit;
}

.benefit-card--diff { --benefit-color: var(--green); }
.benefit-card--erlebnis { --benefit-color: var(--accent); }
.benefit-card--conv { --benefit-color: var(--highlight); }

@media (max-width: 1023px) {
  .benefit-card {
    padding: 2.1rem 1.9rem 2.4rem;
    border-radius: 22px;
  }

  .benefit-icon {
    width: auto;
    height: auto;
  }

  .benefit-symbol {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .benefit-card {
    padding: 1.9rem 1.6rem 2.2rem;
    border-radius: 20px;
  }

  .benefit-icon {
    width: auto;
    height: auto;
  }

  .benefit-symbol {
    width: 72px;
    height: 72px;
  }

  .benefit-tag {
    font-size: .72rem;
  }
}


/* ==================== NEURO-STRATA (modernes Styling, 12-Grid Platzierung) ==================== */
.strata *{ box-sizing:border-box; }

/* Stage-Bar */
.strata-stages{
  display:grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items:center; gap:1rem; margin-bottom:1.5rem;
}
.strata-stage{
  display:flex; align-items:center; gap:.85rem;
  justify-self:center;
  padding:.75rem 1rem; border-radius:14px;
  border:0px solid rgba(255,255,255,.1);
}
.strata-arrow{ color:rgba(255,255,255,.9); font-size:1.4rem; opacity:.85; display:grid; place-items:center; }
.strata-dot{ width:72px; height:72px; border-radius:999px; display:grid; place-items:center; box-shadow:0 0 0 4px rgba(255,255,255,.06); }
.strata-dot-icon{ width:60%; height:60%; object-fit:contain; }
.strata-stage-title{ font-weight:800; line-height:1.1; }
.strata-stage-sub{ font-size:.84rem; opacity:.8; margin-top:2px; }

.strata-body{
  position:relative;
}
.strata-body::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right,
      transparent calc(33.333% - 1px),
      rgba(255,255,255,.18) calc(33.333% - 1px),
      rgba(255,255,255,.18) calc(33.333% + 1px),
      transparent calc(33.333% + 1px),
      transparent calc(66.666% - 1px),
      rgba(255,255,255,.18) calc(66.666% - 1px),
      rgba(255,255,255,.18) calc(66.666% + 1px),
      transparent calc(66.666% + 1px)
    );
  pointer-events:none;
  z-index:0;
}
.strata-body > *{
  position:relative;
  z-index:1;
}

/* Canvas mit feinem Raster */
.strata-canvas{
  position:relative;
}

/* Pills (Chips) – neutrales Grundstyling */
.strata-pill{
  display:inline-flex; align-items:center; justify-content:center;
  width:100%;
  padding:.5rem 1rem; border-radius:999px;
  font-size: clamp(.9rem, .85rem + .15vw, 1rem);
  font-weight:600; color:#fff;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  transition: filter .2s ease, transform .2s ease, border-color .2s ease;
}
.strata-pill--with-tags{
  flex-direction:column; align-items:center;
  gap:.25rem; text-align:center;
}
.strata-pill-tags{
  font-size:.8rem; font-weight:500; opacity:.85; line-height:1.35;
}
.strata-pill:hover{ filter:brightness(1.06); transform: translateY(-1px); border-color: rgba(255,255,255,.28); }

/* Farben NUR nach Ebene */
.strata--diff     { background: linear-gradient(160deg, rgba(178,201,111,.30), rgba(255,255,255,.05)); }
.strata--erlebnis { background: linear-gradient(160deg, rgba(88,230,194,.25),  rgba(255,255,255,.05)); }
.strata--conv     { background: linear-gradient(160deg, rgba(255,111,145,.28), rgba(255,255,255,.05)); }

/* Responsive: Raster enger auf Mobile */
@media (max-width: 768px){
  .strata-stages{ grid-template-columns: 1fr; gap:.7rem; }
  .strata-arrow{ display:none; }
  .strata-canvas{ background: color-mix(in srgb, var(--darkblue) 80%, transparent); }
  .strata-body::before{ content:none; }
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
/* ==================== ANGEBOT SPLIT EXPERIENCE ==================== */
.angebot-section{
  --angebot-left: radial-gradient(circle at 18% 18%, rgba(148,217,228,0.35), transparent 60%);
  --angebot-right: radial-gradient(circle at 82% 18%, rgba(241,246,220,0.35), transparent 62%);
  --angebot-label-offset: clamp(2.4rem, 4vw, 3.6rem);
  --angebot-pane-padding: clamp(3rem, 4vw, 5.25rem);
  position:relative;
}

.angebot-stage{
  position:relative;
  width:100vw;
  margin-left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  height:clamp(520px, 88vh, 980px);
  min-height:clamp(520px, 88vh, 980px);
  box-sizing:border-box;
  transition:transform .4s ease;
}

.angebot-label-wrap{
  position:absolute;
  top:var(--angebot-label-offset);
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  pointer-events:none;
  z-index:3;
}

.angebot-stage:not([data-active-topic="split"]) .angebot-label-wrap{
  display:none;
}

.angebot-label{
  font-size:.78rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
}

.angebot-view--split{
  position:relative;
  display:flex;
  flex:1 1 auto;
  min-height:0;
  overflow:hidden;
}

.angebot-pane{
  flex:1 1 50%;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:0;
  overflow:hidden;
  color:#fff;
  isolation:isolate;
  cursor:pointer;
  transition:flex .8s cubic-bezier(.19,1,.22,1), transform .6s ease, filter .6s ease, opacity .4s ease;
}

.angebot-pane::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:linear-gradient(135deg, rgba(9,24,30,0.92), rgba(28,58,69,0.7));
}

.angebot-pane-overlay{
  position:absolute;
  inset:-15%;
  z-index:1;
  filter:blur(44px);
  opacity:.75;
  transition:opacity .5s ease;
  pointer-events:none;
}

.angebot-pane[data-topic="emotion"] .angebot-pane-overlay{
  background:
    radial-gradient(circle at top right, rgba(148,217,228,0.65), transparent 58%),
    radial-gradient(circle at 20% 30%, rgba(148,217,228,0.25), transparent 68%);
}

.angebot-pane[data-topic="neuro"] .angebot-pane-overlay{
  background:
    radial-gradient(circle at top left, rgba(241,246,220,0.55), transparent 58%),
    radial-gradient(circle at 80% 30%, rgba(241,246,220,0.25), transparent 68%);
}

.angebot-pane-summary{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:clamp(1.5rem, 2vw, 2.6rem);
  padding:calc(var(--angebot-pane-padding) + var(--angebot-label-offset)) var(--angebot-pane-padding) var(--angebot-pane-padding);
  height:100%;
  transition:opacity .45s ease;
}

.angebot-pane-inner{
  display:flex;
  flex-direction:column;
  gap:1.2rem;
}

.angebot-pane-eyebrow{
  font-size:.85rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.48);
}

.angebot-pane-title{
  font-size:clamp(2rem, 2rem + 1vw, 3.1rem);
  font-weight:800;
  line-height:1.05;
  max-width:14ch;
}

.angebot-pane-subtitle{font-size:clamp(1.05rem,.98rem + .35vw,1.3rem);color:rgba(233,245,255,0.82);max-width:30ch;}
.angebot-pane-action{margin-top:auto;align-self:flex-start;padding:.65rem 1.6rem;border-radius:999px;border:1px solid rgba(255,255,255,0.38);background:rgba(12,33,42,0.5);color:#fff;font-weight:600;font-size:.92rem;letter-spacing:.06em;text-transform:uppercase;transition:background .3s ease,border-color .3s ease,color .3s ease,transform .2s ease;}
.angebot-pane-action:hover{background:rgba(255,255,255,0.18);border-color:rgba(255,255,255,0.72);transform:translateY(-1px);}
.angebot-pane-footer{max-width:34ch;line-height:1.55;color:rgba(255,255,255,0.68);font-size:.92rem;margin-top:auto;}
.angebot-pane:focus-visible{outline:2px solid #f1f6dc;outline-offset:-4px;}
.angebot-pane:hover .angebot-pane-overlay,.angebot-pane:focus-visible .angebot-pane-overlay{opacity:1;}
.angebot-pane:hover,.angebot-pane:focus-visible{transform:scale(1.015);filter:brightness(1.08);}
.angebot-back-text{display:inline-flex;align-items:center;gap:.4rem;font-size:.85rem;color:rgba(255,255,255,0.72);background:transparent;border:0;padding:.35rem .65rem;border-radius:999px;letter-spacing:.05em;text-transform:uppercase;transition:background .25s ease,color .25s ease;cursor:pointer;}
.angebot-back-text span{font-size:.95rem;line-height:1;}
.angebot-back-text:hover{background:rgba(148,217,228,0.16);color:#fff;}
.angebot-detail{position:absolute;inset:0;z-index:3;display:flex;flex-direction:column;min-height:0;height:100%;padding:calc(var(--angebot-pane-padding) + .4rem);opacity:0;pointer-events:none;transition:opacity .45s ease;}
.angebot-detail[aria-hidden="true"]{visibility:hidden;}
.angebot-detail-header{display:flex;align-items:center;justify-content:flex-start;gap:.75rem;flex-wrap:wrap;margin-bottom:clamp(1.3rem,2.1vw,2.3rem);} .angebot-detail-path{font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,0.6);}
.angebot-detail-scroll{flex:1;min-height:0;margin-top:clamp(1.4rem,2.1vw,2.4rem);display:flex;flex-direction:row;align-items:stretch;gap:clamp(1.8rem,2.5vw,3.2rem);overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none;-webkit-overflow-scrolling:touch;touch-action:pan-x;}
.angebot-detail-scroll::-webkit-scrollbar{display:none;}
.angebot-step{flex:0 0 100%;min-width:100%;height:100%;scroll-snap-align:start;scroll-snap-stop:always;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);gap:clamp(2rem,2vw,3rem);align-items:center;}
.angebot-step-media{position:relative;display:flex;align-items:center;justify-content:center;padding:0;}
.angebot-step-media img{width:100%;height:auto;max-height:520px;object-fit:contain;border-radius:0;background:none;box-shadow:none;}
.angebot-step-body{max-width:32rem;display:flex;flex-direction:column;gap:1rem;}
.angebot-step-count{font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(148,217,228,0.75);margin-bottom:.8rem;}
.angebot-step-title{font-size:clamp(1.9rem,1.5rem + .8vw,2.4rem);font-weight:700;margin-bottom:.4rem;}
.angebot-step-body p{color:rgba(255,255,255,0.75);line-height:1.65;}.angebot-step-text{margin:0;font-size:.9rem;color:rgba(255,255,255,0.6);line-height:1.55;}
.angebot-progress{
  position:sticky;
  bottom:var(--angebot-pane-padding);
  align-self:flex-end;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:.75rem;
  margin-top:clamp(1.5rem, 2.4vw, 2.6rem);
}

.angebot-nav{position:relative;width:42px;height:42px;border-radius:50%;border:1px solid rgba(148,217,228,0.3);background:linear-gradient(135deg, rgba(148,217,228,0.18), rgba(12,33,42,0.4));color:#f1f6dc;font-size:.9rem;display:grid;place-items:center;transition:background .3s ease,border-color .3s ease,color .3s ease,transform .2s ease;cursor:pointer;}
.angebot-nav:hover{background:linear-gradient(135deg, rgba(148,217,228,0.28), rgba(12,33,42,0.45));border-color:rgba(148,217,228,0.55);color:#fff;transform:translateY(-1px);}
.angebot-nav:disabled{opacity:.35;cursor:not-allowed;}

.angebot-dots{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:.55rem;
}

.angebot-dot{
  width:20px;
  height:4px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,0.28);
  transition:transform .3s ease, background .3s ease;
  cursor:pointer;
}

.angebot-dot:focus-visible{
  outline:2px solid #f1f6dc;
  outline-offset:3px;
}

.angebot-dot[aria-selected="true"]{
  background:#f1f6dc;
  transform:scale(1.1,1.35);
}

.angebot-pane.is-open{
  flex:1 1 100%;
  cursor:default;
}

.angebot-pane.is-open .angebot-pane-summary{
  opacity:1;
  pointer-events:none;
}

.angebot-pane.is-open .angebot-detail{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.angebot-pane.is-open .angebot-pane-overlay{
  opacity:1;
}

.angebot-pane.is-muted{
  flex:0 0 0;
  opacity:1;
  pointer-events:none;
}

@media (max-width: 1200px){
  .angebot-step{
    grid-template-columns:1fr;
  }

  .angebot-step-media{
    order:-1;
  }

  .angebot-step-media img{
    max-height:360px;
  }

  .angebot-step-body{
    max-width:none;
  }
}

@media (max-width: 1023px){
  .angebot-section{
    --angebot-label-offset: clamp(1.2rem, 4vw, 2rem);
    --angebot-pane-padding: clamp(2.4rem, 5vw, 3.2rem);
  }

  .angebot-stage{
    min-height:auto;
  }

  .angebot-view--split{
    flex-direction:column;
  }

  .angebot-pane{
    min-height:420px;
  }

  .angebot-stage[data-active-topic="emotion"] .angebot-pane.is-muted,
  .angebot-stage[data-active-topic="neuro"] .angebot-pane.is-muted{
    display:none;
  }
}

@media (max-width: 640px){
  .angebot-section{
    --angebot-label-offset: clamp(1.1rem, 6vw, 1.8rem);
    --angebot-pane-padding: clamp(1.9rem, 7vw, 2.3rem);
  }

  .angebot-pane-title{
    font-size:2rem;
  }

  .angebot-pane-subtitle{
    font-size:1.05rem;
  }

  .angebot-progress{
    position:static;
    margin-top:1.6rem;
    align-self:flex-start;
    gap:.8rem;
  }

  .angebot-nav{
    width:36px;
    height:36px;
    font-size:.8rem;
  }

  .angebot-step-media img{
    max-height:240px;
  }

  .angebot-step{
    min-height:auto;
  }
}

/* ==================== ANGEBOT VENN ==================== */
.venn-section{
  position:relative;
  overflow:hidden;
}

.venn-diagram-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.5rem;
}

.venn-diagram{
  position:relative;
  width:min(560px, 90vw);
  aspect-ratio:1 / 1;
  --circle-size: clamp(300px, 70vw, 440px);
}

.venn-trigger{
  background:none;
  border:0;
  padding:0;
  color:inherit;
  font:inherit;
}

.venn-circle{
  position:absolute;
  width:var(--circle-size);
  height:var(--circle-size);
  border-radius:50%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:.55rem;
  padding:clamp(1.4rem, 3vw, 2.2rem);
  text-align:center;
  color:#f4f8fa;
  cursor:pointer;
  opacity:1;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 25px 45px rgba(6,14,20,0.55);
  transition:transform .6s cubic-bezier(.19,1,.22,1), opacity .35s ease, filter .35s ease, box-shadow .35s ease;
  position:relative;
  overflow:hidden;
  background:transparent;
}

.venn-circle::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:var(--venn-color, rgba(88,230,194,0.45));
  pointer-events:none;
}

.venn-circle--left{
  top:50%;
  left:34%;
  transform:translate(-50%, -50%) scale(.82);
  --venn-color: rgba(88,230,194,0.42);
}

.venn-circle--right{
  top:50%;
  left:66%;
  transform:translate(-50%, -50%) scale(.82);
  --venn-color: rgba(178,201,111,0.42);
}

.venn-circle{
  transform:translate(-50%, -50%) scale(.82);
}

.venn-section.is-visible .venn-circle{
  transform:var(--venn-translate, translate(-50%, -50%)) scale(1);
}

.venn-circle:hover,
.venn-circle:focus-visible{
  filter:brightness(1.05);
  box-shadow:0 28px 55px rgba(6,14,20,0.6);
}

.venn-circle:focus-visible{
  outline:2px solid rgba(241,246,220,0.65);
  outline-offset:6px;
}

.venn-circle.is-active{
  filter:brightness(1.15);
}

.venn-circle-title{
  font-size:clamp(1.05rem, .9rem + .8vw, 1.4rem);
  font-weight:700;
  line-height:1.25;
  position:relative;
  z-index:1;
}

.venn-circle-cta{
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.8);
  position:relative;
  z-index:1;
}

.venn-hint{
  letter-spacing:.08em;
  text-transform:uppercase;
}

.venn-detail-container{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.venn-detail{
  padding:clamp(1.6rem, 3vw, 2.2rem);
  border-radius:1.5rem;
  background:none;
  border:0;
  transition:color .3s ease;
}

.venn-detail.is-active{
  color:#fff;
}

.venn-detail[hidden]{
  display:none;
}

.venn-detail-title{
  font-size:clamp(1.4rem, 1.1rem + .6vw, 1.8rem);
  font-weight:700;
  margin-bottom:1rem;
}

.venn-detail p{
  color:rgba(255,255,255,0.78);
  line-height:1.65;
}

.venn-detail-list{
  list-style:none;
  margin:1.2rem 0 0;
  padding:0;
  display:grid;
  gap:.65rem;
}

.venn-detail-list li{
  position:relative;
  padding-left:1.4rem;
  color:rgba(241,246,220,0.85);
  line-height:1.55;
}

.venn-detail-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:.55em;
  width:.55rem;
  height:.55rem;
  border-radius:50%;
  background:rgba(218,245,151,0.88);
  box-shadow:0 0 8px rgba(218,245,151,0.65);
}

.venn-synergy{
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  line-height:1.6;
}

@media (max-width: 768px){
  .venn-circle{
    padding:1.4rem;
  }

  .venn-circle-cta{
    letter-spacing:.16em;
  }
}

@media (max-width: 620px){
  .venn-diagram{
    --circle-size: clamp(240px, 82vw, 320px);
  }

  .venn-circle--left{
    left:30%;
  }

  .venn-circle--right{
    left:70%;
  }
}

/* ==================== NEURO-STRATA TOUCHPOINTS VENN ==================== */
#neuro-strata-touchpoints.venn-section{
  background:radial-gradient(circle at center, rgba(24,46,56,0.55) 0%, rgba(11,24,31,0.2) 65%, transparent 100%);
}

#neuro-strata-touchpoints .venn-diagram{
  margin-inline:auto;
  --circle-size: clamp(260px, 55vw, 420px);
  --circle-overlap: clamp(110px, 18vw, 180px);
  display:grid;
  place-items:center;
}

#neuro-strata-touchpoints .venn-circle{
  position:relative;
  top:auto;
  left:auto;
  grid-area:1 / 1;
  backdrop-filter:blur(16px);
  background:rgba(18,35,44,0.52);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 30px 60px rgba(3,10,14,0.58);
  --venn-translate: translateX(0);
}

#neuro-strata-touchpoints .venn-circle::after{
  opacity:.96;
}

#neuro-strata-touchpoints .venn-circle--left{
  justify-self:start;
  --venn-translate: translateX(calc(var(--circle-overlap) * -.5));
  --venn-color: linear-gradient(135deg, rgba(255,121,160,0.48), rgba(255,91,142,0.34));
}

#neuro-strata-touchpoints .venn-circle--right{
  justify-self:end;
  --venn-translate: translateX(calc(var(--circle-overlap) * .5));
  --venn-color: linear-gradient(135deg, rgba(148,236,195,0.42), rgba(86,214,167,0.3));
}

#neuro-strata-touchpoints .venn-circle-title{
  text-shadow:0 6px 18px rgba(0,0,0,0.3);
}

#neuro-strata-touchpoints .venn-detail{
  background:rgba(12,24,31,0.35);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
}

@media (max-width: 640px){
  #neuro-strata-touchpoints .venn-diagram{
    --circle-size: clamp(220px, 86vw, 300px);
  }

  #neuro-strata-touchpoints .venn-diagram{
    --circle-overlap: clamp(80px, 22vw, 120px);
  }
}
/* ==================== NEURO-MEHRWERT SCROLLY ==================== */
.nmw-scrolly{
  position:relative;
  --nmw-steps: 2;
  --nmw-step: 280vh;
  min-height: calc(100vh + (var(--nmw-steps) - 1) * var(--nmw-step));
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  overflow: visible;
}
@supports (height: 100svh){
  .nmw-scrolly{
    min-height: calc(100svh + (var(--nmw-steps) - 1) * 280svh);
  }
}
.nmw-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.35;
  background: radial-gradient(circle at top, var(--accent) 0%, transparent 60%);
}
.nmw-stage{
  position:sticky;
  top: clamp(5.5rem, 6vw, 7rem);
  min-height: calc(100vh - clamp(5.5rem, 6vw, 7rem));
  display:flex;
  align-items:center;
}
.nmw-header{
  max-width: 46rem;
  text-align:left;
}
.nmw-grid{
  display:grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items:center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.nmw-circles{
  position:relative;
  --nmw-circle-text-size: 8px;
  width:min(420px, 70vw);
  aspect-ratio:1/1;
  margin: 0 auto;
}
.nmw-circle{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.25);
  background: #0f1f27;
  opacity:1;
  transform: scale(.6);
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease, border-color .6s ease;
}
.nmw-circle--middle,
.nmw-circle--outer{
  opacity:0;
  transform: scale(.6);
  transition: transform .6s ease, opacity .6s ease, box-shadow .6s ease, border-color .6s ease;
}
.nmw-circle.is-revealed{
  opacity:1;
}
.nmw-circle--middle{ transform: scale(.8); }
.nmw-circle--outer{ transform: scale(1); }
.nmw-circle--inner{ z-index: 3; }
.nmw-circle--middle{ z-index: 2; }
.nmw-circle--outer{ z-index: 1; }
.nmw-circle-label{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:4;
  font-size: .9rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: rgba(255,255,255,0.85);
  text-align:center;
  pointer-events:none;
  gap:.6rem;
  flex-direction:column;
}
.nmw-icon{
  width:22px;
  height:22px;
  fill: none;
  stroke: rgba(255,255,255,0.9);
  stroke-width:1.6;
}
.nmw-icon--inner{
  width:26px;
  height:26px;
}
.nmw-icon--middle,
.nmw-icon--outer{
  opacity: 0;
  transition: opacity .4s ease;
}
.nmw-icon--middle.is-revealed,
.nmw-icon--outer.is-revealed{
  opacity: 1;
}
.nmw-outer-icons{
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
}
.nmw-outer-icons .nmw-icon{
  position:absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}
.nmw-outer-icons .nmw-icon--middle{
  top: 12%;
}
.nmw-outer-icons .nmw-icon--outer{
  top: 2%;
}
.nmw-circle-labels{
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
}
.nmw-arc-text{
  fill: rgba(255,255,255,0.75);
  font-size: var(--nmw-circle-text-size);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .4s ease;
}
.nmw-arc-text--outer{
  fill: rgba(255,255,255,0.8);
}
.nmw-arc-text.is-revealed{
  opacity: 1;
}
.nmw-circle.is-current{
  border-color: rgba(255,255,255,0.65);
  box-shadow: 0 0 40px rgba(94,242,194,0.45);
  opacity:1;
}
.nmw-circle--inner.is-current{
  background: rgba(220,226,232,0.75);
}
.nmw-circle--middle.is-current{
  background: color-mix(in srgb, var(--highlight2) 85%, transparent);
}
.nmw-circle--outer.is-current{
  background: color-mix(in srgb, var(--green) 85%, transparent);
}
.nmw-text{
  max-width: 28rem;
}
.nmw-block{
  display:none;
  animation: nmwFade .5s ease;
}
.nmw-block.is-active{
  display:block;
}
.nmw-block h3{
  font-size: clamp(1.7rem, 1.5rem + 0.6vw, 2.2rem);
  font-weight:800;
  margin-bottom: .9rem;
}
.nmw-layer{
  color: rgba(255,255,255,0.9);
}
.nmw-layer--middle{
  color: var(--highlight2);
}
.nmw-layer--outer{
  color: var(--green);
}
.nmw-block p{
  line-height:1.6;
  color:#cfd3dc;
}
.nmw-mobile-stack{
  display:none;
}
.nmw-circles--static{
  width:min(360px, 82vw);
}
.nmw-circle--hidden{
  opacity:0;
  transform: scale(.6);
}
.nmw-hint{
  position:absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  margin-top: 0;
  text-align:center;
  font-size:.85rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  opacity:.5;
}
.nmw-pager{
  display:flex;
  justify-content:center;
  gap:.5rem;
  margin-bottom:.55rem;
}
.nmw-pager__bar{
  position:relative;
  width:46px;
  height:6px;
  border-radius:999px;
  background: rgba(255,255,255,0.18);
  overflow:hidden;
}
.nmw-pager__bar::after{
  content:"";
  position:absolute;
  inset:0;
  transform: scaleX(var(--nmw-fill, 0));
  transform-origin:left;
  background: rgba(255,255,255,0.7);
  transition: transform .25s ease;
}
.nmw-hint__label{
  font-size:.75rem;
  letter-spacing:.28em;
}
@keyframes nmwFade{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}
@media (max-width: 1023px){
  .nmw-circle-label{
    font-size: .75rem;
  }
  .nmw-grid{
    display:none;
  }
  .nmw-mobile-stack{
    display:flex;
    flex-direction:column;
    gap:2.75rem;
  }
  .nmw-mobile-item{
    display:grid;
    gap:1.75rem;
    align-items:center;
  }
  .nmw-hint{
    display:none;
  }
  .nmw-stage{
    position:static;
    min-height:auto;
    padding-bottom: 2rem;
  }
  .nmw-scrolly{
    min-height:auto;
  }
  .nmw-text{
    max-width: 32rem;
  }
}
