/* ================================================
   SIPO Homepage — Clean Professional Layout v4
   ================================================ */

/* Roboto local fonts */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Design tokens ── */
:root {
  --si-pink:   #E5007E;
  --si-ink:    #1a1a1a;
  --si-paper:  #f3f1eb;
  --si-muted:  #555;
  --si-border: #e0ddd8;
  --si-font:   'Roboto', Arial, sans-serif;
  /* CI/CD-Primärfarben (Pflichtenheft §19): Rot -> Pink, für alle primären Buttons */
  --si-btn-gradient: linear-gradient(90deg, #D12A29 0%, #EB3C91 100%);
}

/* ── Shared "hero background image" component — reused across all subpage hero sections ──
   Uses explicit ascending z-index (not negative values) so it reliably paints below the
   section's own content everywhere it's used. */
#sipo-hp .sipo-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#sipo-hp .sipo-st-hero #sipo-crystal-c {
  z-index: 1;
}
#sipo-hp .sipo-st-hero .sipo-st-hero__grid {
  z-index: 2;
}
/* Content wrapper of every "plain" hero (no canvas) needs to explicitly sit above the media layer */
#sipo-hp .sipo-inno-hero > .sipo-container,
#sipo-hp .sipo-partner-intro > .sipo-container,
#sipo-hp .sipo-esg-hero > .sipo-container,
#sipo-hp .sipo-aoe-hero > .sipo-container,
#sipo-hp .sipo-news-archive__hero > .sipo-container,
#sipo-hp .sipo-hub-hero > .sipo-container {
  position: relative;
  z-index: 1;
}
#sipo-hp .sipo-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#sipo-hp .sipo-hero-media__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.88) 35%,
    rgba(255, 255, 255, 0.35) 65%,
    rgba(255, 255, 255, 0.05) 100%
  );
}
#sipo-hp .sipo-hero-media.is-dark .sipo-hero-media__overlay {
  background: linear-gradient(
    90deg,
    rgba(14, 14, 20, 0.85) 0%,
    rgba(14, 14, 20, 0.85) 35%,
    rgba(14, 14, 20, 0.4) 65%,
    rgba(14, 14, 20, 0.05) 100%
  );
}

/* ── Wrapper — only box-sizing here, NO margin/padding reset ── */
#sipo-hp {
  font-family: var(--si-font);
  color: var(--si-ink);
  background: #fff;
  overflow-x: hidden;
  box-sizing: border-box;
}
#sipo-hp *, #sipo-hp *::before, #sipo-hp *::after {
  box-sizing: inherit;
}

/* Override global h-tag styles from Hello Elementor inside our wrapper */
#sipo-hp h1, #sipo-hp h2, #sipo-hp h3, #sipo-hp h4 {
  font-family: var(--si-font);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
  color: var(--si-ink);
  overflow-wrap: break-word;
}
#sipo-hp p { margin: 0; padding: 0; }
#sipo-hp a { color: inherit; text-decoration: none; }
#sipo-hp img { display: block; max-width: 100%; }
#sipo-hp ul, #sipo-hp ol { margin: 0; padding: 0; list-style: none; }

/* Hide Hello Elementor default header/footer on all pages — replaced by sipo-header/sipo-footer */
.site-header,
header.entry-header { display: none !important; }
.site-footer { display: none !important; }

/* ── Container ── */
#sipo-hp .sipo-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

/* ── Eyebrow ── */
#sipo-hp .sipo-eyebrow {
  font-family: var(--si-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--si-pink);
  display: block;
  margin-bottom: 12px;
}

/* ── Small tag ── */
#sipo-hp .sipo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--si-pink);
}

#sipo-hp .sipo-empty { color: var(--si-muted); font-size: 15px; }

/* ── Buttons ── */
#sipo-hp .sipo-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--si-btn-gradient);
  color: #fff !important;
  font-family: var(--si-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease-out;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-btn-primary:hover { filter: brightness(1.1); }
}
#sipo-hp .sipo-btn-primary:active { transform: scale(0.97); }

#sipo-hp .sipo-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--si-ink);
  border: 1px solid var(--si-ink);
  font-family: var(--si-font);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease-out;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-btn-secondary:hover { background: var(--si-ink); color: #fff; }
}
#sipo-hp .sipo-btn-secondary:active { transform: scale(0.97); }

/* ── Placeholder ── */
#sipo-hp .sipo-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--si-paper);
}
#sipo-hp .sipo-news-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--si-paper);
}


/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
#sipo-hp .sipo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(95deg, #fff 30%, #fce8f3 70%, #f9d5ea 100%);
  box-shadow: 0 1px 0 var(--si-border);
}

#sipo-hp .sipo-header__inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 80px;
  gap: 0;
}

#sipo-hp .sipo-header__logo-link { flex-shrink: 0; }
#sipo-hp .sipo-header__logo { display: block; width: 110px; height: auto; }

/* Main nav — centred between logo and right group */
#sipo-hp .sipo-nav-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
#sipo-hp .sipo-nav-main a {
  font-size: 14px;
  font-weight: 500;
  color: var(--si-ink);
  padding: 4px 0;
  position: relative;
  transition: color 0.15s;
  white-space: nowrap;
}
#sipo-hp .sipo-nav-main a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--si-pink);
  transform: scaleX(0);
  transition: transform 0.2s;
}
#sipo-hp .sipo-nav-main a:hover { color: var(--si-pink); }
#sipo-hp .sipo-nav-main a:hover::after,
#sipo-hp .sipo-nav-main a.is-active::after { transform: scaleX(1); }
#sipo-hp .sipo-nav-main a.is-active { font-weight: 600; }

/* ── Nav Dropdown ── */
#sipo-hp .sipo-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
#sipo-hp .sipo-nav-item__link {
  display: flex;
  align-items: center;
  gap: 3px;
}
#sipo-hp .sipo-nav-item__caret {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s;
  line-height: 1;
  margin-top: 1px;
}
#sipo-hp .sipo-nav-item:hover .sipo-nav-item__caret { transform: rotate(180deg); }
#sipo-hp .sipo-nav-item.is-active .sipo-nav-item__link { font-weight: 600; }
#sipo-hp .sipo-nav-item.is-active .sipo-nav-item__link::after { transform: scaleX(1); }
#sipo-hp .sipo-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 230px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 300;
}
#sipo-hp .sipo-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-width: 0;
  border-bottom-color: #fff;
}
#sipo-hp .sipo-nav-item:hover .sipo-dropdown,
#sipo-hp .sipo-nav-item:focus-within .sipo-dropdown {
  opacity: 1;
  visibility: visible;
}
#sipo-hp .sipo-dropdown li { list-style: none; }
#sipo-hp .sipo-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--si-ink);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
#sipo-hp .sipo-dropdown a::after { display: none !important; }
#sipo-hp .sipo-dropdown a:hover {
  background: var(--si-pink);
  color: #fff;
}
/* First and last items follow the border-radius of the card */
#sipo-hp .sipo-dropdown li:first-child a { border-radius: 10px 10px 0 0; }
#sipo-hp .sipo-dropdown li:last-child  a { border-radius: 0 0 10px 10px; }

/* Right group: language + CTA */
#sipo-hp .sipo-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
#sipo-hp .sipo-lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--si-font);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
#sipo-hp .sipo-lang-switch__link {
  color: var(--si-muted);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.15s;
}
#sipo-hp .sipo-lang-switch__link:hover {
  color: var(--si-ink);
}
#sipo-hp .sipo-lang-switch__link.is-active {
  color: var(--si-ink);
  font-weight: 700;
}
#sipo-hp .sipo-lang-switch__sep {
  color: var(--si-muted);
  font-weight: 400;
}
#sipo-hp .sipo-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: var(--si-btn-gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--si-font);
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.15s ease-out;
  white-space: nowrap;
  text-decoration: none;
}
#sipo-hp .sipo-header__cta::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7h10M7.5 3.5l3.5 3.5-3.5 3.5'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7h10M7.5 3.5l3.5 3.5-3.5 3.5'/%3E%3C/svg%3E") no-repeat center / contain;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-header__cta:hover { filter: brightness(1.1); }
}
#sipo-hp .sipo-header__cta:active { transform: scale(0.97); }

/* ── Mobile burger + collapsible nav panel ── */
#sipo-hp .sipo-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
#sipo-hp .sipo-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--si-ink);
  border-radius: 2px;
  transition: transform 0.2s ease-out, opacity 0.15s ease-out;
}
#sipo-hp .sipo-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#sipo-hp .sipo-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#sipo-hp .sipo-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop: wrapper is invisible to layout, nav-main + header__right stay siblings-in-a-row */
#sipo-hp .sipo-header__collapsible { display: contents; }

@media (max-width: 1024px) {
  #sipo-hp .sipo-header__burger { display: flex; }

  #sipo-hp .sipo-header__collapsible {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 8px 24px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
  }
  #sipo-hp .sipo-header.is-menu-open .sipo-header__collapsible { transform: translateX(0); }

  #sipo-hp .sipo-nav-main {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  #sipo-hp .sipo-nav-main > a,
  #sipo-hp .sipo-nav-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--si-border);
  }
  #sipo-hp .sipo-nav-item { flex-direction: column; align-items: stretch; }
  #sipo-hp .sipo-nav-item__link { justify-content: space-between; }
  #sipo-hp .sipo-nav-item__caret { padding: 8px; margin: -8px; }

  /* Dropdowns become inline accordions, not hover popovers */
  #sipo-hp .sipo-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.25s ease;
  }
  #sipo-hp .sipo-dropdown::before { display: none; }
  #sipo-hp .sipo-nav-item.is-expanded .sipo-nav-item__caret { transform: rotate(180deg); }
  #sipo-hp .sipo-nav-item.is-expanded .sipo-dropdown { max-height: 400px; padding-top: 8px; }
  #sipo-hp .sipo-dropdown a { padding: 10px 0 10px 16px; }
  #sipo-hp .sipo-dropdown li:first-child a,
  #sipo-hp .sipo-dropdown li:last-child a { border-radius: 0; }

  #sipo-hp .sipo-header__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 20px;
    padding-top: 20px;
  }
  #sipo-hp .sipo-lang-switch { display: flex !important; font-size: 14px; }
  #sipo-hp .sipo-header__cta { width: 100%; justify-content: center; padding: 14px 22px; }

  body.sipo-menu-open { overflow: hidden; }
}

/* Haupttitel (H2) that were missing a mobile font-size override entirely —
   stuck at the 48px desktop size on narrow screens, causing long single
   words (e.g. "Innovationsfeldern") to overflow the viewport. */
@media (max-width: 640px) {
  #sipo-hp .sipo-ich-bin__head h2,
  #sipo-hp .sipo-themenbereiche__head h2,
  #sipo-hp .sipo-ecosystem__head h2,
  #sipo-hp .sipo-events-intro h2,
  #sipo-hp .sipo-success__head h2,
  #sipo-hp .sipo-newsletter-section__text h2,
  #sipo-hp .sipo-inno-cta h2 { font-size: 32px; }
}

/* Push content below fixed header */
#sipo-hp .sipo-main { padding-top: 65px; }

/* Compensate for fixed header on all inner pages (event detail, posts, etc.) */
body:not(.home) #sipo-hp {
  padding-top: 68px;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#sipo-hp .sipo-hero {
  position: relative;
  padding: 80px 0 96px;
  background: #fff;
  /* no overflow:hidden here — crystal intentionally overflows into the next section */
}

#sipo-hp .sipo-hero__grid {
  display: block;
  position: relative;
  z-index: 2;
  min-height: 480px;
}

#sipo-hp .sipo-hero__text {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Optional background image/video — full-bleed across the whole hero section, behind the crystal too */
#sipo-hp .sipo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#sipo-hp .sipo-hero__bg video,
#sipo-hp .sipo-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Stronger over the text (left) side, fading out so the crystal keeps its own colour on the right */
#sipo-hp .sipo-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.92) 42%,
    rgba(255, 255, 255, 0.25) 72%,
    rgba(255, 255, 255, 0) 100%
  );
}

#sipo-hp .sipo-hero__content {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}

#sipo-hp .sipo-hero__title {
  font-weight: 300;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 4px 0 32px;
  text-transform: uppercase;
  color: var(--si-ink);
}

#sipo-hp .sipo-hero__typed {
  display: block;
  color: var(--si-pink);
  min-height: 1em;
}

/* Custom slim-bar cursor replaces Typed.js | char */
#sipo-hp .typed-cursor { display: none; }
#sipo-hp .sipo-hero__typed::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.72em;
  background: var(--si-pink);
  margin-left: 6px;
  vertical-align: 0.08em;
  border-radius: 1px;
  animation: sipo-blink 1.1s ease-in-out infinite;
}
@keyframes sipo-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

#sipo-hp .sipo-hero__lede {
  font-size: 16px;
  line-height: 1.65;
  max-width: 440px;
  color: var(--si-muted);
  font-weight: 400;
  margin-bottom: 40px;
}

#sipo-hp .sipo-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Crystal stage — particle canvas ── */
#sipo-hp .sipo-crystal-stage {
  position: absolute;
  right: -216px;        /* nochmals ~2 cm weiter rechts */
  top: -193px;          /* nochmals ~2 cm nach oben */
  width: 58%;           /* ~120% of the old half-column */
  max-width: 820px;
  aspect-ratio: 2077 / 2359;
  user-select: none;
  z-index: 1;           /* text is z-index: 2 → always in front */
  /* no overflow: hidden — canvas expands beyond stage so particles never clip */
}

#sipo-hp .sipo-crystal-stage canvas {
  position: absolute;
  display: block;
  pointer-events: none;
  /* size and position controlled by JS (resize()) */
}


/* ════════════════════════════════════════
   ICH BIN …
════════════════════════════════════════ */
#sipo-hp .sipo-ich-bin {
  padding: 80px 0;
  background: var(--si-paper);
}

#sipo-hp .sipo-ich-bin__head {
  margin-bottom: 56px;
  text-align: left;
}

#sipo-hp .sipo-ich-bin__head h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
}

#sipo-hp .sipo-ich-bin__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

#sipo-hp .sipo-ich-bin__tile {
  background: #fff;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--si-ink);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-ich-bin__tile:hover {
    border-color: var(--si-pink);
    box-shadow: 0 12px 36px -16px rgba(229,0,126,0.22);
    transform: translateY(-3px);
  }
}

#sipo-hp .sipo-ich-bin__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--si-pink);
  flex-shrink: 0;
}
#sipo-hp .sipo-ich-bin__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

#sipo-hp .sipo-ich-bin__tile h3 {
  font-family: var(--si-font);
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  color: var(--si-ink);
}

#sipo-hp .sipo-ich-bin__tile p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--si-muted);
  flex: 1;
  margin-bottom: 28px;
}

#sipo-hp .sipo-ich-bin__cta {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--si-font);
  color: var(--si-pink);
  letter-spacing: 0.3px;
  transition: gap 0.15s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-ich-bin__tile:hover .sipo-ich-bin__cta {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}


/* ════════════════════════════════════════
   THEMENBEREICHE
════════════════════════════════════════ */
#sipo-hp .sipo-themenbereiche {
  padding: 100px 0;
  background: #fff;
}

#sipo-hp .sipo-themenbereiche__head {
  margin-bottom: 56px;
  text-align: left;
}

#sipo-hp .sipo-themenbereiche__head h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}

#sipo-hp .sipo-themen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

#sipo-hp .sipo-thema {
  background: var(--si-paper);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-thema:hover {
    border-color: var(--si-pink);
    background: #fff;
  }
}

#sipo-hp .sipo-thema__icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--si-pink);
  margin-bottom: 4px;
}
#sipo-hp .sipo-thema__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

#sipo-hp .sipo-thema__label {
  font-size: 20px;
  font-weight: 500;
  color: var(--si-ink);
  line-height: 1.25;
  font-family: var(--si-font);
}

#sipo-hp .sipo-thema__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--si-muted);
  font-family: var(--si-font);
}


/* ════════════════════════════════════════
   ECOSYSTEM / NETZWERK
════════════════════════════════════════ */
#sipo-hp .sipo-ecosystem {
  position: relative;
  background: var(--si-paper);
  padding: 100px 0;
  overflow: hidden;
}

#sipo-hp .sipo-ecosystem__head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  text-align: left;
}
#sipo-hp .sipo-ecosystem__head > div:first-child {
  position: relative;
  z-index: 2;
}

#sipo-hp .sipo-crystal-stage--netzwerk {
  position: absolute;
  top: -240px;
  right: -220px;
  width: 380px;
  height: 380px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transform: rotate(-90deg);
}
#sipo-hp .sipo-crystal-stage--netzwerk canvas {
  position: absolute;
  display: block;
  pointer-events: none;
}
@media (max-width: 700px) {
  #sipo-hp .sipo-crystal-stage--netzwerk { top: -90px; right: -110px; width: 260px; height: 260px; opacity: 0.6; }
}

#sipo-hp .sipo-ecosystem__head h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

#sipo-hp .sipo-ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

#sipo-hp .sipo-ecosystem-card {
  background: #fff;
  position: relative;
  padding: 36px 24px 28px;
  min-height: 100px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.15s;
  overflow: hidden;
}
#sipo-hp .sipo-ecosystem-card.featured {
  outline: 2px solid var(--si-pink);
  outline-offset: -2px;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-ecosystem-card:hover { box-shadow: 0 8px 24px -12px rgba(0,0,0,0.18); }
}

#sipo-hp .sipo-ecosystem-tag {
  position: absolute;
  top: 0; right: 0;
  background: #ccc;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  text-transform: uppercase;
  line-height: 1.4;
}
#sipo-hp .sipo-ecosystem-card.featured .sipo-ecosystem-tag { background: var(--si-pink); }

#sipo-hp .sipo-ecosystem-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--si-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 64px;
}
#sipo-hp .sipo-ecosystem-logo img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.3s ease;
}
#sipo-hp .sipo-ecosystem-card:hover .sipo-ecosystem-logo img {
  filter: grayscale(0) opacity(1);
}

/* Compact logos (Empa, OST) — scale up for visual balance */
#sipo-hp [data-partner-id="1185"] .sipo-ecosystem-logo img,
#sipo-hp [data-partner-id="1679"] .sipo-ecosystem-logo img {
  transform: scale(1.45);
}


/* ════════════════════════════════════════
   EVENTS
════════════════════════════════════════ */
#sipo-hp .sipo-events-section {
  padding: 100px 0;
  background: var(--si-paper);
}

#sipo-hp .sipo-events-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

#sipo-hp .sipo-events-intro {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 40px;
  text-align: left;
}
#sipo-hp .sipo-events-intro h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
  text-transform: uppercase;
}
#sipo-hp .sipo-events-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--si-muted);
  margin-bottom: 32px;
}
#sipo-hp .sipo-events-intro .sipo-btn-primary {
  align-self: flex-start;
}

#sipo-hp .sipo-event-month {
  font-family: var(--si-font);
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--si-pink);
  margin-top: 40px;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--si-border);
  display: block;
}
#sipo-hp .sipo-event-month:first-child { margin-top: 0; }

#sipo-hp .sipo-event-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #ece9e3;
  align-items: baseline;
}

#sipo-hp .sipo-event-date {
  font-size: 13px;
  color: var(--si-muted);
  font-weight: 400;
  white-space: nowrap;
  font-family: var(--si-font);
}

#sipo-hp .sipo-event-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--si-ink);
  font-family: var(--si-font);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: color 0.15s, text-decoration-color 0.15s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-event-title:hover { color: var(--si-pink); text-decoration-color: var(--si-pink); }
}


/* ════════════════════════════════════════
   SUCCESS STORIES — Variante D
════════════════════════════════════════ */
#sipo-hp .sipo-success {
  padding: 60px 0 88px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Heading */
#sipo-hp .sipo-success__head { margin-bottom: 44px;
  text-align: left;
}
#sipo-hp .sipo-success__head h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#sipo-hp .sipo-success__sub {
  font-size: 16px;
  color: var(--si-muted);
  font-weight: 300;
  font-family: var(--si-font);
  line-height: 1.6;
}

#sipo-hp .sipo-success-bracket { display: none; }

/* ── Row 1: pink feature + tile ── */
#sipo-hp .sipo-success-row1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

#sipo-hp .sipo-success-feature { position: relative; }

/* Pink angled panel */
#sipo-hp .sipo-success-panel {
  background-image: url('../img/sipo-footer-bg.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 48px 260px 44px 48px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 7%, 95% 0, 100% 100%, 0 100%);
}
#sipo-hp .sipo-success-panel__lead {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 18px;
  font-family: var(--si-font);
}
#sipo-hp .sipo-success-panel__body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 auto;
  font-family: var(--si-font);
}

/* Circular portrait overlapping right edge */
#sipo-hp .sipo-success-portrait {
  position: absolute;
  right: -46px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--si-paper);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  z-index: 4;
}
#sipo-hp .sipo-success-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Story tiles (shared row1 + row2) ── */
#sipo-hp .sipo-success-tile {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
#sipo-hp .sipo-success-tile__img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}
#sipo-hp .sipo-success-tile__img.sipo-img-placeholder {
  background: var(--si-paper);
}
#sipo-hp .sipo-success-tile__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--si-ink);
  font-family: var(--si-font);
  margin: 22px 0 18px;
}

/* ── Row 2: three tiles ── */
#sipo-hp .sipo-success-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
#sipo-hp .sipo-success-row2 .sipo-success-tile__img { aspect-ratio: 16 / 10; }

/* ── Links ── */
#sipo-hp .sipo-story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--si-font);
  color: var(--si-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  transition: color 0.15s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-story-link:hover { color: var(--si-pink); }
}
#sipo-hp .sipo-story-link--white {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  margin-top: 34px;
}
#sipo-hp .sipo-story-link--white:hover { color: rgba(255, 255, 255, 0.8); }


/* ════════════════════════════════════════
   PARTNER BANDS (dual infinite scroll)
════════════════════════════════════════ */
#sipo-hp .sipo-partner-band {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
#sipo-hp .sipo-partner-band + .sipo-partner-band {
  margin-top: 8px;
}

/* Fade edges — also act as scroll buttons */
#sipo-hp .sipo-partner-band__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: all;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#sipo-hp .sipo-partner-band__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--si-paper) 20%, transparent 100%);
  justify-content: flex-start;
  padding-left: 20px;
}
#sipo-hp .sipo-partner-band__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--si-paper) 20%, transparent 100%);
  justify-content: flex-end;
  padding-right: 20px;
}
/* Chevron arrows */
#sipo-hp .sipo-partner-band__fade::after {
  content: '';
  width: 11px;
  height: 11px;
  border-top:   2px solid var(--si-ink);
  border-right: 2px solid var(--si-ink);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
#sipo-hp .sipo-partner-band__fade--left::after  { transform: rotate(-135deg); }
#sipo-hp .sipo-partner-band__fade--right::after { transform: rotate(45deg); }
#sipo-hp .sipo-partner-band__fade:hover::after  { opacity: 0.45; }
#sipo-hp .sipo-partner-band__fade:active::after { opacity: 1; border-color: var(--si-pink); }

/* Scrolling track */
#sipo-hp .sipo-partner-band__track {
  display: flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  padding: 12px 0;
  animation: sipoTickerScroll 60s linear infinite;
}
#sipo-hp .sipo-partner-band__track img {
  -webkit-user-drag: none;
}
#sipo-hp .sipo-ticker-row2 {
  animation-direction: reverse;
}

@keyframes sipoTickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Logo items */
#sipo-hp .sipo-partner-ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 100px;
  background: #fff;
  flex-shrink: 0;
  padding: 16px 28px;
  transition: background 0.2s;
}
#sipo-hp .sipo-partner-ticker__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#sipo-hp .sipo-partner-ticker__item img {
  width: 164px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-partner-ticker__item:hover img {
    filter: grayscale(0) opacity(1);
  }
}
#sipo-hp .sipo-partner-ticker__item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--si-muted);
  font-family: var(--si-font);
  text-align: center;
}


/* ════════════════════════════════════════
   NEWSLETTER SECTION
════════════════════════════════════════ */
#sipo-hp .sipo-newsletter-section {
  background: var(--si-ink);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Faint pink glow — gives the glass card something to blur over */
#sipo-hp .sipo-newsletter-section::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(229, 0, 126, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

#sipo-hp .sipo-newsletter-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

#sipo-hp .sipo-newsletter-section__text h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
  text-transform: uppercase;
}

#sipo-hp .sipo-newsletter-section__text p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* Glass card — square, right-aligned in its column */
#sipo-hp .sipo-newsletter-card {
  width: min(100%, 400px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(229, 0, 126, 0.45);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}

#sipo-hp .sipo-newsletter-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 0, 126, 0.85);
  font-family: var(--si-font);
  margin-bottom: auto;
}

#sipo-hp .sipo-newsletter-section__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#sipo-hp .sipo-newsletter-section__form input[type="email"] {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-family: var(--si-font);
  outline: none;
  transition: border-color 0.2s;
}
#sipo-hp .sipo-newsletter-section__form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
#sipo-hp .sipo-newsletter-section__form input[type="email"]:focus {
  border-bottom-color: rgba(229, 0, 126, 0.75);
}

#sipo-hp .sipo-newsletter-section__form button {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  background: var(--si-btn-gradient);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--si-font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
#sipo-hp .sipo-newsletter-section__form button:hover {
  filter: brightness(1.1);
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#sipo-hp .sipo-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #C40070 0%, #E5007E 38%, #EE6595 72%, #F5A8C4 100%);
  color: var(--si-ink);
}

/* Subtle angled background layers */
#sipo-hp .sipo-footer::before {
  content: "";
  position: absolute;
  top: 0; right: -80px;
  width: 45%; height: 100%;
  background: rgba(255,255,255,0.07);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
#sipo-hp .sipo-footer::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 30%; height: 60%;
  background: rgba(255,255,255,0.04);
  clip-path: polygon(0 0, 85% 0, 55% 100%, 0 100%);
  pointer-events: none;
}

/* ── Newsletter card at the top ── */
#sipo-hp .sipo-footer__nl-wrap {
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
}

#sipo-hp .sipo-footer__nl-wrap .sipo-container {
  display: flex;
  justify-content: flex-end;
}

#sipo-hp .sipo-footer__nl-card {
  background: #fff;
  padding: 52px 56px;
  width: 560px;
  max-width: 100%;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

#sipo-hp .sipo-footer__nl-card h3 {
  font-size: 22px !important;
  font-weight: 300 !important;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--si-ink);
  margin-bottom: 20px;
}

#sipo-hp .sipo-footer__nl-card p {
  font-size: 15px;
  color: var(--si-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

#sipo-hp .sipo-footer__nl-form {
  display: flex;
  gap: 0;
}
#sipo-hp .sipo-footer__nl-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid var(--si-border);
  border-right: none;
  font-family: var(--si-font);
  font-size: 14px;
  outline: none;
  background: #fff;
  color: var(--si-ink);
}
#sipo-hp .sipo-footer__nl-form input::placeholder { color: #bbb; }
#sipo-hp .sipo-footer__nl-form .sipo-btn-primary { flex-shrink: 0; font-size: 12px; letter-spacing: 1px; }

/* ── Main footer columns ── */
#sipo-hp .sipo-footer__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 56px;
}

#sipo-hp .sipo-footer__logo-wrap {
  width: 220px;
  margin-bottom: 28px;
}
#sipo-hp .sipo-footer__logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
/* Text below logo aligned with the wordmark (icon occupies ~35% of logo width) */
#sipo-hp .sipo-footer__brand address,
#sipo-hp .sipo-footer__brand .sipo-footer__contact {
  padding-left: 76px;
}

#sipo-hp .sipo-footer__brand address {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(20,0,10,0.75);
}

#sipo-hp .sipo-footer__contact {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(20,0,10,0.75);
}
#sipo-hp .sipo-footer__contact a {
  color: rgba(20,0,10,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
#sipo-hp .sipo-footer__contact a:hover { color: var(--si-ink); }

#sipo-hp .sipo-footer__col h4 {
  font-family: var(--si-font);
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 0;
  padding-top: 53px; /* aligns with top of "SWITZERLAND" wordmark in the logo */
  color: #fff;
}

#sipo-hp .sipo-footer__links {
  display: flex;
  gap: 40px;
}
#sipo-hp .sipo-footer__links--single { gap: 0; }

#sipo-hp .sipo-footer__links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#sipo-hp .sipo-footer__links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(20,0,10,0.8);
  display: block;
  transition: color 0.15s;
  font-family: var(--si-font);
}
#sipo-hp .sipo-footer__links a:hover { color: var(--si-ink); }

/* ── Bottom bar ── */
#sipo-hp .sipo-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.25);
}
#sipo-hp .sipo-footer__bottom .sipo-container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 36px;
  font-size: 13px;
  color: rgba(20,0,10,0.55);
  font-family: var(--si-font);
  flex-wrap: wrap;
}


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  #sipo-hp .sipo-ecosystem__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  #sipo-hp .sipo-container { padding-left: 40px; padding-right: 40px; }
  #sipo-hp .sipo-header__inner { padding-left: 40px; padding-right: 40px; }

  #sipo-hp .sipo-hero__grid { min-height: 360px; }
  #sipo-hp .sipo-hero__text { max-width: 100%; padding-top: 20px; padding-bottom: 20px; }
  #sipo-hp .sipo-crystal-stage { width: 80%; right: -40px; opacity: 0.35; }
  #sipo-hp .sipo-hero__title { font-size: 60px; }
  #sipo-hp .sipo-hero__lede { max-width: 100%; }

  #sipo-hp .sipo-ich-bin__grid { grid-template-columns: 1fr 1fr; }
  #sipo-hp .sipo-newsletter-section__inner { grid-template-columns: 1fr; gap: 40px; }
  #sipo-hp .sipo-newsletter-card { margin-left: 0; aspect-ratio: auto; }
  #sipo-hp .sipo-ecosystem__grid { grid-template-columns: repeat(2, 1fr); }
  #sipo-hp .sipo-events-grid { grid-template-columns: 1fr; gap: 48px; }
  #sipo-hp .sipo-events-intro { position: static; }
  #sipo-hp .sipo-success-row1 { grid-template-columns: 1fr; gap: 80px; }
  #sipo-hp .sipo-success-portrait { right: 50%; bottom: -130px; top: auto; transform: translateX(50%); width: 200px; height: 200px; }
  #sipo-hp .sipo-success-panel { padding: 40px 40px 160px; clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }
  #sipo-hp .sipo-success-row2 { grid-template-columns: 1fr; gap: 40px; }

  #sipo-hp .sipo-footer__main { padding-left: 40px; padding-right: 40px; grid-template-columns: 1fr 1fr; gap: 48px; }
  #sipo-hp .sipo-footer__sponsors, #sipo-hp .sipo-footer__meta { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 640px) {
  #sipo-hp .sipo-container { padding-left: 24px; padding-right: 24px; }
  #sipo-hp .sipo-header__inner { padding-left: 24px; padding-right: 24px; }

  #sipo-hp .sipo-hero__title { font-size: 44px; }
  #sipo-hp .sipo-ich-bin__grid { grid-template-columns: 1fr; }
  #sipo-hp .sipo-ich-bin__tile { padding: 36px 28px; }
  #sipo-hp .sipo-themen__grid { grid-template-columns: 1fr; }
  #sipo-hp .sipo-thema { padding: 36px 28px; }
  #sipo-hp .sipo-ecosystem__grid { grid-template-columns: 1fr 1fr; }
  #sipo-hp .sipo-success-row2 { grid-template-columns: 1fr; }

  #sipo-hp .sipo-footer__main { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 32px; }
  #sipo-hp .sipo-footer__sponsors, #sipo-hp .sipo-footer__meta { padding-left: 24px; padding-right: 24px; }
}

/* ── Single event page: image top-right layout ── */
.tribe-events-single .sipo-event-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "body image";
  gap: 40px;
  align-items: start;
}

.tribe-events-single .sipo-event-image {
  grid-area: image;
  width: 340px;
  max-width: 40vw;
  flex-shrink: 0;
}

.tribe-events-single .sipo-event-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.tribe-events-single .sipo-event-body {
  grid-area: body;
  min-width: 0;
}

.tribe-events-single .sipo-event-body .tribe-events-single-event-description,
.tribe-events-single .sipo-event-body .tribe-events-content,
.tribe-events-single .sipo-event-body .tribe-events-event-meta,
.tribe-events-single .sipo-event-body .tribe-events-schedule {
  display: block;
  overflow: visible;
  visibility: visible;
}

@media (max-width: 700px) {
  .tribe-events-single .sipo-event-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "body";
  }
  .tribe-events-single .sipo-event-image {
    width: 100%;
    max-width: 100%;
  }
}

/* ── Elementor-mode event: full-width content ── */
.tribe-events-single .sipo-event-header-bar {
  margin-bottom: 32px;
}

.tribe-events-single .sipo-elementor-content {
  /* let Elementor sections span full content width */
  margin-left: -24px;
  margin-right: -24px;
}

.tribe-events-single .sipo-elementor-content .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1140px;
}

/* startup logo row: equal-height images */
.tribe-events-single .sipo-elementor-content .elementor-widget-image img {
  object-fit: contain;
  background: #fff;
}


/* ════════════════════════════════════════
   INNOVATION HUBS PAGE
════════════════════════════════════════ */
#sipo-hp .sipo-inno-page { background: #fff; }

/* Hero */
#sipo-hp .sipo-inno-hero {
  position: relative;
  margin-top: -65px;
  padding: 145px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--si-border);
}
#sipo-hp .sipo-inno-hero__title {
  font-size: 76px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  color: var(--si-ink);
  margin: 8px 0 28px;
}
#sipo-hp .sipo-inno-hero__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--si-muted);
  max-width: 600px;
  font-family: var(--si-font);
}

/* Generic content sections (Unser Ansatz / Innovationsdienstleistungen / Themenschwerpunkte) */
#sipo-hp .sipo-inno-sec { padding: 72px 0; }
#sipo-hp .sipo-inno-sec--white { background: #fff; }
#sipo-hp .sipo-inno-sec--paper { background: var(--si-paper); }
#sipo-hp .sipo-inno-sec__title {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  text-transform: uppercase;
  margin: 8px 0 20px;
}
#sipo-hp .sipo-inno-sec__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--si-muted);
  font-family: var(--si-font);
  max-width: 720px;
  margin-bottom: 32px;
}
#sipo-hp .sipo-inno-sec__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--si-muted);
  font-family: var(--si-font);
  max-width: 760px;
}
#sipo-hp .sipo-inno-sec__body--lede { font-size: 17px; }
#sipo-hp .sipo-inno-sec__body p { margin: 0 0 16px; }
#sipo-hp .sipo-inno-sec__body p:last-child { margin-bottom: 0; }
#sipo-hp .sipo-inno-sec__body a { color: var(--si-pink); text-decoration: underline; text-underline-offset: 2px; }

/* Innovationsdienstleistungen — service cards (icon + hover microinteraction, matches .sipo-thema on the homepage) */
#sipo-hp .sipo-inno-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 8px;
}
#sipo-hp .sipo-inno-svc-card {
  background: #fff;
  padding: 32px 30px;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-inno-svc-card:hover {
    border-color: var(--si-pink);
    box-shadow: 0 12px 32px -18px rgba(229,0,126,0.25);
    transform: translateY(-2px);
  }
}
#sipo-hp .sipo-inno-svc-card--link { cursor: pointer; }
#sipo-hp .sipo-inno-svc-card__cta {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--si-font);
  color: var(--si-pink);
  letter-spacing: 0.3px;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-inno-svc-card--link:hover .sipo-inno-svc-card__cta {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
#sipo-hp .sipo-inno-svc-card__icon {
  display: block;
  width: 36px;
  height: 36px;
  color: var(--si-pink);
  margin-bottom: 18px;
}
#sipo-hp .sipo-inno-svc-card__icon svg { width: 36px; height: 36px; display: block; }
#sipo-hp .sipo-inno-svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--si-ink);
  margin-bottom: 10px;
}
#sipo-hp .sipo-inno-svc-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--si-muted);
  font-family: var(--si-font);
}

/* Regionale Kernkompetenzen — compact strip above the platform grid */
#sipo-hp .sipo-inno-kompetenz-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--si-muted);
  margin: 0 0 16px;
}
#sipo-hp .sipo-inno-kompetenz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 20px;
  margin-bottom: 56px;
}
#sipo-hp .sipo-inno-kompetenz-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--si-border);
  transition: transform 0.2s;
}
#sipo-hp .sipo-inno-kompetenz-tile:hover { transform: translateX(3px); }
#sipo-hp .sipo-inno-kompetenz-tile__icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--si-pink);
  flex-shrink: 0;
}
#sipo-hp .sipo-inno-kompetenz-tile__icon svg { width: 24px; height: 24px; display: block; }
#sipo-hp .sipo-inno-kompetenz-tile span {
  font-size: 14px;
  color: var(--si-ink);
  font-family: var(--si-font);
}

/* Plattformen — dominant 2-column card grid with logo, relation tag and footer bar */
#sipo-hp .sipo-inno-plattform-head { margin-bottom: 28px; }
#sipo-hp .sipo-inno-plattform-head h2 {
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--si-ink);
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  #sipo-hp .sipo-inno-plattform-head h2 { font-size: 32px; }
}
#sipo-hp .sipo-inno-plattform-head p {
  font-size: 15px;
  color: var(--si-muted);
  font-family: var(--si-font);
}
#sipo-hp .sipo-inno-plattform-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
#sipo-hp .sipo-inno-plattform-card-v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--si-border);
  border-radius: 10px;
  padding: 28px 28px 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  a.sipo-inno-plattform-card-v2:hover {
    border-color: var(--si-pink);
    box-shadow: 0 16px 40px -20px rgba(229,0,126,0.3);
    transform: translateY(-3px);
  }
}
#sipo-hp .sipo-inno-plattform-card-v2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
#sipo-hp .sipo-inno-plattform-card-v2__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--si-paper);
  color: var(--si-pink);
  flex-shrink: 0;
}
#sipo-hp .sipo-inno-plattform-card-v2__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
#sipo-hp .sipo-inno-plattform-card-v2__logo svg { width: 28px; height: 28px; display: block; }

/* Uploaded logo (as opposed to the icon fallback): shown large, no badge/background */
#sipo-hp .sipo-inno-plattform-card-v2__logo--img {
  width: auto;
  height: 84px;
  border-radius: 0;
  background: none;
  justify-content: flex-start;
}
#sipo-hp .sipo-inno-plattform-card-v2__logo--img img {
  width: auto;
  height: 100%;
  max-width: 240px;
  object-fit: contain;
  border-radius: 0;
}
#sipo-hp .sipo-inno-plattform-card-v2__relation {
  font-family: var(--si-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--si-pink);
  text-align: right;
  line-height: 1.4;
  padding-top: 8px;
}
#sipo-hp .sipo-inno-plattform-card-v2 h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--si-ink);
  margin-bottom: 10px;
}
#sipo-hp .sipo-inno-plattform-card-v2__top + p {
  margin-top: 4px;
}
#sipo-hp .sipo-inno-plattform-card-v2 p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--si-muted);
  font-family: var(--si-font);
  margin-bottom: 24px;
}
#sipo-hp .sipo-inno-plattform-card-v2__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: auto -28px 0;
  padding: 16px 28px;
  background: var(--si-paper);
  border-top: 1px solid var(--si-border);
}
#sipo-hp .sipo-inno-plattform-card-v2__footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--si-pink);
  flex-shrink: 0;
}
#sipo-hp .sipo-inno-plattform-card-v2__footer-icon svg { width: 18px; height: 18px; display: block; }
#sipo-hp .sipo-inno-plattform-card-v2__footer-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--si-ink);
  font-family: var(--si-font);
  flex: 1;
}
#sipo-hp .sipo-inno-plattform-card-v2__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--si-pink);
  font-family: var(--si-font);
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  a.sipo-inno-plattform-card-v2:hover .sipo-inno-plattform-card-v2__cta { text-decoration: underline; text-underline-offset: 3px; }
}

/* Jump-Kacheln */
#sipo-hp .sipo-inno-jump {
  padding: 80px 0 88px;
  background: var(--si-paper);
}
#sipo-hp .sipo-inno-jump__title {
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--si-ink);
  margin: 0 0 52px;
  line-height: 1.1;
}
@media (max-width: 640px) {
  #sipo-hp .sipo-inno-jump__title { font-size: 32px; }
}
#sipo-hp .sipo-inno-jump__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
#sipo-hp .sipo-inno-jump__tile {
  background: #fff;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--si-ink);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  scroll-margin-top: 80px;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-inno-jump__tile:hover {
    border-color: var(--si-pink);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px -16px rgba(229,0,126,0.2);
  }
}
#sipo-hp .sipo-inno-jump__icon {
  width: 40px; height: 40px;
  color: var(--si-pink);
  margin-bottom: 24px;
  flex-shrink: 0;
}
#sipo-hp .sipo-inno-jump__icon svg { width: 40px; height: 40px; display: block; }
#sipo-hp .sipo-inno-jump__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--si-font);
  flex: 1;
  margin-bottom: 20px;
}
#sipo-hp .sipo-inno-jump__arrow {
  font-size: 20px;
  color: var(--si-pink);
  transition: transform 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-inno-jump__tile:hover .sipo-inno-jump__arrow { transform: translateY(4px); }
}

/* Hub-Abschnitte */
#sipo-hp .sipo-inno-hub {
  padding: 100px 0;
  background: #fff;
  position: relative;
  scroll-margin-top: 70px;
}
#sipo-hp .sipo-inno-hub--alt { background: var(--si-paper); }

#sipo-hp .sipo-inno-hub__accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--si-pink) 0%, transparent 100%);
}

#sipo-hp .sipo-inno-hub__inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 80px;
  align-items: start;
}
#sipo-hp .sipo-inno-hub__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
#sipo-hp .sipo-inno-hub__number {
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--si-border);
  font-family: var(--si-font);
  letter-spacing: -0.02em;
}
#sipo-hp .sipo-inno-hub__content h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#sipo-hp .sipo-inno-hub__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--si-muted);
  margin-bottom: 32px;
  max-width: 580px;
  font-family: var(--si-font);
}
#sipo-hp .sipo-inno-hub__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#sipo-hp .sipo-inno-hub__list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--si-ink);
  font-family: var(--si-font);
  padding-left: 20px;
  position: relative;
}
#sipo-hp .sipo-inno-hub__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--si-pink);
  border-radius: 50%;
}

/* CTA-Abschluss */
#sipo-hp .sipo-inno-cta {
  background: var(--si-ink);
  padding: 80px 0;
  text-align: left;
}
#sipo-hp .sipo-inno-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
#sipo-hp .sipo-inno-cta h2 {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}
#sipo-hp .sipo-inno-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-family: var(--si-font);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  #sipo-hp .sipo-inno-jump__grid { grid-template-columns: 1fr; gap: 2px; }
  #sipo-hp .sipo-inno-hub__inner { grid-template-columns: 1fr; gap: 32px; }
  #sipo-hp .sipo-inno-hero__title { font-size: 52px; }
  #sipo-hp .sipo-inno-cta__inner { flex-direction: column; align-items: flex-start; }
  #sipo-hp .sipo-inno-svc-grid { grid-template-columns: 1fr; }
  #sipo-hp .sipo-inno-kompetenz-grid { grid-template-columns: 1fr 1fr; }
  #sipo-hp .sipo-inno-plattform-grid-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  #sipo-hp .sipo-inno-hero__title { font-size: 40px; }
  #sipo-hp .sipo-inno-hub__content h2 { font-size: 32px; }
  #sipo-hp .sipo-inno-sec__title { font-size: 32px; }
  #sipo-hp .sipo-inno-kompetenz-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   STARTUPS PAGE  (sipo-startups-page)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ── */
#sipo-hp .sipo-st-hero {
  background: var(--si-ink);
  margin-top: -65px;
  padding: 185px 0 100px;
  overflow: hidden;
  position: relative;
}
#sipo-hp .sipo-st-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(232,0,116,.18) 0%, transparent 70%);
  pointer-events: none;
}
#sipo-hp #sipo-crystal-c {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
#sipo-hp .sipo-st-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}
#sipo-hp .sipo-st-hero__logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  align-self: start;
  margin-top: -120px;
}
#sipo-hp .sipo-st-hero__logo {
  width: 450px;
  height: auto;
  opacity: .92;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.35));
}
#sipo-hp .sipo-st-hero__title { color: #fff; }
#sipo-hp .sipo-st-hero__typed {
  color: var(--si-pink);
  border-right: 3px solid var(--si-pink);
  padding-right: 4px;
  animation: sipo-blink .75s step-end infinite;
}
@keyframes sipo-blink { 50% { border-color: transparent; } }

/* ── Anlaufstelle ── */
/* ── Anlaufstelle ── */
#sipo-hp .sipo-st-anlaufstelle {
  background: #131318;
  padding: 100px 0 80px;
}

/* Header */
#sipo-hp .sipo-st-anlauf__head {
  text-align: left;
  margin-bottom: 56px;
}
#sipo-hp .sipo-st-anlauf__head h2 {
  font-size: 48px;
  font-weight: 300;
  color: #f0f0f5;
  margin: 8px 0 16px;
  line-height: 1.15;
  text-transform: uppercase;
}
#sipo-hp .sipo-st-anlauf__sub {
  font-size: 17px;
  color: rgba(240,240,245,0.58);
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
}

/* Body: two-column layout */
#sipo-hp .sipo-st-anlauf__body {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
#sipo-hp .sipo-st-anlauf__map-col {
  flex: 0 0 42%;
  max-width: 42%;
}

/* Map with pins */
#sipo-hp .sipo-st-anlauf__map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #0e0e14;
}
#sipo-hp .sipo-st-anlauf__map-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* SVG line overlay */
#sipo-hp .sipo-st-anlauf__pin-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Dots: centered on their top/left position. Hidden by default; shown either
   because nothing has been clicked yet (all three, see below) or because this
   is the one matching .sipo-st-anlauf__body's data-active. */
#sipo-hp .sipo-st-anlauf__dot {
  position: absolute;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}
/* No tab clicked yet (data-active absent/empty) — show all three dots. */
#sipo-hp .sipo-st-anlauf__body:not([data-active]) .sipo-st-anlauf__dot,
#sipo-hp .sipo-st-anlauf__body[data-active=""] .sipo-st-anlauf__dot {
  opacity: 1;
}
#sipo-hp .sipo-st-anlauf__dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 22px rgba(255,255,255,0.55);
  transition: box-shadow 0.3s;
}
#sipo-hp .sipo-st-anlauf__dot span {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  animation: sipoLocPulse 2.4s ease-out infinite;
}
@keyframes sipoLocPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
/* Dot positions — matched to sip_map_rgb-grau-grün ostschweiz_Startup Anlaufstellen
   reference (pixel-measured against the same base map artwork). */
#sipo-hp .sipo-st-anlauf__dot--sg    { top: 29%;   left: 67.5%; }
#sipo-hp .sipo-st-anlauf__dot--buchs { top: 36.5%; left: 68.5%; }
#sipo-hp .sipo-st-anlauf__dot--rw    { top: 35.5%; left: 59%; }

/* Labels: right-side callout area */
#sipo-hp .sipo-st-anlauf__lbl {
  position: absolute;
  z-index: 2;
}
#sipo-hp .sipo-st-anlauf__lbl strong {
  font-size: 15px;
  font-weight: 700;
  color: #32E211;
  line-height: 1.2;
  white-space: nowrap;
  display: block;
}
#sipo-hp .sipo-st-anlauf__lbl--sg    { top:  6%; left: 80%; }
#sipo-hp .sipo-st-anlauf__lbl--buchs { top: 15%; left: 80%; }
#sipo-hp .sipo-st-anlauf__lbl--rw   { top: 24%; left: 80%; }

/* Active dot: the one matching the selected tab fades in, others stay hidden */
#sipo-hp [data-active="sg"]    .sipo-st-anlauf__dot--sg,
#sipo-hp [data-active="buchs"] .sipo-st-anlauf__dot--buchs,
#sipo-hp [data-active="rw"]    .sipo-st-anlauf__dot--rw {
  opacity: 1;
}
#sipo-hp [data-active="sg"]    .sipo-st-anlauf__dot--sg::before,
#sipo-hp [data-active="buchs"] .sipo-st-anlauf__dot--buchs::before,
#sipo-hp [data-active="rw"]    .sipo-st-anlauf__dot--rw::before {
  box-shadow: 0 0 16px #fff, 0 0 36px rgba(255,255,255,0.75);
}

/* Tab navigation */
#sipo-hp .sipo-st-anlauf__tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 4px;
}
#sipo-hp .sipo-st-anlauf__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border: none;
  border-radius: 36px;
  background: transparent;
  color: rgba(240,240,245,0.45);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--si-font);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#sipo-hp .sipo-st-anlauf__tab-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(240,240,245,0.25);
  flex-shrink: 0;
  transition: background 0.2s;
}
#sipo-hp .sipo-st-anlauf__tab.is-active {
  background: rgba(50,226,17,0.12);
  color: #32E211;
}
#sipo-hp .sipo-st-anlauf__tab.is-active .sipo-st-anlauf__tab-dot {
  background: #32E211;
}

/* Person cards */
#sipo-hp .sipo-st-anlauf__cards {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: stretch;
}
#sipo-hp .sipo-st-anlauf__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a24;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#sipo-hp .sipo-st-anlauf__card.is-active {
  border-color: rgba(50,226,17,0.35);
  box-shadow: 0 4px 32px rgba(50,226,17,0.1);
}
#sipo-hp .sipo-st-anlauf__card-media {
  flex: 0 0 220px;
  overflow: hidden;
  background: #0e0e14;
}
#sipo-hp .sipo-st-anlauf__card-photo {
  width: 100%; height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
#sipo-hp .sipo-st-anlauf__card:hover .sipo-st-anlauf__card-photo { transform: scale(1.04); }
#sipo-hp .sipo-st-anlauf__card-initial {
  width: 100%; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 700;
  color: #32E211;
  background: #111120;
}
#sipo-hp .sipo-st-anlauf__card-body {
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#sipo-hp .sipo-st-anlauf__card-loc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #32E211;
  margin-bottom: 6px;
}
#sipo-hp .sipo-st-anlauf__card-name {
  font-size: 17px;
  font-weight: 700;
  color: #f0f0f5;
  line-height: 1.25;
  margin-bottom: 5px;
}
#sipo-hp .sipo-st-anlauf__card-role {
  font-size: 12px;
  color: rgba(240,240,245,0.45);
  line-height: 1.4;
  flex: 1;
}
#sipo-hp .sipo-st-anlauf__card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
  color: #32E211;
  text-decoration: none;
  transition: transform 0.2s;
}
#sipo-hp .sipo-st-anlauf__card-arrow:hover { transform: translateX(3px); }

/* Bottom tagline */
#sipo-hp .sipo-st-anlauf__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
#sipo-hp .sipo-st-anlauf__tagline p {
  font-size: 15px;
  color: rgba(240,240,245,0.55);
  margin: 0;
}
#sipo-hp .sipo-st-anlauf__tagline a {
  color: #32E211;
  text-decoration: none;
  font-weight: 600;
}
#sipo-hp .sipo-st-anlauf__tagline a:hover { text-decoration: underline; }

/* ── Förderprozess ── */
/* ── Förderprozess — Horizontal Funnel ── */
#sipo-hp .sipo-st-foerder {
  background: #f8f8fb;
  padding: 100px 0 80px;
  text-align: left;
}
#sipo-hp .sipo-st-foerder h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  margin-bottom: 20px;
  text-transform: uppercase;
}
#sipo-hp .sipo-st-funnel-intro {
  max-width: 580px;
  font-size: 17px;
  color: var(--si-muted);
  font-family: var(--si-font);
  line-height: 1.65;
  margin-bottom: 40px;
}

/* ── Startfeld Funnel — trapezoid process graphic ── */
#sipo-hp .sf-funnel { position: relative; }
#sipo-hp .sf-funnel-stages {
  position: relative;
  display: grid;
  grid-template-columns: 25% 18% 17% 17% 15% 8%;
  min-height: 400px;
}
#sipo-hp .sf-funnel-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0% 6%, 100% 22%, 100% 78%, 0% 94%);
  background: linear-gradient(90deg, rgba(50,226,17,.4) 0%, rgba(50,226,17,.85) 45%, #2c9c17 100%);
}
#sipo-hp .sf-funnel-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 0;
  z-index: 2;
  pointer-events: none;
}
#sipo-hp .sf-funnel-divider.is-solid { border-left: 3px solid rgba(255,255,255,.85); }
#sipo-hp .sf-funnel-divider.is-dashed { border-left: 2px dashed rgba(255,255,255,.4); }
#sipo-hp .sf-funnel-divider--1 { left: 25%; }
#sipo-hp .sf-funnel-divider--2 { left: 43%; }
#sipo-hp .sf-funnel-divider--3 { left: 60%; }
#sipo-hp .sf-funnel-divider--4 { left: 77%; }
#sipo-hp .sf-funnel-divider--5 { left: 92%; }
#sipo-hp .sf-funnel-stage,
#sipo-hp .sf-funnel-rocket-col {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  cursor: pointer;
  outline: none;
}
#sipo-hp .sf-funnel-rocket-col { display: flex; align-items: center; justify-content: center; }
#sipo-hp .sf-funnel-title,
#sipo-hp .sf-funnel-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  transition: opacity .25s ease, visibility 0s linear 0s;
}
#sipo-hp .sf-funnel-title {
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(0.85rem, 1.05vw, 1.05rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.01em;
  opacity: 1;
  visibility: visible;
}
#sipo-hp .sf-funnel-stage:hover .sf-funnel-title,
#sipo-hp .sf-funnel-stage:focus-visible .sf-funnel-title,
#sipo-hp .sf-funnel-stage.is-open .sf-funnel-title {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s, .2s;
}
#sipo-hp .sf-funnel-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: inherit;
}
#sipo-hp .sf-funnel-icon svg { width: 100%; height: 100%; }
#sipo-hp .sf-rocket {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
}
#sipo-hp .sf-rocket svg {
  width: 40px; height: 40px;
  stroke: #fff;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
  transform: rotate(30deg);
}
#sipo-hp .sf-funnel-panel {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  font-size: .82rem;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  pointer-events: none;
  transition-delay: 0s, .25s;
}
#sipo-hp .sf-funnel-panel p { margin: 0 0 8px; }
#sipo-hp .sf-funnel-panel p:last-child { margin-bottom: 0; }
#sipo-hp .sf-funnel-panel strong { font-weight: 800; }
#sipo-hp .sf-funnel-stage:hover .sf-funnel-panel,
#sipo-hp .sf-funnel-stage:focus-visible .sf-funnel-panel,
#sipo-hp .sf-funnel-stage.is-open .sf-funnel-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s;
}
#sipo-hp .sf-funnel-partners {
  font-size: .78rem;
  opacity: .8;
}
#sipo-hp .sf-highlight { font-weight: 800; }
#sipo-hp .sf-flow-arrow {
  width: 34px; height: 40px;
  margin: 6px auto;
  position: relative;
}
#sipo-hp .sf-flow-arrow::before {
  content: '';
  position: absolute;
  left: 16px; top: 0;
  width: 2px; height: 28px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.5);
  animation: sf-flow 1.8s ease-in-out infinite;
}
#sipo-hp .sf-flow-arrow::after {
  content: '';
  position: absolute;
  left: 7px; bottom: 2px;
  width: 18px; height: 18px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
  transform: rotate(45deg);
}
@keyframes sf-flow {
  0%, 100% { transform: scaleY(.72); transform-origin: top; opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}
#sipo-hp .sf-footer-hint {
  margin-top: 14px;
  color: #6f747d;
  font-size: .86rem;
  text-align: right;
}
@media (max-width: 900px) {
  #sipo-hp .sf-funnel-stages {
    display: block;
    min-height: auto;
  }
  #sipo-hp .sf-funnel-shape,
  #sipo-hp .sf-funnel-divider,
  #sipo-hp .sf-funnel-rocket-col { display: none; }
  #sipo-hp .sf-funnel-stage {
    display: block;
    text-align: left;
    padding: 22px 0;
    border-bottom: 1px dashed rgba(255,255,255,.22);
  }
  #sipo-hp .sf-funnel-stage:last-child { border-bottom: 0; }
  #sipo-hp .sf-funnel-title,
  #sipo-hp .sf-funnel-panel { position: static; display: block; text-align: left; padding: 0; }
  #sipo-hp .sf-funnel-panel,
  #sipo-hp .sf-funnel-stage:hover .sf-funnel-panel,
  #sipo-hp .sf-funnel-stage:focus-visible .sf-funnel-panel,
  #sipo-hp .sf-funnel-stage.is-open .sf-funnel-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 10px;
    color: #aeb3bc;
  }
}
#sipo-hp .sipo-st-funnel-intro strong { color: var(--si-ink); font-weight: 600; }

/* scrollable track */
#sipo-hp .sipo-st-funnel-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  /* subtle scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--si-pink) #e8e8ef;
}
#sipo-hp .sipo-st-funnel-scroll::-webkit-scrollbar { height: 4px; }
#sipo-hp .sipo-st-funnel-scroll::-webkit-scrollbar-track { background: #e8e8ef; border-radius: 2px; }
#sipo-hp .sipo-st-funnel-scroll::-webkit-scrollbar-thumb { background: var(--si-pink); border-radius: 2px; }

/* flex row: all cols + arrows */
#sipo-hp .sipo-st-funnel {
  display: flex;
  align-items: flex-start;
  width: max-content;
  min-width: 100%;
  padding: 8px 0 12px;
}

/* ── Step column (non-gate) ── */
#sipo-hp .sipo-st-funnel__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 118px;
  flex-shrink: 0;
  padding-top: 28px; /* space for gate eyebrow on gate items; keeps icon row aligned */
}

/* ── Gate wrapper (gate col + note below) ── */
#sipo-hp .sipo-st-funnel__gate-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* ── Gate column (has border) ── */
#sipo-hp .sipo-st-funnel__col--gate {
  position: relative;
  width: 138px;
  padding: 28px 14px 16px;
  border: 2px solid var(--si-pink);
  border-radius: 14px;
  background: rgba(212, 0, 85, 0.04);
}

/* eyebrow inside gate — absolutely positioned in top padding */
#sipo-hp .sipo-st-funnel__gate-eyebrow {
  position: absolute;
  top: 7px;
  left: 0; right: 0;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--si-pink);
  font-family: var(--si-font);
}

/* ── Arrow col ── */
/* icon center = padding-top(28) + half-icon(32) = 60px → arrow center at 60px */
/* arrow SVG is 20px → start at 50px */
#sipo-hp .sipo-st-funnel__arrow-col {
  flex-shrink: 0;
  width: 22px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  color: #c4c4cc;
}
#sipo-hp .sipo-st-funnel__arrow-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Icon circle ── */
#sipo-hp .sipo-st-funnel__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ebebf0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--si-ink);
}
#sipo-hp .sipo-st-funnel__col--gate .sipo-st-funnel__icon {
  background: #fff;
}
#sipo-hp .sipo-st-funnel__icon svg {
  width: 26px;
  height: 26px;
}

/* ── Step number ── */
#sipo-hp .sipo-st-funnel__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--si-pink);
  margin-top: 12px;
  font-family: var(--si-font);
}

/* ── Step title ── */
#sipo-hp .sipo-st-funnel__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--si-ink);
  margin-top: 5px;
  line-height: 1.3;
}

/* ── Step desc ── */
#sipo-hp .sipo-st-funnel__desc {
  font-size: 11px;
  color: var(--si-muted);
  margin-top: 4px;
  line-height: 1.45;
  font-family: var(--si-font);
}

/* ── Gate note (below border box) ── */
#sipo-hp .sipo-st-funnel__gate-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--si-muted);
  font-style: italic;
  font-family: var(--si-font);
  text-align: center;
  max-width: 138px;
  line-height: 1.35;
}
#sipo-hp .sipo-st-funnel__gate-diamond {
  color: var(--si-pink);
  font-size: 11px;
  font-style: normal;
}

/* ── Phase Diagram Funnel (.sipo-sf) ── */
#sipo-hp .sipo-sf {
  display: grid;
  grid-template-columns: 1fr 3px 1.5fr 2px 1fr 2px 1fr;
  min-height: 280px;
  margin: 32px 0 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background-color: #131318;
  /* Converging lines as background — always behind all content */
}
#sipo-hp .sipo-sf__col {
  display: flex;
  flex-direction: column;
}
#sipo-hp .sipo-sf__phase-label {
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #32E211;
  border-bottom: 1px solid rgba(50,226,17,0.25);
  background: rgba(50,226,17,0.05);
}
#sipo-hp .sipo-sf__inner {
  flex: 1;
  padding: 16px 16px 20px;
}
#sipo-hp .sipo-sf__inner--split {
  display: flex;
  gap: 0;
  padding: 0;
}
#sipo-hp .sipo-sf__sub-col {
  flex: 1;
  padding: 16px 14px 20px;
}
#sipo-hp .sipo-sf__inner-sep {
  width: 1px;
  align-self: stretch;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.18) 0px,
    rgba(255,255,255,0.18) 4px,
    transparent 4px,
    transparent 8px
  );
}
#sipo-hp .sipo-sf__sub-head {
  font-size: 13px;
  font-weight: 700;
  color: #f0f0f5;
  margin-bottom: 10px;
  line-height: 1.35;
}
#sipo-hp .sipo-sf p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(240,240,245,0.55);
  margin: 0;
}
#sipo-hp .sipo-sf__locations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
#sipo-hp .sipo-sf__loc {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
#sipo-hp .sipo-sf__loc strong {
  font-size: 11px;
  font-weight: 700;
  color: #f0f0f5;
  line-height: 1.2;
}
#sipo-hp .sipo-sf__loc span {
  font-size: 11px;
  color: rgba(240,240,245,0.45);
  line-height: 1.2;
}
#sipo-hp .sipo-sf__down-arrow { margin: 8px 0 6px; }
#sipo-hp .sipo-sf__service-note {
  font-size: 11px !important;
  color: rgba(240,240,245,0.38) !important;
  margin-top: 10px;
  line-height: 1.5;
}
#sipo-hp .sipo-sf__sep {
  position: relative;
  z-index: 1;
}
#sipo-hp .sipo-sf__sep--solid {
  background: rgba(240,240,245,0.28);
}
#sipo-hp .sipo-sf__sep--dashed {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.22) 0px,
    rgba(255,255,255,0.22) 5px,
    transparent 5px,
    transparent 10px
  );
}
#sipo-hp .sipo-sf__rocket {
  display: block;
  margin: 6px 0 8px;
}
#sipo-hp .sipo-sf__accel {
  font-size: 11px !important;
  font-weight: 600;
  color: rgba(240,240,245,0.55) !important;
  margin-bottom: 16px;
  line-height: 1.4;
}
#sipo-hp .sipo-sf__partners {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
#sipo-hp .sipo-sf__partner {
  font-size: 11px;
  color: rgba(240,240,245,0.5);
  line-height: 1.3;
}
#sipo-hp .sipo-sf__partner--green {
  color: #32E211;
  font-weight: 600;
}

/* ── Location CTA ── */
#sipo-hp .sipo-st-location-cta {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #e4e4ec;
}
#sipo-hp .sipo-st-location-cta__head {
  text-align: left;
  margin-bottom: 32px;
}
#sipo-hp .sipo-st-location-cta__head h3 {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  margin-bottom: 8px;
}
#sipo-hp .sipo-st-location-cta__head p {
  font-size: 16px;
  color: var(--si-muted);
  font-family: var(--si-font);
  margin: 0;
}
#sipo-hp .sipo-st-location-cta__grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
/* location cards */
#sipo-hp .sipo-st-location-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #fff;
  border: 1.5px solid #e4e4ec;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--si-ink);
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
}
#sipo-hp .sipo-st-location-card:hover {
  border-color: var(--si-pink);
  box-shadow: 0 4px 16px rgba(212,0,85,.12);
  transform: translateY(-2px);
  color: var(--si-pink);
}
#sipo-hp .sipo-st-location-card__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--si-pink);
  flex-shrink: 0;
}
#sipo-hp .sipo-st-location-card__icon svg { width: 22px; height: 22px; }
#sipo-hp .sipo-st-location-card__arrow { color: var(--si-pink); font-size: 16px; margin-left: 4px; }
/* big CTA button */
#sipo-hp .sipo-st-location-cta__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--si-btn-gradient);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
#sipo-hp .sipo-st-location-cta__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
#sipo-hp .sipo-st-location-cta__btn svg { flex-shrink: 0; }

/* ── Impact Dashboard ── */
#sipo-hp .sipo-st-impact {
  background: #fff;
  padding: 80px 0;
}
#sipo-hp .sipo-st-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
#sipo-hp .sipo-st-impact__stat {
  padding: 40px 24px;
  border: 1px solid #eee;
  border-radius: 16px;
  text-align: center;
}
#sipo-hp .sipo-st-impact__num {
  font-size: 56px;
  font-weight: 300;
  color: var(--si-ink);
  line-height: 1;
}
#sipo-hp .sipo-st-impact__num span { font-size: 32px; }
#sipo-hp .sipo-st-impact__label {
  font-size: 14px;
  color: #888;
  font-family: var(--si-font);
  margin-top: 12px;
  line-height: 1.4;
}
#sipo-hp .sipo-st-impact__note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: #bbb;
  font-family: var(--si-font);
}

/* ── Kontaktformular ── */
#sipo-hp .sipo-st-form-section {
  position: relative;
  background: #F5F5F7;
  padding: 100px 0;
  /* no overflow:hidden — crystal intentionally bleeds past the right edge */
}
#sipo-hp .sipo-st-form-section .sipo-container { position: relative; z-index: 1; }
#sipo-hp .sipo-st-form-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
/* Green crystal — sits behind the text/form, bleeds past the container's right edge,
   clipped only by the page's own overflow-x:hidden. Canvas is oversized (see JS EXPAND)
   so the particle field never hard-clips at the stage's own box. */
#sipo-hp .sipo-crystal-contact {
  position: absolute;
  z-index: 0;
  right: -260px;
  bottom: 20px;
  width: min(35vw, 450px);
  aspect-ratio: 1 / 1;
  pointer-events: auto;
}
#sipo-hp .sipo-crystal-contact canvas {
  position: absolute;
  display: block;
  pointer-events: none;
  transform: rotate(90deg);
}
@media (max-width: 900px) {
  #sipo-hp .sipo-crystal-contact { display: none; }
}
#sipo-hp .sipo-st-form-section__intro h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  margin-bottom: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}
#sipo-hp .sipo-st-form-section__intro p {
  font-size: 15px;
  color: #555;
  font-family: var(--si-font);
  line-height: 1.65;
  margin-bottom: 24px;
}
#sipo-hp .sipo-st-form-hints {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#sipo-hp .sipo-st-form-hints li {
  font-size: 14px;
  font-family: var(--si-font);
  color: #555;
  padding-left: 20px;
  position: relative;
}
#sipo-hp .sipo-st-form-hints li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--si-pink);
  font-weight: 700;
}
#sipo-hp .sipo-st-form {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
#sipo-hp .sipo-st-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}
#sipo-hp .sipo-st-form fieldset:last-child { margin-bottom: 0; }
#sipo-hp .sipo-st-form legend {
  display: block;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  color: var(--si-ink);
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--si-pink);
}
#sipo-hp .sipo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#sipo-hp .sipo-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
#sipo-hp .sipo-form-field label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  font-family: var(--si-font);
  letter-spacing: .06em;
  text-transform: uppercase;
}
#sipo-hp .sipo-form-field input,
#sipo-hp .sipo-form-field select,
#sipo-hp .sipo-form-field textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--si-font);
  color: var(--si-ink);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s;
  appearance: none;
}
#sipo-hp .sipo-form-field input:focus,
#sipo-hp .sipo-form-field select:focus,
#sipo-hp .sipo-form-field textarea:focus {
  outline: none;
  border-color: var(--si-pink);
  box-shadow: 0 0 0 3px rgba(232,0,116,.08);
}
#sipo-hp .sipo-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
#sipo-hp .sipo-form-field textarea { resize: vertical; min-height: 96px; }
#sipo-hp .sipo-form-field input[type="file"] {
  padding: 8px 12px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  background: #fafafa;
}
#sipo-hp .sipo-form-field input[type="checkbox"],
#sipo-hp .sipo-form-field input[type="radio"] {
  width: auto;
  accent-color: var(--si-pink);
}
#sipo-hp .sipo-form-radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 4px 0;
}
#sipo-hp .sipo-form-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-family: var(--si-font);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--si-ink);
}
#sipo-hp .sipo-form-file-label {
  font-size: 12px;
  color: #aaa;
  font-family: var(--si-font);
}
#sipo-hp .sipo-form-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--si-pink);
  border-radius: 12px;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--si-pink);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: left;
  font-family: inherit;
  letter-spacing: .01em;
}
#sipo-hp .sipo-form-toggle:hover,
#sipo-hp .sipo-form-toggle.is-open {
  background: var(--si-pink);
  color: #fff;
}
#sipo-hp .sipo-form-toggle__icon {
  flex-shrink: 0;
  transition: transform .3s;
}
#sipo-hp .sipo-form-toggle.is-open .sipo-form-toggle__icon {
  transform: rotate(180deg);
}
#sipo-hp .sipo-form-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  margin-top: 0;
}
#sipo-hp .sipo-form-body.is-open {
  max-height: 9999px;
  margin-top: 16px;
}
#sipo-hp .sipo-form-submit {
  background: var(--si-btn-gradient);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 44px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .02em;
  transition: opacity .2s;
  margin-top: 8px;
}
#sipo-hp .sipo-form-submit:hover { opacity: .85; }
#sipo-hp #sipo-form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid #5CB83A;
  border-radius: 14px;
  padding: 48px 32px;
  text-align: center;
  color: #2a6020;
  margin-bottom: 24px;
}
#sipo-hp #sipo-form-success.is-visible { display: block; }
#sipo-hp #sipo-form-success svg { display: block; margin: 0 auto 16px; }
#sipo-hp #sipo-form-success h3 { font-size: 22px; margin-bottom: 8px; }
#sipo-hp #sipo-form-success p { font-family: var(--si-font); font-size: 16px; }

/* ── FAQ ── */
#sipo-hp .sipo-st-faq {
  background: #F5F5F7;
  padding: 100px 0;
  text-align: left;
}
#sipo-hp .sipo-st-faq h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  margin-bottom: 48px;
  text-transform: uppercase;
}
#sipo-hp .sipo-st-faq__list {
  max-width: 800px;
}
#sipo-hp .sipo-faq__item {
  border-bottom: 1px solid #ddd;
}
#sipo-hp .sipo-faq__item:first-of-type { border-top: 1px solid #ddd; }
#sipo-hp .sipo-faq__q {
  list-style: none;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--si-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
#sipo-hp .sipo-faq__q::-webkit-details-marker { display: none; }
#sipo-hp .sipo-faq__q::after {
  content: '+';
  color: var(--si-pink);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
#sipo-hp details[open] .sipo-faq__q::after { content: '−'; }
#sipo-hp .sipo-faq__a {
  padding: 0 0 20px;
  font-size: 15px;
  color: #555;
  font-family: var(--si-font);
  line-height: 1.7;
}
#sipo-hp .sipo-faq__a a {
  color: var(--si-pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#sipo-hp .sipo-faq__a a:hover { text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  #sipo-hp .sipo-st-hero__grid { grid-template-columns: 1fr; }
  #sipo-hp .sipo-st-hero__logo-wrap { display: none; }
  #sipo-hp .sipo-st-anlauf__body { flex-direction: column; }
  #sipo-hp .sipo-st-anlauf__map-col { flex: none; max-width: 100%; width: 100%; }
  #sipo-hp .sipo-st-anlauf__head h2 { font-size: 32px; }
  #sipo-hp .sipo-st-form-section__inner { grid-template-columns: 1fr; gap: 40px; }
  #sipo-hp .sipo-st-impact__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  #sipo-hp .sipo-st-impact__num { font-size: 40px; }
  #sipo-hp .sipo-st-foerder h2 { font-size: 32px; }
  /* funnel fits in scrollable container — no override needed */
}
@media (max-width: 768px) {
  #sipo-hp .sipo-st-hero { padding: 145px 0 60px; }
  #sipo-hp .sipo-st-impact__grid { grid-template-columns: 1fr; }
  #sipo-hp .sipo-st-anlauf__cards { flex-direction: column; }
  #sipo-hp .sipo-st-anlauf__card-media { flex: 0 0 180px; }
  #sipo-hp .sipo-st-anlauf__card-photo,
  #sipo-hp .sipo-st-anlauf__card-initial { height: 180px; }
  #sipo-hp .sipo-form-row { grid-template-columns: 1fr; }
  #sipo-hp .sipo-st-form { padding: 28px 20px; }
  #sipo-hp .sipo-st-form-section__intro h2,
  #sipo-hp .sipo-st-faq h2 { font-size: 32px; }
  /* narrower step cols on small screens */
  #sipo-hp .sipo-st-funnel__col { width: 100px; }
  #sipo-hp .sipo-st-funnel__col--gate { width: 120px; }
  #sipo-hp .sipo-st-funnel__gate-note { max-width: 120px; }
  #sipo-hp .sipo-st-funnel__icon { width: 56px; height: 56px; }
  #sipo-hp .sipo-st-funnel__icon svg { width: 22px; height: 22px; }
  /* recalculate arrow padding for smaller icon (28 + 28 - 10 = 46) */
  #sipo-hp .sipo-st-funnel__arrow-col { padding-top: 46px; }
  /* location CTA stack */
  #sipo-hp .sipo-st-location-cta__grid { flex-direction: column; }
  #sipo-hp .sipo-st-location-card,
  #sipo-hp .sipo-st-location-cta__btn { justify-content: center; }
  #sipo-hp .sipo-st-location-cta__head h3 { font-size: 32px; }
  /* phase diagram funnel: stack vertically on mobile */
  #sipo-hp .sipo-sf {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  #sipo-hp .sipo-sf__sep--solid,
  #sipo-hp .sipo-sf__sep--dashed {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.12);
  }
  #sipo-hp .sipo-sf__inner--split { flex-direction: column; }
  #sipo-hp .sipo-sf__inner-sep {
    width: 100%;
    height: 1px;
    align-self: auto;
    background: repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.18) 0px,
      rgba(255,255,255,0.18) 4px,
      transparent 4px,
      transparent 8px
    );
  }
}


/* ═══════════════════════════════════════════════════════════════
   STARTUPS PAGE — DARK MODE + SF GRÜN ACCENT
   Scoped to .sipo-startups-page — does not affect any other page
   ═══════════════════════════════════════════════════════════════ */

/* Override CSS variables — every var(--si-pink) becomes green */
#sipo-hp .sipo-startups-page {
  --si-pink:   #32E211;
  --si-ink:    #f0f0f5;
  --si-muted:  rgba(240,240,245,0.52);
  --si-paper:  #1b1b24;
  --si-border: rgba(255,255,255,0.09);
}

/* ── Base page background ── */
#sipo-hp .sipo-startups-page { background: #0e0e14; color: #f0f0f5; }

/* ── Hero ── */
#sipo-hp .sipo-startups-page .sipo-st-hero { background: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-hero__title { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-st-hero__typed { color: #32E211; }
#sipo-hp .sipo-startups-page .sipo-hero__lede { color: rgba(240,240,245,0.6); }

/* ── Buttons ── */
/* Primary: bright green, dark text for contrast */
#sipo-hp .sipo-startups-page .sipo-btn-primary {
  background: #32E211;
  color: #0e0e14;
}
#sipo-hp .sipo-startups-page .sipo-btn-primary:hover { background: #28c00d; }
/* Secondary: outlined in light */
#sipo-hp .sipo-startups-page .sipo-btn-secondary {
  color: #f0f0f5;
  border-color: rgba(240,240,245,0.3);
}
#sipo-hp .sipo-startups-page .sipo-btn-secondary:hover { background: #f0f0f5; color: #0e0e14; }

/* ── Eyebrow labels ── */
#sipo-hp .sipo-startups-page .sipo-eyebrow { color: #32E211; }

/* ── Anlaufstelle (new .sipo-st-anlauf__* classes are natively dark-styled) ── */
#sipo-hp .sipo-startups-page .sipo-st-anlaufstelle { background: #131318; }

/* ── Förderprozess ── */
#sipo-hp .sipo-startups-page .sipo-st-foerder { background: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-st-foerder h2 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-st-funnel-intro { color: rgba(240,240,245,0.6); }
#sipo-hp .sipo-startups-page .sipo-st-funnel-intro strong { color: #f0f0f5; }
/* funnel step icons */
#sipo-hp .sipo-startups-page .sipo-st-funnel__icon { background: #1b1b24; color: rgba(240,240,245,0.75); }
#sipo-hp .sipo-startups-page .sipo-st-funnel__title { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-st-funnel__desc { color: rgba(240,240,245,0.45); }
#sipo-hp .sipo-startups-page .sipo-st-funnel__arrow-col { color: rgba(255,255,255,0.18); }
/* scrollbar in dark */
#sipo-hp .sipo-startups-page .sipo-st-funnel-scroll::-webkit-scrollbar-track { background: #1b1b24; }
/* decision gates — subtle, not prominent */
#sipo-hp .sipo-startups-page .sipo-st-funnel__col--gate {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(50,226,17,0.2);
  border-radius: 14px;
}
#sipo-hp .sipo-startups-page .sipo-st-funnel__col--gate .sipo-st-funnel__icon { background: #222230; }
#sipo-hp .sipo-startups-page .sipo-st-funnel__gate-eyebrow {
  color: rgba(50,226,17,0.5);
  font-size: 7.5px;
}
#sipo-hp .sipo-startups-page .sipo-st-funnel__gate-note { color: rgba(240,240,245,0.28); }
#sipo-hp .sipo-startups-page .sipo-st-funnel__gate-diamond { color: rgba(50,226,17,0.4); }
/* location CTA */
#sipo-hp .sipo-startups-page .sipo-st-location-cta { border-color: rgba(255,255,255,0.07); }
#sipo-hp .sipo-startups-page .sipo-st-location-cta__head h3 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-st-location-cta__head p { color: rgba(240,240,245,0.52); }
#sipo-hp .sipo-startups-page .sipo-st-location-card {
  background: #1b1b24;
  border-color: rgba(255,255,255,0.07);
  color: #f0f0f5;
}
#sipo-hp .sipo-startups-page .sipo-st-location-card:hover {
  border-color: rgba(50,226,17,0.4);
  box-shadow: 0 4px 20px rgba(50,226,17,0.1);
  color: #32E211;
}
#sipo-hp .sipo-startups-page .sipo-st-location-cta__btn { background: #32E211; color: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-st-location-cta__btn:hover { background: #28c00d; }

/* ── Award Banner ── */
#sipo-hp .sipo-st-award {
  background: #0e0e14;
  padding: 48px 0;
}
#sipo-hp .sipo-st-award__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(50,226,17,0.25);
  border-radius: 20px;
  padding: 36px 48px;
}
#sipo-hp .sipo-st-award__badge {
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sipo-hp .sipo-st-award__img {
  width: 180px;
  height: auto;
  display: block;
}
#sipo-hp .sipo-st-award__copy { flex: 1; }
#sipo-hp .sipo-st-award__copy .sipo-eyebrow { margin-bottom: 10px; display: block; }
#sipo-hp .sipo-st-award__text {
  color: rgba(240,240,245,0.75);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}
#sipo-hp .sipo-st-award__text strong { color: #f0f0f5; }
@media (max-width: 640px) {
  #sipo-hp .sipo-st-award__inner { flex-direction: column; gap: 24px; padding: 24px; }
  #sipo-hp .sipo-st-award__img { width: 140px; }
  #sipo-hp .sipo-startups-page .sipo-st-impact h2 { font-size: 32px; }
}

/* ── Impact ── */
#sipo-hp .sipo-startups-page .sipo-st-impact { background: #131318; }
#sipo-hp .sipo-startups-page .sipo-st-impact h2 {
  color: #f0f0f5;
  font-weight: 300;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
#sipo-hp .sipo-startups-page .sipo-st-impact__stat {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
#sipo-hp .sipo-startups-page .sipo-st-impact__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12), 0 0 0 1px rgba(50,226,17,.18);
}
#sipo-hp .sipo-startups-page .sipo-st-impact__num { color: #32E211; }
#sipo-hp .sipo-startups-page .sipo-st-impact__label { color: rgba(240,240,245,0.65); }
#sipo-hp .sipo-startups-page .sipo-st-impact__note { color: rgba(240,240,245,0.35); }

/* ── Geförderte Startups Band (under Zahlen) ── */
#sipo-hp .sipo-st-startup-band {
  padding-top: 56px;
}
#sipo-hp .sipo-st-startup-band__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,240,245,0.35);
  margin: 0 0 20px;
}
#sipo-hp .sipo-st-startup-band__wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
#sipo-hp .sipo-st-startup-band__band {
  flex: 1;
  min-width: 0;
}
#sipo-hp .sipo-st-startup-band .sipo-partner-band__track {
  animation-duration: 200s;
}
/* Nav buttons — hidden until hover on the wrap */
#sipo-hp .sipo-st-startup-band__nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(240,240,245,0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
#sipo-hp .sipo-st-startup-band__wrap:hover .sipo-st-startup-band__nav {
  opacity: 1;
}
#sipo-hp .sipo-st-startup-band__nav:hover {
  background: rgba(50,226,17,0.12);
  border-color: rgba(50,226,17,0.4);
  color: #32E211;
}
#sipo-hp .sipo-st-startup-band__name {
  color: rgba(240,240,245,0.7);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 4px;
}

/* ── Kontaktformular ── */
#sipo-hp .sipo-startups-page .sipo-st-form-section { background: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-st-form-section__intro h2 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-st-form-section__intro p { color: rgba(240,240,245,0.6); }
#sipo-hp .sipo-startups-page .sipo-st-form-hints li { color: rgba(240,240,245,0.55); }
#sipo-hp .sipo-startups-page .sipo-st-form-hints li::before {
  content: '';
  background: #32E211;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
#sipo-hp .sipo-startups-page .sipo-st-form { background: #1b1b24; border-color: rgba(255,255,255,0.05); }
#sipo-hp .sipo-startups-page .sipo-st-form fieldset { border-color: rgba(255,255,255,0.06); }
#sipo-hp .sipo-startups-page .sipo-st-form legend { color: #32E211; background: #1b1b24; }
#sipo-hp .sipo-startups-page .sipo-st-form label { color: rgba(240,240,245,0.75); }
#sipo-hp .sipo-startups-page .sipo-st-form input,
#sipo-hp .sipo-startups-page .sipo-st-form select,
#sipo-hp .sipo-startups-page .sipo-st-form textarea {
  background: #222230;
  border-color: rgba(255,255,255,0.1);
  color: #f0f0f5;
  color-scheme: dark;
}
#sipo-hp .sipo-startups-page .sipo-st-form input:focus,
#sipo-hp .sipo-startups-page .sipo-st-form select:focus,
#sipo-hp .sipo-startups-page .sipo-st-form textarea:focus {
  border-color: #32E211;
  box-shadow: 0 0 0 3px rgba(50,226,17,0.1);
}
#sipo-hp .sipo-startups-page .sipo-st-form input::placeholder,
#sipo-hp .sipo-startups-page .sipo-st-form textarea::placeholder { color: rgba(240,240,245,0.28); }
#sipo-hp .sipo-startups-page .sipo-st-form input[type="radio"],
#sipo-hp .sipo-startups-page .sipo-st-form input[type="checkbox"] { accent-color: #32E211; }
#sipo-hp .sipo-startups-page .sipo-form-file-label { color: rgba(240,240,245,0.35); }
#sipo-hp .sipo-startups-page .sipo-form-radio-group label { color: rgba(240,240,245,0.75); }
/* form toggle button */
#sipo-hp .sipo-startups-page .sipo-form-toggle {
  background: #1b1b24;
  border-color: #32E211;
  color: #32E211;
}
#sipo-hp .sipo-startups-page .sipo-form-toggle:hover,
#sipo-hp .sipo-startups-page .sipo-form-toggle.is-open { background: #32E211; color: #0e0e14; }
/* submit */
#sipo-hp .sipo-startups-page .sipo-form-submit { background: #32E211; color: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-form-submit:hover { background: #28c00d; }

/* ── Geförderte Startups + Partner ── */
#sipo-hp .sipo-startups-page .sipo-st-partner,
#sipo-hp .sipo-startups-page .sipo-ecosystem { background: #131318; }
#sipo-hp .sipo-startups-page .sipo-st-partner .sipo-eyebrow,
#sipo-hp .sipo-startups-page .sipo-st-startups-band .sipo-eyebrow { color: #32E211; }
#sipo-hp .sipo-startups-page .sipo-ecosystem__head h2 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-partner-band__fade--left { background: linear-gradient(to right, #131318, transparent); }
#sipo-hp .sipo-startups-page .sipo-partner-band__fade--right { background: linear-gradient(to left, #131318, transparent); }
/* Keep white card background so logos remain legible on dark page */
#sipo-hp .sipo-startups-page .sipo-partner-ticker__item { background: #fff; }
/* Faded grayscale default was too low-contrast against the white card — darken/sharpen the logos */
#sipo-hp .sipo-startups-page .sipo-partner-ticker__item img { filter: grayscale(0.4) opacity(0.95); }
@media (hover: hover) and (pointer: fine) {
  #sipo-hp .sipo-startups-page .sipo-partner-ticker__item:hover img { filter: grayscale(0) opacity(1); }
}
/* Partners without a logo fall back to text — the page's light --si-muted is unreadable on this white card */
#sipo-hp .sipo-startups-page .sipo-partner-ticker__item span { color: #3a3d44; }

/* ── Events ── */
#sipo-hp .sipo-startups-page .sipo-events-section { background: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-events-intro h2 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-events-intro p { color: rgba(240,240,245,0.55); }
#sipo-hp .sipo-startups-page .sipo-event-month { color: #32E211; border-color: rgba(50,226,17,0.2); }
#sipo-hp .sipo-startups-page .sipo-event-row { border-color: rgba(255,255,255,0.06); }
#sipo-hp .sipo-startups-page .sipo-event-date { color: rgba(240,240,245,0.4); }
#sipo-hp .sipo-startups-page .sipo-event-title { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-event-title:hover { color: #32E211; }

/* ── FAQ ── */
#sipo-hp .sipo-startups-page .sipo-st-faq { background: #131318; }
#sipo-hp .sipo-startups-page .sipo-st-faq h2 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-faq__item { border-color: rgba(255,255,255,0.07); }
#sipo-hp .sipo-startups-page .sipo-faq__q { color: #f0f0f5; }
#sipo-hp .sipo-startups-page details.sipo-faq__item[open] > .sipo-faq__q { color: #32E211; }
#sipo-hp .sipo-startups-page .sipo-faq__a {
  color: rgba(240,240,245,0.62);
  background: transparent;
}

/* ── Newsletter ── */
#sipo-hp .sipo-startups-page .sipo-newsletter-section { background: #1b1b24; }
#sipo-hp .sipo-startups-page .sipo-newsletter-section::before { background: #32E211; }
#sipo-hp .sipo-startups-page .sipo-newsletter-section__text h2 { color: #f0f0f5; }
#sipo-hp .sipo-startups-page .sipo-newsletter-section__text p { color: rgba(240,240,245,0.55); }
#sipo-hp .sipo-startups-page .sipo-newsletter-card { background: #222230; border-color: rgba(255,255,255,0.06); }
#sipo-hp .sipo-startups-page .sipo-newsletter-card__label { color: rgba(240,240,245,0.45); }
#sipo-hp .sipo-startups-page .sipo-newsletter-section__form input[type="email"] {
  background: #2a2a3c;
  border-color: rgba(255,255,255,0.1);
  color: #f0f0f5;
  color-scheme: dark;
}
#sipo-hp .sipo-startups-page .sipo-newsletter-section__form input[type="email"]:focus { border-color: #32E211; }
#sipo-hp .sipo-startups-page .sipo-newsletter-section__form button { background: #32E211; color: #0e0e14; }
#sipo-hp .sipo-startups-page .sipo-newsletter-section__form button:hover { background: #28c00d; }

/* ════════════════════════════════════════════════════════
   FINANZIERUNG PAGE — Dark theme (Elementor overrides)
   ════════════════════════════════════════════════════════ */
body.sipo-finanzierung-page {
  background: #0e0e14;
  color: #f0f0f5;
}

/* Section + column backgrounds */
body.sipo-finanzierung-page .elementor-section,
body.sipo-finanzierung-page .elementor-top-section,
body.sipo-finanzierung-page .e-con {
  background-color: #0e0e14 !important;
  background-image: none !important;
}
body.sipo-finanzierung-page .elementor-section:nth-child(odd),
body.sipo-finanzierung-page .e-con:nth-child(odd) {
  background-color: #131318 !important;
}
body.sipo-finanzierung-page .elementor-column-wrap,
body.sipo-finanzierung-page .elementor-widget-wrap,
body.sipo-finanzierung-page .elementor-column {
  background-color: transparent !important;
}

/* Headings */
body.sipo-finanzierung-page .elementor-heading-title {
  color: #f0f0f5 !important;
  font-weight: 300;
}
/* H6 eyebrow — green + uppercase */
body.sipo-finanzierung-page h6.elementor-heading-title,
body.sipo-finanzierung-page .elementor-widget-heading[data-widget_type="heading.default"] h6 {
  color: #32E211 !important;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
}
/* H2 subheadings */
body.sipo-finanzierung-page h2.elementor-heading-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

/* Body text */
body.sipo-finanzierung-page .elementor-widget-text-editor,
body.sipo-finanzierung-page .elementor-widget-text-editor p,
body.sipo-finanzierung-page .elementor-text-editor p {
  color: rgba(240,240,245,0.72) !important;
  line-height: 1.65;
}
body.sipo-finanzierung-page .elementor-widget-text-editor strong,
body.sipo-finanzierung-page .elementor-widget-text-editor b {
  color: #f0f0f5 !important;
}

/* Buttons */
body.sipo-finanzierung-page .elementor-button-wrapper .elementor-button,
body.sipo-finanzierung-page .elementor-widget-button .elementor-button {
  background: #32E211 !important;
  color: #0a0f04 !important;
  border-color: #32E211 !important;
  font-weight: 700;
  border-radius: 6px;
}
body.sipo-finanzierung-page .elementor-button-wrapper .elementor-button:hover,
body.sipo-finanzierung-page .elementor-widget-button .elementor-button:hover {
  background: #28c00d !important;
  border-color: #28c00d !important;
}

/* Icon lists */
body.sipo-finanzierung-page .elementor-icon-list-text {
  color: rgba(240,240,245,0.72) !important;
}
body.sipo-finanzierung-page .elementor-icon-list-icon {
  display: none !important;
}
body.sipo-finanzierung-page .elementor-icon-list-item {
  position: relative !important;
  padding-left: 18px !important;
}
body.sipo-finanzierung-page .elementor-icon-list-item::before {
  content: '•' !important;
  position: absolute !important;
  left: 0 !important;
  color: #32E211 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
}

/* Image widgets — subtle shadow */
body.sipo-finanzierung-page .elementor-widget-image img {
  border-radius: 12px;
}

/* Dividers */
body.sipo-finanzierung-page .elementor-divider-separator {
  border-color: rgba(255,255,255,.1) !important;
}

/* Links */
body.sipo-finanzierung-page a:not(.elementor-button):not(.sipo-header__cta) {
  color: #32E211;
}
body.sipo-finanzierung-page a:not(.elementor-button):not(.sipo-header__cta):hover {
  color: #fff;
}

/* Page title (Hello Elementor default) */
body.sipo-finanzierung-page .entry-title,
body.sipo-finanzierung-page .page-title {
  color: #f0f0f5;
}

/* Site wrapper */
body.sipo-finanzierung-page #page,
body.sipo-finanzierung-page .site {
  background: #0e0e14;
}

/* ── Section padding (matches Startups section rhythm) ── */
body.sipo-finanzierung-page .elementor-section > .elementor-container {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
body.sipo-finanzierung-page .elementor-section:first-child > .elementor-container {
  padding-top: 120px !important;
  padding-bottom: 100px !important;
}

/* ── Hero section (first section) — dark hero style ── */
body.sipo-finanzierung-page .elementor-section:first-child {
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}
body.sipo-finanzierung-page .elementor-section:first-child::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(50,226,17,.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero heading treatment — "FINANZIERUNG" large + thin */
body.sipo-finanzierung-page .elementor-section:first-child h1.elementor-heading-title,
body.sipo-finanzierung-page .elementor-section:first-child h2.elementor-heading-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem) !important;
  font-weight: 200 !important;
  letter-spacing: .04em;
  line-height: 1.05;
  color: #fff !important;
}
/* "Startup" eyebrow in first section → green */
body.sipo-finanzierung-page .elementor-section:first-child h6.elementor-heading-title,
body.sipo-finanzierung-page .elementor-section:first-child .elementor-heading-title[class*="h6"] {
  font-size: .85rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #32E211 !important;
  margin-bottom: 16px;
}
/* Hero image — larger and no extra radius */
body.sipo-finanzierung-page .elementor-section:first-child .elementor-widget-image img {
  border-radius: 0;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,.5));
}

/* ── Accordion / Toggle widget ── */
/* ── Accordion / Toggle – Finanzierung (Green-Border Card) ── */
body.sipo-finanzierung-page .elementor-toggle-item,
body.sipo-finanzierung-page .elementor-tab-item {
  margin-bottom: 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 2px solid #32E211 !important;
  background: #1a1a20 !important;
}
body.sipo-finanzierung-page .elementor-toggle-title,
body.sipo-finanzierung-page .elementor-tab-title {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #32E211 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  padding: 22px 26px !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
}
body.sipo-finanzierung-page .elementor-toggle-title:hover,
body.sipo-finanzierung-page .elementor-tab-title:hover {
  color: #32E211 !important;
}
body.sipo-finanzierung-page .elementor-toggle-title.elementor-active,
body.sipo-finanzierung-page .elementor-tab-title.elementor-active {
  color: #32E211 !important;
}
body.sipo-finanzierung-page .elementor-toggle-icon,
body.sipo-finanzierung-page .elementor-tab-icon {
  color: #32E211 !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
}
body.sipo-finanzierung-page .elementor-tab-content,
body.sipo-finanzierung-page .elementor-toggle-content {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid rgba(50,226,17,.2) !important;
  border-radius: 0 !important;
  color: rgba(240,240,245,.72) !important;
  padding: 20px 26px 26px !important;
  line-height: 1.75 !important;
}

/* ── Content section layout (image + text) ── */
body.sipo-finanzierung-page .elementor-section:not(:first-child) .elementor-widget-image img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

/* ── Contact / CTA card (last section) ── */
body.sipo-finanzierung-page .elementor-section:last-of-type {
  background: #131318 !important;
}
body.sipo-finanzierung-page .elementor-section:last-of-type h2.elementor-heading-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  font-weight: 300 !important;
}
body.sipo-finanzierung-page .elementor-section:last-of-type .elementor-widget-image img {
  border-radius: 50%;
  width: 180px !important;
  height: 180px !important;
  object-fit: cover;
  border: 3px solid rgba(50,226,17,.35);
  filter: grayscale(20%);
}

/* ── Heading font weight refinement ── */
body.sipo-finanzierung-page h3.elementor-heading-title {
  font-size: clamp(1.25rem, 2vw, 1.6rem) !important;
  font-weight: 400 !important;
  color: #f0f0f5 !important;
}

/* ════════════════════════════════════════════════════════
   MIETER / RÄUME PAGE — Dark theme (Elementor overrides)
   Pages: 3365, 28372 (main) + 3414, 5954, 20832 + WPML
   ════════════════════════════════════════════════════════ */

/* ── Base ── */
body.sipo-mieter-page {
  background: #0e0e14;
  color: #f0f0f5;
}
body.sipo-mieter-page #page,
body.sipo-mieter-page .site {
  background: #0e0e14;
}

/* ── Sections: dark, strip BG images ── */
body.sipo-mieter-page .elementor-section,
body.sipo-mieter-page .elementor-top-section,
body.sipo-mieter-page .e-con {
  background-color: #0e0e14 !important;
  background-image: none !important;
}
body.sipo-mieter-page .elementor-section:nth-child(even),
body.sipo-mieter-page .e-con:nth-child(even) {
  background-color: #131318 !important;
}
body.sipo-mieter-page .elementor-column-wrap,
body.sipo-mieter-page .elementor-widget-wrap,
body.sipo-mieter-page .elementor-column {
  background-color: transparent !important;
  background-image: none !important;
}

/* ── Section padding (Startups rhythm) ── */
body.sipo-mieter-page .elementor-section > .elementor-container {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
body.sipo-mieter-page .elementor-section:first-child > .elementor-container {
  padding-top: 120px !important;
  padding-bottom: 100px !important;
}

/* ── Hero (first section on every Mieter page) ── */
body.sipo-mieter-page .elementor-section:first-child {
  background: #1a1a1a !important;
  position: relative;
  overflow: hidden;
}
body.sipo-mieter-page .elementor-section:first-child::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(50,226,17,.10) 0%, transparent 70%);
  pointer-events: none;
}
/* H6 eyebrow in hero → green */
body.sipo-mieter-page .elementor-section:first-child h6.elementor-heading-title {
  color: #32E211 !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
}
/* Main hero heading → large + thin */
body.sipo-mieter-page .elementor-section:first-child h1.elementor-heading-title,
body.sipo-mieter-page .elementor-section:first-child h2.elementor-heading-title {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem) !important;
  font-weight: 200 !important;
  letter-spacing: .03em;
  line-height: 1.08;
  color: #fff !important;
}
/* Hero image */
body.sipo-mieter-page .elementor-section:first-child .elementor-widget-image img {
  border-radius: 0;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,.5));
}

/* ── Global headings ── */
body.sipo-mieter-page .elementor-heading-title {
  color: #f0f0f5 !important;
  font-weight: 300;
}
body.sipo-mieter-page h1.elementor-heading-title {
  font-size: clamp(2rem, 4vw, 3.8rem) !important;
  font-weight: 200 !important;
  line-height: 1.08;
}
body.sipo-mieter-page h2.elementor-heading-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  font-weight: 300 !important;
  line-height: 1.1;
}
body.sipo-mieter-page h3.elementor-heading-title {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem) !important;
  font-weight: 400 !important;
}
/* Any H6 anywhere → eyebrow green */
body.sipo-mieter-page h6.elementor-heading-title {
  color: #32E211 !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Body text ── */
body.sipo-mieter-page .elementor-widget-text-editor,
body.sipo-mieter-page .elementor-widget-text-editor p,
body.sipo-mieter-page .elementor-text-editor p {
  color: rgba(240,240,245,.72) !important;
  line-height: 1.65;
}
body.sipo-mieter-page .elementor-widget-text-editor strong,
body.sipo-mieter-page .elementor-widget-text-editor b {
  color: #f0f0f5 !important;
}

/* ── Buttons ── */
body.sipo-mieter-page .elementor-button-wrapper .elementor-button,
body.sipo-mieter-page .elementor-widget-button .elementor-button {
  background: #32E211 !important;
  color: #0a0f04 !important;
  border-color: #32E211 !important;
  font-weight: 700;
  border-radius: 6px;
}
body.sipo-mieter-page .elementor-button-wrapper .elementor-button:hover,
body.sipo-mieter-page .elementor-widget-button .elementor-button:hover {
  background: #28c00d !important;
  border-color: #28c00d !important;
}

/* ── Dividers ── */
body.sipo-mieter-page .elementor-divider-separator {
  border-color: rgba(255,255,255,.1) !important;
}

/* ── Links ── */
body.sipo-mieter-page a:not(.elementor-button):not(.sipo-header__cta) {
  color: #32E211;
}
body.sipo-mieter-page a:not(.elementor-button):not(.sipo-header__cta):hover {
  color: #fff;
}

/* ── Icon lists ── */
body.sipo-mieter-page .elementor-icon-list-text {
  color: rgba(240,240,245,.72) !important;
}
body.sipo-mieter-page .elementor-icon-list-icon i,
body.sipo-mieter-page .elementor-icon-list-icon svg {
  color: #32E211 !important;
  fill: #32E211 !important;
}

/* ── Toggle / Accordion ── */
body.sipo-mieter-page .elementor-toggle-title,
body.sipo-mieter-page .elementor-tab-title {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 8px !important;
  color: #f0f0f5 !important;
  font-weight: 400;
  padding: 14px 20px !important;
  margin-bottom: 8px !important;
  transition: background .2s, border-color .2s;
}
body.sipo-mieter-page .elementor-toggle-title:hover,
body.sipo-mieter-page .elementor-tab-title:hover {
  background: rgba(50,226,17,.07) !important;
  border-color: rgba(50,226,17,.28) !important;
}
body.sipo-mieter-page .elementor-toggle-title.elementor-active,
body.sipo-mieter-page .elementor-tab-title.elementor-active {
  background: rgba(50,226,17,.10) !important;
  border-color: rgba(50,226,17,.4) !important;
  color: #32E211 !important;
}
body.sipo-mieter-page .elementor-toggle-icon,
body.sipo-mieter-page .elementor-tab-icon {
  color: #32E211 !important;
}
body.sipo-mieter-page .elementor-tab-content,
body.sipo-mieter-page .elementor-toggle-content {
  background: rgba(255,255,255,.02) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  color: rgba(240,240,245,.72) !important;
  padding: 16px 20px !important;
  margin-bottom: 8px !important;
}

/* ── Slides widget ── */
body.sipo-mieter-page .elementor-slides .swiper-slide-inner {
  background-color: rgba(20,20,26,.75) !important;
}
body.sipo-mieter-page .elementor-slides .elementor-slide-heading {
  color: #f0f0f5 !important;
}
body.sipo-mieter-page .elementor-slides .elementor-slide-description {
  color: rgba(240,240,245,.72) !important;
}
body.sipo-mieter-page .elementor-slides .swiper-pagination-bullet {
  background: rgba(255,255,255,.4) !important;
}
body.sipo-mieter-page .elementor-slides .swiper-pagination-bullet-active {
  background: #32E211 !important;
}

/* ── Testimonials widget ── */
body.sipo-mieter-page .startfeld-testimonials,
body.sipo-mieter-page [class*="testimonial"] {
  background: transparent !important;
  color: #f0f0f5 !important;
}
body.sipo-mieter-page [class*="testimonial"] blockquote,
body.sipo-mieter-page [class*="testimonial"] .testimonial-content,
body.sipo-mieter-page [class*="testimonial"] p {
  color: rgba(240,240,245,.78) !important;
}
body.sipo-mieter-page [class*="testimonial"] .testimonial-name,
body.sipo-mieter-page [class*="testimonial"] cite,
body.sipo-mieter-page [class*="testimonial"] footer {
  color: #32E211 !important;
}

/* ── JetEngine listing grid (Mieter-Karten, Raumlisten) ── */
body.sipo-mieter-page .jet-listing-grid__item,
body.sipo-mieter-page .jet-listing-grid .jet-listing-dynamic-field {
  color: rgba(240,240,245,.85) !important;
}
body.sipo-mieter-page .jet-listing-grid__item {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 12px !important;
  transition: border-color .2s, box-shadow .2s;
}
body.sipo-mieter-page .jet-listing-grid__item:hover {
  border-color: rgba(50,226,17,.28) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.35) !important;
}
body.sipo-mieter-page .jet-listing-grid__item a {
  color: rgba(240,240,245,.85) !important;
}
body.sipo-mieter-page .jet-listing-grid__item a:hover {
  color: #32E211 !important;
}
body.sipo-mieter-page .jet-listing-grid__item img {
  border-radius: 8px 8px 0 0;
}

/* ── Ninja Forms (Kontaktformular) ── */
body.sipo-mieter-page .nf-form-cont .nf-field-label label,
body.sipo-mieter-page .nf-form-cont .nf-field-description {
  color: rgba(240,240,245,.72) !important;
}
body.sipo-mieter-page .nf-form-cont input[type="text"],
body.sipo-mieter-page .nf-form-cont input[type="email"],
body.sipo-mieter-page .nf-form-cont input[type="tel"],
body.sipo-mieter-page .nf-form-cont textarea,
body.sipo-mieter-page .nf-form-cont select {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 6px !important;
  color: #f0f0f5 !important;
}
body.sipo-mieter-page .nf-form-cont input:focus,
body.sipo-mieter-page .nf-form-cont textarea:focus {
  border-color: rgba(50,226,17,.5) !important;
  outline: none;
}
body.sipo-mieter-page .nf-form-cont input[type="submit"],
body.sipo-mieter-page .nf-form-cont .nf-field-element button {
  background: #32E211 !important;
  color: #0a0f04 !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 700;
}

/* ── Content images (non-hero) ── */
body.sipo-mieter-page .elementor-section:not(:first-child) .elementor-widget-image img {
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,.4);
}

/* ── Contact photo (Michael) — circular ── */
body.sipo-mieter-page .elementor-section:nth-last-child(-n+2):not(:first-child) .elementor-widget-image img {
  border-radius: 50% !important;
  width: 180px !important;
  height: 180px !important;
  object-fit: cover !important;
  border: 3px solid rgba(50,226,17,.35) !important;
  box-shadow: none !important;
}

/* ── Page title (Hello Elementor default) ── */
body.sipo-mieter-page .entry-title,
body.sipo-mieter-page .page-title {
  color: #f0f0f5;
}

/* ════════════════════════════════════════════════════════
   MIETER SUB-PAGES — Light theme matching Homepage
   Pages: 3414, 5954, 20832 + WPML
   ════════════════════════════════════════════════════════ */

/* ── Base: white background, dark ink text ── */
body.sipo-mieter-subpage {
  background: #fff !important;
  color: #1a1a1a !important;
}
body.sipo-mieter-subpage #page,
body.sipo-mieter-subpage .site {
  background: #fff !important;
}

/* ── Sections: unset dark overrides, let Elementor inline styles win ── */
body.sipo-mieter-subpage .elementor-section,
body.sipo-mieter-subpage .elementor-top-section,
body.sipo-mieter-subpage .e-con,
body.sipo-mieter-subpage .elementor-column-wrap,
body.sipo-mieter-subpage .elementor-widget-wrap,
body.sipo-mieter-subpage .elementor-column {
  background-color: unset !important;
  background-image: unset !important;
}
/* Sections without explicit inline bg → white */
body.sipo-mieter-subpage .elementor-section {
  background-color: #fff;
}

/* ── Text: restore to dark ── */
body.sipo-mieter-subpage .elementor-heading-title {
  color: #1a1a1a !important;
  font-weight: unset !important;
  font-size: unset !important;
}
body.sipo-mieter-subpage h6.elementor-heading-title {
  color: unset !important;
  font-size: unset !important;
  font-weight: unset !important;
  text-transform: unset !important;
  letter-spacing: unset !important;
}
body.sipo-mieter-subpage .elementor-widget-text-editor,
body.sipo-mieter-subpage .elementor-widget-text-editor p,
body.sipo-mieter-subpage .elementor-text-editor p {
  color: #555 !important;
  line-height: unset !important;
}

/* ── Elementor buttons → Homepage-Pink ── */
body.sipo-mieter-subpage .elementor-button-wrapper .elementor-button,
body.sipo-mieter-subpage .elementor-widget-button .elementor-button {
  background: linear-gradient(90deg, #FF7BAA 0%, #E5007E 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  font-weight: 500;
}
body.sipo-mieter-subpage .elementor-button-wrapper .elementor-button:hover,
body.sipo-mieter-subpage .elementor-widget-button .elementor-button:hover {
  background: linear-gradient(90deg, #ff91bb 0%, #ff1f9a 100%) !important;
}

/* ── Contact photo (Michael) — circular ── */
body.sipo-mieter-subpage .elementor-section:nth-last-child(-n+2) .elementor-widget-image img {
  border-radius: 50% !important;
  width: 180px !important;
  height: 180px !important;
  object-fit: cover !important;
  border: 3px solid rgba(229,0,126,.25) !important;
}

/* ── Ninja Forms — light theme ── */
body.sipo-mieter-subpage .nf-form-cont input[type="text"],
body.sipo-mieter-subpage .nf-form-cont input[type="email"],
body.sipo-mieter-subpage .nf-form-cont input[type="tel"],
body.sipo-mieter-subpage .nf-form-cont textarea,
body.sipo-mieter-subpage .nf-form-cont select {
  background: #fff !important;
  border: 1px solid #e0ddd8 !important;
  border-radius: 4px !important;
  color: #1a1a1a !important;
}
body.sipo-mieter-subpage .nf-form-cont input:focus,
body.sipo-mieter-subpage .nf-form-cont textarea:focus {
  border-color: #E5007E !important;
  outline: none;
}
body.sipo-mieter-subpage .nf-form-cont input[type="submit"],
body.sipo-mieter-subpage .nf-form-cont .nf-field-element button {
  background: linear-gradient(90deg, #FF7BAA 0%, #E5007E 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 500;
}

/* ── Toggle/Accordion — light theme ── */
body.sipo-mieter-subpage .elementor-toggle-title,
body.sipo-mieter-subpage .elementor-tab-title {
  background: #f3f1eb !important;
  border: 1px solid #e0ddd8 !important;
  border-radius: 4px !important;
  color: #1a1a1a !important;
  font-weight: 400;
  transition: background .2s, border-color .2s;
}
body.sipo-mieter-subpage .elementor-toggle-title:hover,
body.sipo-mieter-subpage .elementor-tab-title:hover {
  background: #fce8f3 !important;
  border-color: #E5007E !important;
}
body.sipo-mieter-subpage .elementor-toggle-title.elementor-active,
body.sipo-mieter-subpage .elementor-tab-title.elementor-active {
  background: #fce8f3 !important;
  border-color: #E5007E !important;
  color: #E5007E !important;
}
body.sipo-mieter-subpage .elementor-toggle-icon,
body.sipo-mieter-subpage .elementor-tab-icon {
  color: #E5007E !important;
}

/* ── JetEngine grid — light card style ── */
body.sipo-mieter-subpage .jet-listing-grid__item {
  background: #fff !important;
  border: 1px solid #e0ddd8 !important;
  border-radius: 8px !important;
  transition: border-color .2s, box-shadow .2s;
}
body.sipo-mieter-subpage .jet-listing-grid__item:hover {
  border-color: #E5007E !important;
  box-shadow: 0 4px 20px rgba(229,0,126,.1) !important;
}

/* ═══════════════════════════════════════════════════════════════
   MIETER LANDING PAGE  (#sipo-hp .sipo-mieter-lp)
   Light design — same tokens as homepage (pink, beige, white)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero {
  padding: 80px 0 60px;
  background: #fff;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero__grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 60px;
  align-items: center;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero__h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--si-ink);
  text-transform: uppercase;
  margin: 0 0 20px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--si-muted);
  margin-bottom: 32px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero__img-wrap {
  overflow: hidden;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-hero__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ── Anchor Nav ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-anchors {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--si-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-anchors__inner {
  display: flex;
  gap: 0;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-anchors__link {
  font-family: var(--si-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--si-muted);
  padding: 16px 24px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-anchors__link:hover {
  color: var(--si-pink);
  border-bottom-color: var(--si-pink);
}

/* ── Content Sections ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-section {
  padding: 80px 0;
  background: #fff;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section--alt {
  background: var(--si-paper);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section__copy h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--si-ink);
  text-transform: uppercase;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--si-muted);
  margin-bottom: 16px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-list {
  list-style: none;
  margin: 12px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-list li {
  font-size: 15px;
  color: var(--si-ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--si-pink);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section__img-wrap {
  overflow: hidden;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section__img-wrap:hover .sipo-mieter-section__img {
  transform: scale(1.03);
}

/* ── Co-Working ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__head {
  margin-bottom: 40px;
  text-align: left;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__head h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  text-transform: uppercase;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__desc p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--si-muted);
  margin-bottom: 24px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__card {
  background: #fff;
  border: 1px solid var(--si-border);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__card:hover {
  border-color: var(--si-pink);
  box-shadow: 0 4px 20px rgba(229,0,126,.08);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fce8f3;
  color: var(--si-pink);
  margin-bottom: 16px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--si-ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__card p {
  font-size: 14px;
  color: var(--si-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Unsere Mieter ticker band ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-firms__head {
  text-align: left;
  margin-bottom: 12px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-firms__head h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--si-ink);
  margin-bottom: 12px;
  text-transform: uppercase;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-firms__sub {
  font-size: 16px;
  color: var(--si-muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-firms__track {
  animation-duration: 80s;
}

/* ── Contact (dark section) ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact {
  padding: 80px 0;
  background: #fff;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  text-align: left;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact .sipo-eyebrow {
  color: var(--si-pink);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact__grid h2 {
  font-size: 48px;
  color: var(--si-ink);
  margin-bottom: 20px;
  text-transform: uppercase;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact__quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--si-muted);
  border-left: 3px solid var(--si-pink);
  padding-left: 20px;
  margin: 0 0 28px;
  font-style: italic;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact__img-wrap {
  overflow: hidden;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-contact__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}
#sipo-hp .sipo-mieter-lp .sipo-btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── Room cards grid ── */
#sipo-hp .sipo-mieter-lp .sipo-mieter-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-section--alt .sipo-mieter-room-card {
  background: #f7f7fa;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card:hover .sipo-mieter-room-card__img {
  transform: scale(1.04);
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--si-ink);
  margin: 0;
  line-height: 1.35;
}
#sipo-hp .sipo-mieter-lp .sipo-mieter-room-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--si-pink);
  margin-top: auto;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  #sipo-hp .sipo-mieter-lp .sipo-mieter-rooms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-hero__grid,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-section__grid,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__grid,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-hero__img-wrap {
    order: -1;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-hero,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-section,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-contact {
    padding: 60px 0;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-contact__img {
    width: 100%;
    height: auto;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-anchors__link {
    font-size: 10px;
    padding: 14px 12px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 640px) {
  #sipo-hp .sipo-mieter-lp .sipo-mieter-rooms__grid {
    grid-template-columns: 1fr;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__cards {
    grid-template-columns: 1fr;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-anchors__inner {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  #sipo-hp .sipo-mieter-lp .sipo-mieter-section__copy h2,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-cowork__head h2,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-firms__head h2,
  #sipo-hp .sipo-mieter-lp .sipo-mieter-contact__grid h2 { font-size: 32px; }
}

/* ════════════════════════════════════════
   PARTNER SEITE
════════════════════════════════════════ */

/* ── Intro ── */
#sipo-hp .sipo-partner-lp .sipo-partner-intro {
  position: relative;
  margin-top: -65px;
  padding: 145px 0 64px;
  background: #fff;
}
#sipo-hp .sipo-partner-lp .sipo-partner-intro__h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--si-ink);
  margin: 8px 0 20px;
}
@media (max-width: 640px) {
  #sipo-hp .sipo-partner-lp .sipo-partner-intro__h1 { font-size: 32px; }
}
#sipo-hp .sipo-partner-lp .sipo-partner-intro__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--si-muted);
  max-width: 680px;
}


/* ── Kategorie-Sektionen ── */
#sipo-hp .sipo-partner-lp .sipo-partner-cat-section {
  padding: 64px 0 72px;
  background: #fff;
}
#sipo-hp .sipo-partner-lp .sipo-partner-cat-section:nth-child(even) {
  background: var(--si-paper);
}
#sipo-hp .sipo-partner-lp .sipo-partner-cat__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--si-pink);
  margin: 0 0 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* ── Group (category heading + grid) ── */
#sipo-hp .sipo-partner-lp .sipo-partner-group {
  margin-bottom: 72px;
}
#sipo-hp .sipo-partner-lp .sipo-partner-group:last-child {
  margin-bottom: 0;
}
#sipo-hp .sipo-partner-lp .sipo-partner-group__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--si-pink);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* ── Cards grid ── */
#sipo-hp .sipo-partner-lp .sipo-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card {
  background: #f9f9fb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__logo-wrap {
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__logo {
  max-width: 160px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--si-ink);
  margin: 0;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--si-muted);
  margin: 0;
  flex: 1;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--si-pink);
  text-decoration: none;
  margin-top: 6px;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__link:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  #sipo-hp .sipo-partner-lp .sipo-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #sipo-hp .sipo-partner-lp .sipo-partner-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Partner card: clamp + toggle ────────────────────────────── */
#sipo-hp .sipo-partner-lp .sipo-partner-card__desc-wrap { position: relative; }
#sipo-hp .sipo-partner-lp .sipo-partner-card__desc-wrap.is-clamped .sipo-partner-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__desc-wrap.is-expanded .sipo-partner-card__desc {
  display: block;
  overflow: visible;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__toggle {
  display: block;
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--si-pink);
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease;
}
#sipo-hp .sipo-partner-lp .sipo-partner-card__toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}

/* ══════════════════════════════════════════════════════════════════
   Single Angebot Page
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────────── */
#sipo-hp .sipo-angebot-single__hero {
  background: var(--si-paper);
  padding: 56px 0 72px;
}
#sipo-hp .sipo-angebot-single__hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
#sipo-hp .sipo-angebot-single__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--si-pink);
  text-decoration: none;
  margin-bottom: 24px;
  opacity: .8;
  transition: opacity .15s;
}
#sipo-hp .sipo-angebot-single__back:hover { opacity: 1; }
#sipo-hp .sipo-angebot-single__hero .sipo-eyebrow { margin-bottom: 12px; }
#sipo-hp .sipo-angebot-single__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: var(--si-ink);
  margin: 0 0 36px;
  line-height: 1.15;
}
#sipo-hp .sipo-angebot-single__hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: block;
}

/* ── Content area ───────────────────────────────────────────────── */
#sipo-hp .sipo-angebot-single__content { background: #fff; }
#sipo-hp .sipo-angebot-single__content .elementor-section,
#sipo-hp .sipo-angebot-single__content .e-con {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Override: Elementor large heading (z.B. "MIETER WERDEN") ───── */
#sipo-hp .sipo-angebot-single .elementor-widget-heading .elementor-heading-title {
  font-family: var(--si-font) !important;
}
#sipo-hp .sipo-angebot-single .elementor-widget-heading h2 {
  font-size: clamp(22px, 3vw, 36px) !important;
  font-weight: 300 !important;
  color: var(--si-ink) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
#sipo-hp .sipo-angebot-single .elementor-widget-heading h3 {
  color: var(--si-pink) !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
}
/* "Grossevent oder kleine Sitzung?" banner — every "Miete: …" room page has
   its own copy of this section (Elementor's own "css_classes" setting isn't
   rendered for the legacy "section" element type in this install, so it has
   to be targeted by each copy's own auto-generated element ID instead). It
   sits on its own colored gradient, not the page's white background — the
   dark-ink heading/muted-text overrides above are unreadable there. */
#sipo-hp .sipo-angebot-single .elementor-element-8878168 .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-5097c20 .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-885bc08 .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-1752d1c .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-5db637f .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-74b3c8a .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-fd4eed0 .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-82168a6 .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-d22b53a .elementor-heading-title,
#sipo-hp .sipo-angebot-single .elementor-element-33d9cb1 .elementor-heading-title {
  color: #fff !important;
}
#sipo-hp .sipo-angebot-single .elementor-element-dfb5589.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-23ffc6d.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-75d8b41.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-48ddd00.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-fb6c5ce.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-59c6ade.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-00fecd9.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-57d9473.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-5eaad10.elementor-widget-text-editor,
#sipo-hp .sipo-angebot-single .elementor-element-49782d9.elementor-widget-text-editor {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Same "Grossevent oder kleine Sitzung?" banner, but on the "Räume & Labore"
   category landing page (post 20832) rather than a single "Miete: …" post.
   Elementor's own generated CSS for this section's gradient background isn't
   taking effect for reasons that didn't resolve after clearing every cache
   layer (page cache, Elementor's CSS file, Elementor's element-render cache)
   — forcing it here directly instead of chasing that further. */
#sipo-hp .elementor-element-6e23acc {
  background: linear-gradient(90deg, #D12A29 0%, #EB3C91 100%) !important;
}
#sipo-hp .elementor-element-9f7799b .elementor-heading-title {
  color: #fff !important;
}
#sipo-hp .elementor-element-23eeb52.elementor-widget-text-editor,
#sipo-hp .elementor-element-23eeb52.elementor-widget-text-editor p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* ── Override: CTA-Button → sipo-btn-primary style ─────────────── */
#sipo-hp .sipo-angebot-single .elementor-button,
#sipo-hp .sipo-angebot-single .elementor-button-wrapper .elementor-button {
  background: linear-gradient(90deg, #FF7BAA 0%, var(--si-pink) 100%) !important;
  background-image: linear-gradient(90deg, #FF7BAA 0%, var(--si-pink) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: var(--si-font) !important;
  letter-spacing: .02em !important;
  transition: all .2s ease !important;
  box-shadow: none !important;
}
#sipo-hp .sipo-angebot-single .elementor-button:hover,
#sipo-hp .sipo-angebot-single .elementor-button-wrapper .elementor-button:hover {
  background: linear-gradient(90deg, #ff91bb 0%, #ff1f9a 100%) !important;
  transform: translateY(-1px) !important;
}

/* ── Override: Text ─────────────────────────────────────────────── */
#sipo-hp .sipo-angebot-single .elementor-widget-text-editor {
  font-family: var(--si-font) !important;
  color: var(--si-muted) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* ── Override: Accordion ────────────────────────────────────────── */
#sipo-hp .sipo-angebot-single .elementor-toggle-item,
#sipo-hp .sipo-angebot-single .elementor-tab-item {
  border: 1px solid var(--si-border) !important;
  border-radius: 8px !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
  background: #fff !important;
}
#sipo-hp .sipo-angebot-single .elementor-toggle-title,
#sipo-hp .sipo-angebot-single .elementor-tab-title {
  color: var(--si-ink) !important;
  font-weight: 600 !important;
  font-family: var(--si-font) !important;
  padding: 18px 22px !important;
}
#sipo-hp .sipo-angebot-single .elementor-toggle-title .elementor-toggle-icon,
#sipo-hp .sipo-angebot-single .elementor-tab-title .elementor-accordion-icon {
  color: var(--si-pink) !important;
}
#sipo-hp .sipo-angebot-single .elementor-tab-content,
#sipo-hp .sipo-angebot-single .elementor-toggle-content {
  padding: 4px 22px 20px !important;
  color: var(--si-muted) !important;
  border-top: 1px solid var(--si-border) !important;
  font-family: var(--si-font) !important;
}

/* ── Hide Hello Elementor duplicate title ───────────────────────── */
.single-angebot .page-header { display: none !important; }

/* ── Hide duplicate first two Elementor sections (already in hero) ─ */
#sipo-hp .sipo-angebot-single__content .elementor > .elementor-section:nth-child(-n+2),
#sipo-hp .sipo-angebot-single__content .elementor > .e-con:nth-child(-n+2) {
  display: none !important;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #sipo-hp .sipo-angebot-single__hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #sipo-hp .sipo-angebot-single__hero-img { order: -1; }
  #sipo-hp .sipo-angebot-single__hero { padding: 40px 0 48px; }
}

/* ══════════════════════════════════════════════════════════════════
   News / Blog Archive
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────────── */
#sipo-hp .sipo-news-archive__hero {
  position: relative;
  margin-top: -65px;
  background: var(--si-paper);
  padding: 129px 0 56px;
}
#sipo-hp .sipo-news-archive__title {
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--si-ink);
  margin: 8px 0 16px;
  line-height: 1.1;
}
@media (max-width: 640px) {
  #sipo-hp .sipo-news-archive__title { font-size: 32px; }
}
#sipo-hp .sipo-news-archive__lead {
  font-size: 17px;
  color: var(--si-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ── Category filter pills ──────────────────────────────────────── */
#sipo-hp .sipo-news-archive__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#sipo-hp .sipo-news-filter-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid var(--si-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--si-muted);
  text-decoration: none;
  background: #fff;
  transition: all .15s ease;
}
#sipo-hp .sipo-news-filter-tag:hover,
#sipo-hp .sipo-news-filter-tag.is-active {
  background: var(--si-pink);
  border-color: var(--si-pink);
  color: #fff;
}

/* ── Grid section ───────────────────────────────────────────────── */
#sipo-hp .sipo-news-archive__grid-section {
  background: #fff;
  padding: 64px 0 80px;
}

/* ── Card grid ──────────────────────────────────────────────────── */
#sipo-hp .sipo-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Card ───────────────────────────────────────────────────────── */
#sipo-hp .sipo-news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--si-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
#sipo-hp .sipo-news-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  transform: translateY(-2px);
}

/* ── Card image ─────────────────────────────────────────────────── */
#sipo-hp .sipo-news-card__img-link { display: block; overflow: hidden; }
#sipo-hp .sipo-news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}
#sipo-hp .sipo-news-card__img-link:hover .sipo-news-card__img { transform: scale(1.04); }
#sipo-hp .sipo-news-card__img--placeholder {
  background: var(--si-paper);
  aspect-ratio: 16/9;
}

/* ── Card body ──────────────────────────────────────────────────── */
#sipo-hp .sipo-news-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#sipo-hp .sipo-news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
#sipo-hp .sipo-news-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--si-pink);
}
#sipo-hp .sipo-news-card__date {
  font-size: 12px;
  color: var(--si-muted);
}
#sipo-hp .sipo-news-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}
#sipo-hp .sipo-news-card__title a {
  color: var(--si-ink);
  text-decoration: none;
  transition: color .15s;
}
#sipo-hp .sipo-news-card__title a:hover { color: var(--si-pink); }
#sipo-hp .sipo-news-card__excerpt {
  font-size: 14px;
  color: var(--si-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
#sipo-hp .sipo-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--si-pink);
  text-decoration: none;
  transition: gap .15s ease;
}
#sipo-hp .sipo-news-card__link:hover { gap: 8px; }

/* ── Pagination ─────────────────────────────────────────────────── */
#sipo-hp .sipo-news-pagination { margin-top: 48px; display: flex; justify-content: center; }
#sipo-hp .sipo-news-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  gap: 6px;
  padding: 0;
  margin: 0;
}
#sipo-hp .sipo-news-pagination .page-numbers li a,
#sipo-hp .sipo-news-pagination .page-numbers li span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--si-ink);
  text-decoration: none;
  border: 1px solid var(--si-border);
  transition: all .15s ease;
}
#sipo-hp .sipo-news-pagination .page-numbers li a:hover { background: var(--si-paper); }
#sipo-hp .sipo-news-pagination .page-numbers li span.current {
  background: var(--si-pink);
  border-color: var(--si-pink);
  color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #sipo-hp .sipo-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #sipo-hp .sipo-news-grid { grid-template-columns: 1fr; }
  #sipo-hp .sipo-news-archive__hero { padding: 105px 0 36px; }
}

/* ══════════════════════════════════════════════════════════════════
   Single Post (News-Beitrag)
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────────── */
#sipo-hp .sipo-single-post__hero {
  background: var(--si-paper);
  padding: 48px 0 56px;
}
#sipo-hp .sipo-single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--si-pink);
  text-decoration: none;
  margin-bottom: 24px;
  opacity: .8;
  transition: opacity .15s;
}
#sipo-hp .sipo-single-post__back:hover { opacity: 1; }
#sipo-hp .sipo-single-post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
#sipo-hp .sipo-single-post__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--si-pink);
  text-decoration: none;
}
#sipo-hp .sipo-single-post__cat:hover { text-decoration: underline; }
#sipo-hp .sipo-single-post__date,
#sipo-hp .sipo-single-post__readtime {
  font-size: 13px;
  color: var(--si-muted);
}
#sipo-hp .sipo-single-post__meta .sipo-single-post__date::before,
#sipo-hp .sipo-single-post__meta .sipo-single-post__readtime::before {
  content: '·';
  margin-right: 12px;
  color: var(--si-border);
}
#sipo-hp .sipo-single-post__title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--si-ink);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 820px;
}
#sipo-hp .sipo-single-post__lead {
  font-size: 19px;
  color: var(--si-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

/* ── Cover image ────────────────────────────────────────────────── */
#sipo-hp .sipo-single-post__cover {
  background: var(--si-paper);
  padding-bottom: 56px;
}
#sipo-hp .sipo-single-post__cover-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ── Content ────────────────────────────────────────────────────── */
#sipo-hp .sipo-single-post__content-wrap {
  background: #fff;
  padding: 64px 0 56px;
}
#sipo-hp .sipo-single-post__content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--si-ink);
}
#sipo-hp .sipo-single-post__content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 2em 0 .6em;
  color: var(--si-ink);
}
#sipo-hp .sipo-single-post__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 1.6em 0 .5em;
  color: var(--si-ink);
}
#sipo-hp .sipo-single-post__content p { margin: 0 0 1.4em; }
#sipo-hp .sipo-single-post__content a { color: var(--si-pink); }
#sipo-hp .sipo-single-post__content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5em 0;
}
#sipo-hp .sipo-single-post__content ul,
#sipo-hp .sipo-single-post__content ol {
  padding-left: 1.4em;
  margin: 0 0 1.4em;
}
#sipo-hp .sipo-single-post__content li { margin-bottom: .5em; }
#sipo-hp .sipo-single-post__content blockquote {
  border-left: 3px solid var(--si-pink);
  padding-left: 20px;
  margin: 1.6em 0;
  color: var(--si-muted);
  font-style: italic;
}

/* ── Tags ───────────────────────────────────────────────────────── */
#sipo-hp .sipo-single-post__tags {
  max-width: 720px;
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#sipo-hp .sipo-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--si-border);
  font-size: 12px;
  font-weight: 500;
  color: var(--si-muted);
  text-decoration: none;
  transition: all .15s;
}
#sipo-hp .sipo-tag:hover {
  background: var(--si-pink);
  border-color: var(--si-pink);
  color: #fff;
}

/* ── Author + footer ────────────────────────────────────────────── */
#sipo-hp .sipo-single-post__footer {
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--si-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#sipo-hp .sipo-single-post__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
#sipo-hp .sipo-single-post__avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
}
#sipo-hp .sipo-single-post__author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--si-ink);
}
#sipo-hp .sipo-single-post__author-date {
  display: block;
  font-size: 12px;
  color: var(--si-muted);
}

/* ── Related posts ──────────────────────────────────────────────── */
#sipo-hp .sipo-single-post__related {
  background: var(--si-paper);
  padding: 64px 0 80px;
}
#sipo-hp .sipo-single-post__related-title {
  font-size: 24px;
  font-weight: 300;
  color: var(--si-ink);
  margin: 0 0 36px;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #sipo-hp .sipo-single-post__title { font-size: 28px; }
  #sipo-hp .sipo-single-post__lead  { font-size: 16px; }
  #sipo-hp .sipo-single-post__content { font-size: 16px; }
  #sipo-hp .sipo-single-post__footer { flex-direction: column; align-items: flex-start; }
}

/* ── Partner cards: initially hidden + show-more button ─────────── */
#sipo-hp .sipo-partner-lp .sipo-partner-card--hidden { display: none; }

#sipo-hp .sipo-partner-lp .sipo-partner-more {
  text-align: center;
  margin-top: 32px;
}
#sipo-hp .sipo-partner-lp .sipo-partner-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1.5px solid var(--si-pink);
  background: transparent;
  color: var(--si-pink);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--si-font);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
#sipo-hp .sipo-partner-lp .sipo-partner-more__btn:hover {
  background: var(--si-btn-gradient);
  color: #fff;
}
#sipo-hp .sipo-partner-lp .sipo-partner-more__btn svg {
  transition: transform .2s ease;
}
#sipo-hp .sipo-partner-lp .sipo-partner-more__btn.is-open svg {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════════
   ASK OUR EXPERTS PAGE  (.sipo-aoe-page)
   Dark Startups design — inherits sipo-startups-page tokens
   ═══════════════════════════════════════════════════════════════ */

/* Overall dark background */
#sipo-hp .sipo-aoe-page { background: #0e0e14; min-height: 100vh; }

/* ── Hero ── */
#sipo-hp .sipo-aoe-page .sipo-aoe-hero {
  position: relative;
  margin-top: -65px;
  background: #0e0e14;
  padding: 145px 0 60px;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(240,240,245,0.55);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-back:hover { color: #32E211; }
#sipo-hp .sipo-aoe-page .sipo-aoe-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #f0f0f5;
  line-height: 1.1;
  margin: 12px 0 24px;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-hero__lead {
  max-width: 720px;
  color: rgba(240,240,245,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Elementor content zone ── */
#sipo-hp .sipo-aoe-page .sipo-aoe-content {
  padding-bottom: 80px;
}

/* Hide section 1 (duplicate hero) and section 2 (FT badge — moved to Startups page) */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor > .elementor-section:nth-child(-n+2),
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor > .e-con:nth-child(-n+2) {
  display: none !important;
}

/* All sections/containers → transparent, dark page shows through */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-section,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .e-con,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-column,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-column > .elementor-widget-wrap {
  background: transparent !important;
}

/* Match sipo-container horizontal padding */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-section > .elementor-container,
#sipo-hp .sipo-aoe-page .sipo-aoe-content > .elementor > .e-con {
  max-width: 1280px !important;
  padding-left: 80px !important;
  padding-right: 80px !important;
}
@media (max-width: 960px) {
  #sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-section > .elementor-container,
  #sipo-hp .sipo-aoe-page .sipo-aoe-content > .elementor > .e-con {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 640px) {
  #sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-section > .elementor-container,
  #sipo-hp .sipo-aoe-page .sipo-aoe-content > .elementor > .e-con {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Alternating section backgrounds — like Startups page */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor > .elementor-section:nth-child(odd),
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor > .e-con:nth-child(odd) {
  background: #0e0e14 !important;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor > .elementor-section:nth-child(even),
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor > .e-con:nth-child(even) {
  background: #131318 !important;
}

/* All text → light */
#sipo-hp .sipo-aoe-page .sipo-aoe-content h1,
#sipo-hp .sipo-aoe-page .sipo-aoe-content h2,
#sipo-hp .sipo-aoe-page .sipo-aoe-content h3,
#sipo-hp .sipo-aoe-page .sipo-aoe-content h4,
#sipo-hp .sipo-aoe-page .sipo-aoe-content h5 { color: #f0f0f5 !important; }
#sipo-hp .sipo-aoe-page .sipo-aoe-content p,
#sipo-hp .sipo-aoe-page .sipo-aoe-content li { color: rgba(240,240,245,0.65) !important; }
#sipo-hp .sipo-aoe-page .sipo-aoe-content strong { color: #f0f0f5 !important; }

/* Links / company names → green */
#sipo-hp .sipo-aoe-page .sipo-aoe-content a { color: #32E211 !important; }
#sipo-hp .sipo-aoe-page .sipo-aoe-content a:hover { color: #5CB83A !important; }

/* Logo images → white pill background so dark logos stay readable */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-widget-image img {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 10px 16px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* Person photos → no white pill */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-widget-image-box img {
  background: transparent;
  padding: 0;
  border-radius: 50%;
  max-height: none;
}

/* Elementor buttons → green */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-button {
  background: #32E211 !important;
  color: #0e0e14 !important;
  border-color: #32E211 !important;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-button:hover {
  background: #28c00d !important;
}

/* ── Accordion / Toggle → dark style with green border ────────── */
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-accordion-item,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-toggle-item {
  background: #1b1b24 !important;
  border: 1.5px solid #32E211 !important;
  border-radius: 12px !important;
  margin-bottom: 10px !important;
  overflow: hidden;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-tab-title,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-toggle-title {
  background: transparent !important;
  color: #32E211 !important;
  font-weight: 600 !important;
  padding: 20px 24px !important;
  border: none !important;
  cursor: pointer;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-tab-title .elementor-accordion-icon,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-toggle-title .elementor-toggle-icon {
  color: #32E211 !important;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-tab-content,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-toggle-content {
  background: transparent !important;
  color: rgba(240,240,245,0.7) !important;
  padding: 0 24px 20px !important;
  border-top: 1px solid rgba(50,226,17,0.2) !important;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-tab-content p,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-toggle-content p {
  color: rgba(240,240,245,0.7) !important;
}
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-tab-content strong,
#sipo-hp .sipo-aoe-page .sipo-aoe-content .elementor-toggle-content strong {
  color: #f0f0f5 !important;
}

@media (max-width: 768px) {
  #sipo-hp .sipo-aoe-page .sipo-aoe-hero { padding: 113px 0 36px; }
}

/* ════════════════════════════════════════
   EVENTS-ARCHIV (The Events Calendar)
   ════════════════════════════════════════ */
/* Der Plugin-eigene Seitentitel "Events" ist per .screen-reader-text
   unsichtbar gerendert. Gezielt nur DIESES Element wieder sichtbar
   machen (nicht die generische .screen-reader-text-Klasse selbst,
   die anderswo für echte Accessibility-Zwecke gebraucht wird). */
#sipo-hp .tribe-events-header__content-title h1.screen-reader-text {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--si-ink);
  margin: 0 0 20px;
}
@media (max-width: 640px) {
  #sipo-hp .tribe-events-header__content-title h1.screen-reader-text { font-size: 32px; }
}
