  :root {
    --primary: #0a0a0a;
    --on-primary: #ffffff;
    --primary-soft: #181e25;
    --brand-coral: #ff5530;
    --brand-magenta: #ea5ec1;
    --brand-blue: #1456f0;
    --brand-blue-deep: #1d4ed8;
    --brand-cyan: #3daeff;
    --brand-blue-200: #bfdbfe;
    --brand-purple: #a855f7;
    --canvas: #ffffff;
    --surface: #f7f8fa;
    --surface-soft: #f2f3f5;
    --hairline: #e5e7eb;
    --hairline-soft: #eaecf0;
    --ink: #0a0a0a;
    --charcoal: #222222;
    --slate: #45515e;
    --steel: #5f5f5f;
    --stone: #8e8e93;
    --muted: #a8aab2;
    --success-bg: #e8ffea;
    --success-text: #1ba673;
    --footer-bg: #0a0a0a;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', Inter, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--canvas);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  /* Promo banner */
  .promo-banner {
    background: var(--primary);
    color: var(--on-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    text-align: center;
  }
  .promo-banner a { text-decoration: underline; }

  /* Nav */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
  }
  .nav.scrolled {
    background: var(--canvas);
    border-bottom-color: var(--hairline-soft);
  }
  .nav:not(.scrolled) .brand { color: var(--on-primary); }
  .nav:not(.scrolled) .brand-mark { filter: brightness(0) invert(1); }
  .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
  .nav:not(.scrolled) .btn-primary { background: #fff; color: var(--ink); }
  .nav:not(.scrolled) .btn-primary:hover { background: rgba(255,255,255,0.85); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 18px; letter-spacing: -0.3px;
  }
  .brand-mark {
    height: 32px; width: auto; display: block;
  }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a {
    font-size: 14px; color: var(--charcoal); font-weight: 500;
  }
  .nav-cta { display: flex; gap: 12px; align-items: center; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: inherit; font-size: 14px; font-weight: 600; line-height: 1.4;
    border-radius: 9999px; padding: 11px 24px; cursor: pointer;
    border: 1px solid transparent; white-space: nowrap;
    transition: background 200ms ease, color 200ms ease;
  }
  .btn-primary { background: var(--primary); color: var(--on-primary); }
  .btn-primary:hover { background: var(--charcoal); }
  .btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-tertiary { background: var(--canvas); color: var(--ink); border-color: var(--hairline); }

  /* Hamburger */
  .nav-toggle {
    display: none;
    background: transparent; border: none; cursor: pointer;
    width: 40px; height: 40px; padding: 0;
    align-items: center; justify-content: center;
    color: var(--ink);
  }
  .nav:not(.scrolled) .nav-toggle { color: var(--on-primary); }
  .nav-toggle span {
    display: block; position: relative;
    width: 22px; height: 2px; background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: ""; position: absolute; left: 0;
    width: 22px; height: 2px; background: currentColor;
    transition: transform 200ms ease, top 200ms ease;
  }
  .nav-toggle span::before { top: -7px; }
  .nav-toggle span::after { top: 7px; }
  .nav-toggle.is-open span { background: transparent; }
  .nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline-soft);
    z-index: 49;
    padding: 16px 24px 24px;
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px; font-weight: 500; color: var(--ink);
    border-bottom: 1px solid var(--hairline-soft);
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .btn { margin-top: 16px; width: 100%; }

  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: inline-flex; }
  }

  /* Hero */
  .hero {
    position: relative;
    overflow: hidden;
    background-color: #02040a;
    color: var(--on-primary);
    padding: 80px 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2,4,10,0.85) 0%, rgba(2,4,10,0.55) 45%, rgba(2,4,10,0.25) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero > .container { position: relative; z-index: 2; width: 100%; }
  .hero-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  }
  .hero-left { max-width: 640px; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--on-primary);
    font-size: 13px; font-weight: 500;
    padding: 8px 16px; border-radius: 9999px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
  }
  .hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 9999px; background: var(--brand-coral);
    box-shadow: 0 0 0 4px rgba(255,85,48,0.18);
  }
  .hero h1 {
    font-size: 72px; font-weight: 600; line-height: 1.1; letter-spacing: -2px;
    color: var(--on-primary);
  }
  .hero h1 .accent { color: var(--brand-coral); }
  .hero-subline {
    margin-top: 28px;
    font-size: 19px; font-weight: 400; line-height: 1.5; color: rgba(255,255,255,0.65);
    max-width: 520px;
  }
  .tag-row {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,85,48,0.35);
    position: relative;
  }
  .tag-row::before {
    content: ""; position: absolute; top: -1px; left: 0;
    width: 80px; height: 2px; background: var(--brand-coral);
  }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9);
    background: transparent; border: none;
    padding: 6px 4px;
  }
  .tag .ti {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,85,48,0.12);
    color: var(--brand-coral);
    border: 1px solid rgba(255,85,48,0.25);
  }
  .tag .ti svg { width: 14px; height: 14px; }

  .hero-cta { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .btn-coral {
    background: var(--brand-coral); color: var(--on-primary);
    padding: 11px 24px;
    font-size: 14px; font-weight: 600;
    border-radius: 9999px;
    display: inline-flex; align-items: center; gap: 10px;
    border: none;
    transition: background 200ms ease;
  }
  .btn-coral:hover { background: #ff6a48; }
  .btn-coral .arr {
    width: 22px; height: 22px;
    color: var(--on-primary);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .btn-ghost {
    background: transparent; color: var(--on-primary);
    padding: 11px 24px;
    font-size: 14px; font-weight: 600;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex; align-items: center; gap: 10px;
    transition: border-color 200ms ease, background 200ms ease;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }

  @media (max-width: 1100px) {
    .hero h1 { font-size: 64px; letter-spacing: -2px; }
  }
  @media (max-width: 900px) {
    .hero {
      padding: 80px 0 32px;
      display: block;
      min-height: 0;
      background-color: #02040a;
    }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding-top: 0; }
    .hero h1 { font-size: 44px; font-weight: 600; letter-spacing: -1.4px; white-space: normal; }
    .hero-bg-overlay { display: none; }
    .hero-photo {
      position: relative;
      inset: auto;
      width: 100%;
      height: 58vh;
      min-height: 380px;
      max-height: 560px;
      margin-bottom: -120px;
      overflow: hidden;
      z-index: 1;
    }
    .hero-bg {
      position: absolute;
      height: 115%;
      width: auto;
      max-width: none;
      left: 88.22%;
      top: 10%;
      transform: translate(-88.22%, -10%);
      object-fit: unset;
    }
    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(2,4,10,0) 0%, rgba(2,4,10,0) 45%, rgba(2,4,10,0.6) 75%, rgba(2,4,10,1) 100%);
      pointer-events: none;
      z-index: 2;
    }
    .hero > .container { padding-top: 0; position: relative; z-index: 3; }
    .hero-left { position: relative; z-index: 3; padding-top: 0; }
  }

  /* Section base */
  section.block { padding: 96px 0; }
  .section-head { max-width: 760px; margin-bottom: 48px; }
  .section-eyebrow,
  .portrait-head .eyebrow,
  .refs-head .eyebrow,
  .media-feature-head .eyebrow,
  .testimonials-head .eyebrow,
  .socials-head .eyebrow,
  .showcase-section .section-eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 16px;
  }
  .section-head h2,
  .portrait-head h2,
  .refs-head h2,
  .media-feature-head h2,
  .testimonials-head h2,
  .kpis-head h2,
  .socials-head h2,
  .cta-card h2 {
    font-size: 48px; font-weight: 600; line-height: 1.1; letter-spacing: -1.6px;
    color: var(--ink);
  }
  .section-head p {
    margin-top: 16px; font-size: 18px; color: var(--slate); line-height: 1.5;
  }
  @media (max-width: 900px) {
    section.block { padding: 72px 0; }
    .section-head h2,
    .portrait-head h2,
    .refs-head h2,
    .media-feature-head h2,
    .testimonials-head h2,
    .kpis-head h2,
    .socials-head h2,
    .cta-card h2 { font-size: 40px; letter-spacing: -1.2px; }
  }
  @media (max-width: 600px) {
    section.block { padding: 56px 0; }
    .section-head h2,
    .portrait-head h2,
    .refs-head h2,
    .media-feature-head h2,
    .testimonials-head h2,
    .kpis-head h2,
    .socials-head h2,
    .cta-card h2 { font-size: 32px; letter-spacing: -0.8px; line-height: 1.15; }
  }

  /* Kurzporträt */
  #portrait { background: var(--surface); }
  .portrait-head {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 48px;
  }
  .ueber-partners .portrait-head { align-items: end; }
  .ueber-partners .portrait-head .lede { margin-bottom: 0; }
  .portrait-head .lede {
    font-size: 17px; color: var(--charcoal); line-height: 1.5; margin-bottom: 28px;
  }
  .portrait-head .more-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 600; color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 4px;
    transition: gap .2s ease;
  }
  .portrait-head .more-link:hover { gap: 14px; }

  .portrait-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .portrait-stat {
    position: relative;
    background: var(--canvas);
    border: 1px solid rgba(10,10,10,0.06);
    border-radius: 16px;
    padding: 28px 28px 30px;
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 14px 40px -28px rgba(10,10,10,0.18);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease;
  }
  .portrait-stat::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 100% 0%, rgba(255,85,48,0.09) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity .35s ease;
  }
  .portrait-stat > * { position: relative; z-index: 1; }
  .portrait-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255,85,48,0.22);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -30px rgba(10,10,10,0.22);
  }
  .portrait-stat:hover::after { opacity: 1; }
  .portrait-stat .label {
    font-size: 12px; font-weight: 600; color: var(--brand-coral);
    text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 14px;
  }
  .portrait-stat .value {
    font-size: 38px; font-weight: 700; line-height: 1.05; letter-spacing: -1px;
    color: var(--ink); margin-bottom: 14px;
  }
  .portrait-stat .value .accent { color: var(--brand-coral); }
  .portrait-stat .desc {
    font-size: 14px; color: var(--slate); line-height: 1.5;
  }
  @media (max-width: 960px) {
    .portrait-head { grid-template-columns: 1fr; gap: 32px; }
    .portrait-stats { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .portrait-stats { grid-template-columns: 1fr; }
  }

  /* Unternehmen — Hero-Style Showcase */
  .showcase-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, #0e1726 0%, #050811 60%, #02040a 100%);
    color: var(--on-primary);
  }
  .showcase-section::before {
    content: "";
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,85,48,0.18) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
  }
  .showcase-section .section-head h2 { color: var(--on-primary); }
  .showcase-section .section-head p { color: rgba(255,255,255,0.65); }

  .company-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    position: relative; z-index: 2;
  }
  .show-card {
    position: relative;
    border-radius: 24px;
    padding: 36px;
    overflow: hidden;
    display: flex; flex-direction: column;
    min-height: 340px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: var(--on-primary);
    transition: border-color .3s ease, transform .3s ease, background .3s ease;
  }
  .show-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,85,48,0.4);
    background: rgba(255,255,255,0.045);
  }
  .show-card::after {
    content: "";
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,85,48,0.10) 0%, transparent 70%);
    top: -120px; right: -120px;
    pointer-events: none;
  }
  .show-card.lg { grid-column: span 7; min-height: 420px; }
  .show-card.sm { grid-column: span 5; }
  .show-card.md { grid-column: span 6; }

  .company-showcase.grid-3 { grid-template-columns: repeat(3, 1fr); }
  .company-showcase.grid-3 .show-card { grid-column: auto; min-height: 380px; padding: 26px 26px 24px; }
  .company-showcase.grid-3 .show-card .logo-row { margin-bottom: 20px; }
  .company-showcase.grid-3 .show-card .logo { height: 32px; }
  .company-showcase.grid-3 .show-card p { font-size: 14px; line-height: 1.5; }
  .company-showcase.grid-3 .show-card h3 { font-size: 18px; letter-spacing: -0.4px; margin-top: 0; margin-bottom: 10px; line-height: 1.25; }
  .company-showcase.grid-3 .show-card .stat { font-size: 12px; }
  .company-showcase.grid-3 .show-card .pill,
  .company-showcase.grid-3 .show-card .pill-static { font-size: 13px; }
  .pill-static {
    color: rgba(255,255,255,0.5);
    font-size: 14px; font-weight: 500;
    white-space: nowrap;
  }
  @media (max-width: 900px) {
    .company-showcase.grid-3 { grid-template-columns: 1fr; }
  }

  .show-card .logo-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
  }
  .show-card .logo {
    height: 38px; width: auto; max-width: 70%;
    object-fit: contain; object-position: left center;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
  }
  .show-card .logo.logo-solid-white {
    filter: url(#solid-white-filter) !important;
  }
  .show-card.lg .logo { height: 46px; }
  .show-card .meta-row {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
  }
  .show-card .meta-row .num {
    width: 28px; height: 28px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,85,48,0.12);
    border: 1px solid rgba(255,85,48,0.25);
    color: var(--brand-coral);
    font-size: 12px; font-weight: 600; letter-spacing: 0;
  }
  .show-card .category {
    font-size: 11px; font-weight: 500; letter-spacing: 0.6px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    text-align: right;
    line-height: 1.3;
    white-space: nowrap;
  }
  .show-card .category .num {
    display: inline-block;
    margin-right: 8px;
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(255,85,48,0.12);
    border: 1px solid rgba(255,85,48,0.25);
    color: var(--brand-coral);
  }
  .show-card h3 {
    font-size: 44px; font-weight: 600; line-height: 1.05; letter-spacing: -1.8px;
    margin-top: 28px;
    color: var(--on-primary);
  }
  .show-card.lg h3 { font-size: 56px; letter-spacing: -2.2px; }
  .show-card h3 .accent { color: var(--brand-coral); }
  .show-card p {
    font-size: 16px; line-height: 1.5; margin-top: 0;
    color: rgba(255,255,255,0.8); max-width: 52ch; font-weight: 400;
  }
  .show-card.lg p { font-size: 18px; }

  .portfolio-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative; z-index: 2;
  }
  .portfolio-tile {
    display: flex; align-items: center; justify-content: center;
    padding: 48px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 180px;
    text-decoration: none;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
  }
  .portfolio-tile:hover {
    border-color: rgba(255,85,48,0.4);
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
  }
  .portfolio-tile img {
    max-height: 64px; max-width: 80%;
    width: auto; height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity .3s ease;
  }
  .portfolio-tile:hover img { opacity: 1; }
  @media (max-width: 900px) {
    .portfolio-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .portfolio-tile { min-height: 140px; padding: 32px 18px; }
    .portfolio-tile img { max-height: 48px; }
  }
  @media (max-width: 480px) {
    .portfolio-logo-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .show-card .stat-row {
    margin-top: auto;
    padding-top: 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    border-top: 1px solid rgba(255,85,48,0.35);
  }
  .show-card .stat {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
    line-height: 1.45; max-width: 60%;
    padding: 0; border-bottom: none;
  }
  .show-card .pill {
    color: var(--brand-coral);
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
    transition: gap .2s ease, color .2s ease;
  }
  .show-card .pill:hover { color: #ff6a48; gap: 10px; }
  .show-card .pill::after { content: "→"; }

  @media (max-width: 900px) {
    .company-showcase { grid-template-columns: 1fr; gap: 14px; }
    .show-card.lg, .show-card.sm, .show-card.md { grid-column: 1 / -1; min-height: 300px; }
    .show-card h3, .show-card.lg h3 { font-size: 34px; letter-spacing: -1.2px; }
    .show-card { padding: 28px; }
    .company-showcase.grid-3 .show-card { min-height: auto; padding: 32px 24px; }
    .company-showcase.grid-3 .show-card .logo-row { margin-bottom: 24px; }
    .company-showcase.grid-3 .show-card .logo { height: 36px; }
    .company-showcase.grid-3 .show-card h3 { font-size: 26px; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 14px; }
    .company-showcase.grid-3 .show-card p { font-size: 15px; line-height: 1.55; }
    .company-showcase.grid-3 .show-card .stat { font-size: 13px; }
  }
  @media (max-width: 480px) {
    .show-card .stat-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .show-card .stat { max-width: 100%; }
  }

  /* Soziales */

  .social-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    align-items: stretch;
  }
  .social-item { position: relative; padding-top: 150px; }
  .social-num {
    position: absolute;
    top: -52px; left: -60px;
    width: 290px; height: 290px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .social-num img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }
  .social-item:hover .social-num {
    transform: translate(-4px, -4px);
  }

  .social-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    padding: 38px 32px 30px;
    min-height: 460px;
    display: flex; flex-direction: column;
    border: 1px solid rgba(10,10,10,0.06);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 14px 40px -28px rgba(10,10,10,0.18);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease;
  }
  .social-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 100% 0%, rgba(255,85,48,0.09) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }
  .social-card > * { position: relative; z-index: 1; }

  .social-item:hover .social-card {
    transform: translateY(-5px);
    border-color: rgba(255,85,48,0.22);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -30px rgba(10,10,10,0.22);
  }
  .social-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(10,10,10,0.08);
    margin-bottom: 24px;
  }
  .social-head .since {
    font-size: 11px; font-weight: 600; color: var(--ink);
    letter-spacing: 2px; text-transform: uppercase;
  }
  .social-head .tag {
    font-size: 12px; font-weight: 600; color: var(--brand-coral);
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 11px;
    background: rgba(255,85,48,0.08);
    border-radius: 999px;
  }
  .social-card h3 {
    font-size: 25px; font-weight: 700; line-height: 1.2;
    color: var(--ink); letter-spacing: -0.5px;
  }
  .social-card p {
    margin-top: 18px; font-size: 14px; color: #4a4a4a; line-height: 1.5;
  }
  .social-foot {
    margin-top: auto;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 16px;
    border-top: 1px dashed rgba(10,10,10,0.10);
    padding-top: 22px;
    margin-top: 28px;
  }
  .social-stat .num {
    font-size: 34px; font-weight: 700; color: var(--brand-coral);
    line-height: 1; letter-spacing: -1.4px;
  }
  .social-stat .lbl {
    margin-top: 10px;
    font-size: 12px; font-weight: 600; color: var(--ink);
    letter-spacing: 2px; text-transform: uppercase;
  }
  .social-card .link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--ink);
    padding: 9px 16px;
    border: 1px solid rgba(10,10,10,0.18);
    border-radius: 999px;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
  }
  .social-card .link::after {
    content: "↗"; font-size: 12px;
    transition: transform .25s ease;
  }
  .social-card .link:hover {
    background: var(--ink); color: var(--on-primary);
    border-color: var(--ink);
  }
  .social-card .link:hover::after { transform: translate(2px, -2px); }

  @media (max-width: 1024px) {
    .social-grid { grid-template-columns: 1fr; gap: 60px; }
    .social-num { width: 200px; height: 200px; left: -25px; }
    .social-card { min-height: 0; }
  }
  @media (max-width: 768px) {
    #soziales .section-head { margin-bottom: 56px; }
    .social-item { padding-top: 80px; }
    .social-num { font-size: 140px; letter-spacing: -5px; top: -60px; }
    .social-card { padding: 28px 22px 24px; }
    .social-card h3 { font-size: 20px; }
  }

  /* Speaker */
  .speaker {
    background: var(--primary); color: var(--on-primary);
    border-radius: 32px; padding: 64px;
  }
  .speaker .section-eyebrow { color: var(--brand-coral); }
  .speaker h2 { color: var(--on-primary); }
  .speaker .lede { color: rgba(255,255,255,0.7); }
  .speaker-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px;
  }
  .speaker-block h3 {
    font-size: 18px; font-weight: 600; margin-bottom: 16px;
  }
  .speaker-list { list-style: none; }
  .speaker-list li {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
  }
  .speaker-list li:last-child { border-bottom: none; }
  .speaker-list .k { color: rgba(255,255,255,0.95); font-weight: 500; flex: 1; }
  .speaker-list .v { color: rgba(255,255,255,0.6); text-align: right; }

  .speaker-conditions {
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  }
  .speaker-conditions div { font-size: 14px; }
  .speaker-conditions .label { color: rgba(255,255,255,0.6); margin-bottom: 4px; }
  .speaker-conditions .val { color: var(--on-primary); font-weight: 500; line-height: 1.5; }
  @media (max-width: 768px) {
    .speaker { padding: 40px 24px; }
    .speaker-grid, .speaker-conditions { grid-template-columns: 1fr; }
  }

  /* Awards */
  .awards-table {
    background: var(--canvas); border: 1px solid var(--hairline);
    border-radius: 16px; overflow: hidden;
  }
  .awards-row {
    display: grid; grid-template-columns: 120px 1fr;
    padding: 20px 24px; border-bottom: 1px solid var(--hairline-soft);
    align-items: center;
  }
  .awards-row:last-child { border-bottom: none; }
  .awards-year {
    font-size: 14px; font-weight: 700; color: var(--brand-coral);
  }
  .awards-text {
    font-size: 15px; color: var(--charcoal); line-height: 1.5;
  }
  @media (max-width: 600px) {
    .awards-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  }

  /* Akademisch */
  .edu-list {
    display: flex; flex-direction: column; gap: 16px;
  }
  .edu-item {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px 28px;
    display: grid; grid-template-columns: 160px 1fr 1fr;
    align-items: center; gap: 24px;
  }
  .edu-period { font-size: 14px; font-weight: 600; color: var(--ink); }
  .edu-inst { font-size: 16px; font-weight: 500; color: var(--ink); }
  .edu-degree { font-size: 14px; color: var(--steel); }
  @media (max-width: 768px) {
    .edu-item { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
  }

  /* Medien */
  .media-row {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .media-tag {
    background: var(--canvas); border: 1px solid var(--hairline);
    border-radius: 9999px;
    padding: 12px 24px;
    font-size: 15px; font-weight: 600; color: var(--ink);
  }

  /* CTA */
  .cta-card {
    background: var(--brand-coral);
    border-radius: 32px;
    padding: 80px 64px;
    color: var(--on-primary);
    text-align: center;
  }
  .cta-card h2 {
    color: var(--on-primary);
  }
  .cta-card p {
    margin-top: 16px; font-size: 18px; color: rgba(255,255,255,0.9);
  }
  .cta-card .btn-tertiary {
    margin-top: 32px;
  }
  @media (max-width: 768px) {
    .cta-card { padding: 56px 28px; border-radius: 24px; }
  }

  /* ============ Referenzen (Wer vertraut) ============ */
  .refs {
    position: relative;
    padding: 96px 0;
    background: var(--canvas);
    border-top: 1px solid var(--hairline-soft);
    border-bottom: 1px solid var(--hairline-soft);
    overflow: hidden;
  }
  .refs-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
    max-width: 1280px; margin: 0 auto 48px; padding: 0 24px;
  }
  .refs-head h2 {
    max-width: 640px;
  }
  .refs-head .right {
    font-size: 18px; color: var(--slate); max-width: 420px; line-height: 1.5;
  }
  .marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track {
    display: flex; gap: 64px; width: max-content;
    animation: marquee 50s linear infinite;
    align-items: center;
    padding: 8px 0;
    will-change: transform;
    transform: translateZ(0);
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .logo-item {
    display: inline-flex; align-items: center; justify-content: center;
    width: 140px; height: 42px; flex: 0 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
  }
  .logo-item img {
    max-height: 100%; max-width: 100%;
    width: auto; height: auto;
    object-fit: contain; display: block;
  }
  .logo-item:hover { filter: grayscale(0%); opacity: 1; transform: translateY(-2px); }
  @media (max-width: 900px) {
    .refs { padding: 72px 0; }
    .marquee-track { gap: 48px; }
    .logo-item { width: 120px; height: 38px; }
  }
  @media (max-width: 600px) {
    .refs { padding: 56px 0; }
    .marquee-track { gap: 40px; }
    .logo-item { width: 100px; height: 36px; }
  }

  /* ============ KPIs ============ */
  .kpis {
    position: relative;
    background: var(--ink);
    color: var(--on-primary);
    overflow: hidden;
    padding: 96px 0;
  }
  .kpis::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,85,48,0.15), transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(20,86,240,0.12), transparent 60%);
    pointer-events: none;
  }
  .kpis::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
  }
  .kpis .container { position: relative; z-index: 1; }
  .kpis-head { text-align: center; margin-bottom: 72px; }
  .kpis-head .eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 16px;
    display: block;
  }
  .kpis-head .eyebrow .dot { display: none; }
  .kpis-head h2 {
    color: var(--on-primary);
    max-width: 820px; margin: 0 auto;
  }
  .kpis-head h2 .accent { color: var(--brand-coral); }
  .kpis-head p {
    margin: 18px auto 0; max-width: 600px;
    font-size: 17px; line-height: 1.5; color: rgba(255,255,255,0.6);
  }
  .kpis-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  .kpi {
    padding: 44px 32px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: background .3s ease;
  }
  .kpi:hover { background: rgba(255,255,255,0.025); }
  .kpi .num {
    font-size: 72px; font-weight: 600; line-height: 1; letter-spacing: -3px;
    color: var(--on-primary);
    display: flex; align-items: baseline; gap: 4px;
  }
  .kpi .num .unit {
    font-size: 28px; color: var(--brand-coral); font-weight: 600; letter-spacing: -1px;
  }
  .kpi .lbl {
    margin-top: 18px;
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--brand-coral);
  }
  .kpi .desc {
    margin-top: 10px;
    font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.55);
  }
  @media (max-width: 900px) {
    .kpis { padding: 72px 0; }
    .kpis-grid { grid-template-columns: repeat(2, 1fr); }
    .kpi { padding: 32px 24px; }
    .kpi .num { font-size: 52px; }
  }
  @media (max-width: 600px) {
    .kpis { padding: 56px 0; }
    .kpis-grid { grid-template-columns: 1fr; }
  }

  /* ============ Bekannt aus (Medien) ============ */
  .media-feature {
    background: var(--canvas);
    padding: 96px 0;
    border-top: 1px solid var(--hairline-soft);
  }
  .media-feature-head { text-align: center; margin-bottom: 48px; }
  .media-feature-head h2 {
    max-width: 760px; margin: 0 auto;
  }
  .media-feature-head h2 .accent { color: var(--brand-coral); }

  .media-logos {
    position: relative;
    max-width: 1100px; margin: 0 auto;
  }
  .media-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-left: 1px solid var(--hairline);
    transition: opacity 600ms ease;
  }
  .media-page:not(.is-active) {
    position: absolute; inset: 0;
    opacity: 0; pointer-events: none;
  }
  .media-page.is-active { opacity: 1; }
  @media (prefers-reduced-motion: reduce) {
    .media-page { transition: none; }
  }
  .media-logo {
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 40px 24px;
    display: flex; align-items: center; justify-content: center;
    min-height: 130px;
    color: var(--ink);
    transition: background 200ms ease;
    text-align: center;
  }
  .media-logo:hover { background: var(--surface); }
  .media-logo img {
    max-width: 110px; max-height: 42px;
    width: auto; height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 200ms ease, opacity 200ms ease;
  }
  .media-logo:hover img { filter: grayscale(0%); opacity: 1; }
  @media (max-width: 900px) {
    .media-feature { padding: 72px 0; }
    .media-page { grid-template-columns: repeat(2, 1fr); }
    .media-logo { min-height: 110px; padding: 28px 16px; }
  }
  @media (max-width: 600px) {
    .media-feature { padding: 56px 0; }
    .media-logos,
    .ueber-partners .partners-grid {
      display: grid;
      grid-auto-flow: column;
      grid-template-rows: repeat(2, 1fr);
      grid-auto-columns: calc((100vw - 48px) / 2);
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 24px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin-left: -24px;
      margin-right: -24px;
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
      border-left: none;
      grid-template-columns: none;
      background-image: linear-gradient(var(--hairline), var(--hairline));
      background-size: 100% 1px;
      background-position: 0 50%;
      background-repeat: no-repeat;
    }
    .media-logos::-webkit-scrollbar,
    .ueber-partners .partners-grid::-webkit-scrollbar { display: none; }
    .media-page { display: contents; }
    .media-logo[data-filler] { display: none; }
    .media-logo,
    .ueber-partners .partner-cell {
      scroll-snap-align: start;
      min-height: 100px;
      padding: 22px 14px;
      border-bottom: none;
      border-right: 1px solid var(--hairline);
      aspect-ratio: auto;
      filter: none;
      opacity: 1;
      background: transparent;
    }
    .ueber-partners .partner-cell img {
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 200ms ease, opacity 200ms ease;
    }
    .ueber-partners .partner-cell:hover img { filter: grayscale(0%); opacity: 1; }
  }

  /* ============ Testimonials ============ */
  .testimonials {
    padding: 96px 0;
    background:
      radial-gradient(circle at 12% 8%, rgba(255,85,48,0.06), transparent 45%),
      radial-gradient(circle at 88% 92%, rgba(234,94,193,0.05), transparent 50%),
      linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
  }
  .testimonials .container { position: relative; z-index: 1; }
  .testimonials-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    margin-bottom: 40px; align-items: end;
  }
  .testimonials-head .intro {
    font-size: 16px; line-height: 1.5; color: var(--slate);
  }
  .testimonials-head .intro .accent {
    color: var(--brand-coral); font-weight: 600;
  }
  .t-headstat {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 14px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255,85,48,0.08);
    border: 1px solid rgba(255,85,48,0.18);
    font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
    color: var(--brand-coral);
  }
  .t-headstat::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--brand-coral);
  }

  .t-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .t-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(10,10,10,0.06);
    display: flex; flex-direction: column;
    overflow: hidden;
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 14px 40px -28px rgba(10,10,10,0.18);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease;
  }
  .t-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at 100% 0%, rgba(255,85,48,0.09) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity .35s ease;
  }
  .t-card > * { position: relative; z-index: 1; }
  .t-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,85,48,0.22);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -30px rgba(10,10,10,0.22);
  }
  .t-card:hover::after { opacity: 1; }

  .t-card.feature {
    grid-row: span 2;
    padding: 28px 26px 24px;
    border-color: rgba(255,85,48,0.22);
  }
  .t-card.feature::after { opacity: 1; }

  .t-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .t-tag {
    font-size: 11px; font-weight: 600; color: var(--brand-coral);
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(255,85,48,0.08);
    border-radius: 999px;
  }
  .t-quote-mark {
    color: var(--brand-coral);
    font-family: Georgia, serif;
    font-size: 36px; line-height: 0.6;
    font-weight: 700;
    opacity: 0.5;
  }
  .t-card.feature .t-quote-mark { font-size: 46px; }

  .t-text {
    font-size: 14.5px; line-height: 1.5; color: var(--charcoal);
    flex: 1;
  }
  .t-card.feature .t-text {
    color: var(--ink);
    font-size: 18px; line-height: 1.45;
    font-weight: 500; letter-spacing: -0.3px;
  }
  .t-author {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(10,10,10,0.08);
    display: flex; align-items: center; gap: 12px;
  }
  .t-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--surface);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(255,85,48,0.25),
      0 0 0 3px rgba(255,85,48,0.06);
  }
  .t-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .t-meta .name {
    font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.3;
    letter-spacing: -0.1px;
  }
  .t-meta .role {
    font-size: 11.5px; color: var(--slate); margin-top: 2px;
    letter-spacing: 0.2px;
  }

  /* Slider wrapper – on desktop it's transparent (display: contents) */
  .t-slider { display: contents; }
  .t-dots { display: none; }

  @media (max-width: 900px) {
    .testimonials { padding: 72px 0; }
    .testimonials-head { grid-template-columns: 1fr; gap: 12px; }

    .t-slider {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 20px;
      padding: 6px 20px 22px;
      margin: 0 -20px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .t-slider::-webkit-scrollbar { display: none; }
    .t-grid { display: contents; }

    .t-card {
      flex: 0 0 86%;
      scroll-snap-align: center;
      min-height: 260px;
      transform: scale(0.94);
      opacity: 0.55;
      transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .45s ease, box-shadow .35s ease;
    }
    .t-card.is-active {
      transform: scale(1);
      opacity: 1;
      box-shadow:
        0 1px 2px rgba(10,10,10,0.05),
        0 22px 50px -28px rgba(10,10,10,0.28);
    }
    .t-card:hover { transform: scale(0.94); }
    .t-card.is-active:hover { transform: scale(1); }

    .t-card.feature {
      grid-row: auto;
      padding: 22px 22px 20px;
      border-color: rgba(10,10,10,0.06);
    }
    .t-card.feature::after { opacity: 0; }
    .t-card.feature .t-quote-mark { font-size: 36px; }
    .t-card.feature .t-text {
      color: var(--charcoal);
      font-size: 14.5px; line-height: 1.5;
      font-weight: 400; letter-spacing: normal;
    }

    .t-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .t-dots button {
      width: 7px; height: 7px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(10,10,10,0.18);
      cursor: pointer;
      transition: width .35s cubic-bezier(.2,.7,.2,1), background .3s ease;
    }
    .t-dots button.is-active {
      width: 24px;
      background: var(--brand-coral);
    }
    .t-dots button:focus-visible {
      outline: 2px solid var(--brand-coral);
      outline-offset: 3px;
    }
  }
  @media (max-width: 600px) {
    .testimonials { padding: 56px 0; }
    .t-card { flex-basis: 88%; }
  }

  /* ============ Socials ============ */
  .socials {
    background: var(--canvas);
    padding: 96px 0;
  }
  .socials-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
    margin-bottom: 48px;
  }
  .socials-head .intro {
    font-size: 17px; line-height: 1.5; color: var(--slate);
  }

  .socials-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .s-card {
    position: relative;
    border-radius: 24px;
    padding: 32px 28px 28px;
    color: var(--on-primary);
    overflow: hidden;
    min-height: 280px;
    display: flex; flex-direction: column;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }
  .s-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(10,10,10,0.2);
  }
  .s-card::after {
    content: "";
    position: absolute;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
    top: -100px; right: -80px;
    pointer-events: none;
  }
  .s-card.linkedin { background: linear-gradient(140deg, #0a66c2 0%, #003a76 100%); }
  .s-card.instagram { background: linear-gradient(140deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
  .s-card.youtube { background: linear-gradient(140deg, #ff0000 0%, #c40000 100%); }
  .s-card.x { background: linear-gradient(140deg, #1a1a1a 0%, #000 100%); }

  .s-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: auto;
  }
  .s-icon svg { width: 22px; height: 22px; color: var(--on-primary); }
  .s-handle {
    margin-top: 28px;
    font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500;
  }
  .s-name {
    font-size: 22px; font-weight: 600; letter-spacing: -0.5px;
    margin-top: 4px;
    color: var(--on-primary);
  }
  .s-foot {
    margin-top: 24px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .s-foot .platform {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
  }
  .s-foot .arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .3s ease, background .3s ease;
  }
  .s-card:hover .s-foot .arrow { background: var(--canvas); color: var(--ink); transform: rotate(-45deg); }
  .s-foot .arrow svg { width: 14px; height: 14px; }

  @media (max-width: 900px) {
    .socials { padding: 72px 0; }
    .socials-head { grid-template-columns: 1fr; gap: 16px; }
    .socials-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .socials { padding: 56px 0; }
    .socials-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .s-card { padding: 20px 18px 18px; min-height: 220px; border-radius: 20px; }
    .s-handle { margin-top: 20px; font-size: 12px; }
    .s-name { font-size: 16px; }
    .s-foot { margin-top: 16px; padding-top: 14px; }
    .s-foot .platform { font-size: 10px; letter-spacing: 1px; }
    .s-foot .arrow { width: 28px; height: 28px; }
  }

  /* Footer */
  footer {
    background: var(--footer-bg); color: var(--on-primary);
    padding: 72px 0 32px;
    margin-top: 80px;
  }
  .speaker-cta + footer { margin-top: 0; }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
  }
  .footer-col h4 {
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-weight: 600;
    margin-bottom: 18px;
  }
  .footer-brand { font-size: 18px; font-weight: 600; }
  .footer-logo { display: block; height: 32px; width: auto; margin-bottom: 14px; }
  .footer-brand p {
    margin-top: 10px; font-size: 14px; color: var(--muted); font-weight: 400;
    max-width: 320px; line-height: 1.6;
  }
  .footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-list a, .footer-list span {
    color: rgba(255,255,255,0.78); font-size: 14px; text-decoration: none;
    transition: color .2s ease;
  }
  .footer-list a:hover { color: #fff; }
  .footer-address { font-style: normal; font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; }
  .footer-bottom {
    margin-top: 56px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px; color: var(--muted);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  @media (max-width: 860px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 520px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  }

  /* === /ueber subpage === */
  .nav-links a[aria-current="page"],
  .mobile-menu a[aria-current="page"] {
    color: var(--brand-coral);
  }

  .ueber-hero {
    position: relative;
    background: #02040a;
    color: var(--on-primary);
    padding: 96px 0 48px;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .ueber-hero--dark::before {
    content: "";
    position: absolute;
    top: -20%; right: -10%;
    width: 720px; height: 720px;
    background: radial-gradient(circle at center, rgba(255,85,48,0.18), rgba(255,85,48,0) 60%);
    pointer-events: none;
    z-index: 0;
  }
  .ueber-hero--dark::after {
    content: "";
    position: absolute;
    bottom: -30%; left: -10%;
    width: 620px; height: 620px;
    background: radial-gradient(circle at center, rgba(20,86,240,0.14), rgba(20,86,240,0) 60%);
    pointer-events: none;
    z-index: 0;
  }
  .ueber-hero-bg-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(2,4,10,0) 0%, rgba(2,4,10,0.4) 100%);
    pointer-events: none;
    z-index: 0;
  }
  .ueber-hero > .container { position: relative; z-index: 1; width: 100%; }
  .ueber-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .ueber-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--on-primary);
    font-size: 13px; font-weight: 500; letter-spacing: 0.2px;
    padding: 8px 16px; border-radius: 9999px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
  }
  .ueber-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand-coral);
    box-shadow: 0 0 0 4px rgba(255,85,48,0.18);
  }
  .ueber-hero h1 {
    font-size: 60px; font-weight: 600; line-height: 1.05; letter-spacing: -2px;
    color: var(--on-primary);
  }
  .ueber-hero h1 .accent { color: var(--brand-coral); }
  .ueber-lede {
    margin-top: 20px;
    font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.78);
    max-width: 580px;
  }
  .ueber-meta {
    margin-top: 20px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55);
    letter-spacing: 0.2px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    max-width: 620px;
  }
  .ueber-hero-right { position: relative; }
  .ueber-hero-right::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(255,85,48,0.55);
    border-radius: 16px;
    z-index: 0;
  }
  .ueber-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 30px 70px -30px rgba(0,0,0,0.6),
      0 0 60px -20px rgba(255,85,48,0.25);
    z-index: 1;
  }
  .ueber-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
  }
  @media (max-width: 960px) {
    .ueber-hero { padding: 96px 0 48px; height: auto; min-height: 100vh; }
    .ueber-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .ueber-hero h1 { font-size: 48px; letter-spacing: -1.4px; }
    .ueber-portrait { aspect-ratio: 4 / 3; max-width: 520px; }
    .ueber-hero-right::before { inset: 14px -14px -14px 14px; }
  }
  @media (max-width: 600px) {
    .ueber-hero { padding: 88px 0 48px; }
    .ueber-hero h1 { font-size: 38px; letter-spacing: -1.2px; }
    .ueber-lede { font-size: 16px; }
    .ueber-hero--dark::before { width: 420px; height: 420px; }
  }

  /* Werdegang: zweispaltig mit sticky side */
  .ueber-werdegang { background: var(--canvas); }
  .ueber-cols {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
  .ueber-side {
    position: sticky;
    top: 100px;
  }
  .ueber-side h2 {
    font-size: 44px; font-weight: 600; line-height: 1.05; letter-spacing: -1.4px;
    color: var(--ink);
  }
  .ueber-side-note {
    margin-top: 20px;
    font-size: 15px; line-height: 1.55; color: var(--slate);
    max-width: 320px;
  }
  .ueber-prose h3 {
    font-size: 22px; font-weight: 600; line-height: 1.3; letter-spacing: -0.3px;
    color: var(--ink);
    margin-top: 36px;
    margin-bottom: 14px;
  }
  .ueber-prose h3:first-child { margin-top: 0; }
  .ueber-prose p {
    font-size: 17px; line-height: 1.7; color: var(--charcoal);
    margin-bottom: 16px;
  }
  .ueber-prose strong { font-weight: 600; color: var(--ink); }
  .ueber-prose [id] { scroll-margin-top: 100px; }
  .legal-prose p { text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
  .wd-anchor { display: block; height: 0; scroll-margin-top: 100px; }

  /* Werdegang Timeline (Sticky-Aside) */
  .werdegang-timeline-wrap {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--hairline-soft);
  }
  .werdegang-timeline-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 22px;
    opacity: 0.85;
  }
  .werdegang-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .werdegang-timeline::before,
  .werdegang-timeline::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    border-radius: 2px;
    pointer-events: none;
  }
  .werdegang-timeline::before {
    bottom: 0;
    background: var(--hairline);
  }
  .werdegang-timeline::after {
    height: var(--tl-progress, 0px);
    background: linear-gradient(180deg, var(--brand-coral) 0%, var(--brand-coral) 70%, rgba(255, 85, 48, 0.55) 100%);
    transition: height 420ms cubic-bezier(0.22, 0.61, 0.36, 1), background 320ms ease;
  }
  .werdegang-timeline.is-complete::after {
    background: var(--brand-coral);
  }
  .werdegang-timeline.is-complete li.is-active .wd-dot {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
    box-shadow: none;
  }
  .werdegang-timeline.is-complete li.is-active .wd-dot::after {
    background: var(--canvas);
    transform: scale(0.5);
  }
  .werdegang-timeline li {
    position: relative;
    padding: 4px 0 4px 44px;
  }
  .werdegang-timeline li + li { margin-top: 18px; }
  .werdegang-timeline a {
    display: block;
    text-decoration: none;
    color: var(--slate);
  }
  .wd-dot {
    position: absolute;
    left: 1px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--canvas);
    border: 2px solid var(--hairline);
    box-sizing: border-box;
    z-index: 1;
    transition: background 280ms ease, border-color 280ms ease,
                box-shadow 320ms ease;
  }
  .wd-dot::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: transparent;
    transform: scale(0.35);
    transition: background 280ms ease, transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .wd-year {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--charcoal);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    transition: color 280ms ease;
  }
  .wd-year-sep {
    color: var(--slate);
    font-weight: 400;
    margin: 0 1px;
    opacity: 0.5;
  }
  .wd-label {
    display: block;
    font-size: 13px;
    color: var(--slate);
    line-height: 1.4;
    margin-top: 4px;
    letter-spacing: 0.1px;
    transition: color 280ms ease;
  }
  .werdegang-timeline a:hover .wd-dot {
    border-color: var(--slate);
  }
  .werdegang-timeline a:hover .wd-year { color: var(--ink); }
  .werdegang-timeline a:focus-visible {
    outline: 2px solid var(--brand-coral);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .werdegang-timeline li.is-passed .wd-dot {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
  }
  .werdegang-timeline li.is-passed .wd-dot::after {
    background: var(--canvas);
    transform: scale(0.5);
  }
  .werdegang-timeline li.is-passed .wd-year { color: var(--ink); }

  .werdegang-timeline li.is-active .wd-dot {
    background: var(--canvas);
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 3px rgba(255, 85, 48, 0.16);
  }
  .werdegang-timeline li.is-active .wd-dot::after {
    background: var(--brand-coral);
    transform: scale(1);
  }
  .werdegang-timeline li.is-active .wd-year { color: var(--ink); }
  .werdegang-timeline li.is-active .wd-label { color: var(--charcoal); }
  .ueber-pullquote {
    margin: 40px 0;
    padding: 8px 0 8px 28px;
    border-left: 3px solid var(--brand-coral);
    font-size: 22px; font-weight: 500; line-height: 1.4; letter-spacing: -0.4px;
    color: var(--ink);
    font-style: normal;
  }
  @media (max-width: 960px) {
    .ueber-cols { grid-template-columns: 1fr; gap: 40px; }
    .ueber-side { position: static; }
    .ueber-side h2 { font-size: 34px; letter-spacing: -1px; }
    .werdegang-timeline-wrap { display: none; }
  }
  @media (max-width: 600px) {
    .ueber-prose h3 { font-size: 19px; }
    .ueber-prose p { font-size: 16px; line-height: 1.65; }
    .ueber-pullquote { font-size: 18px; padding-left: 20px; }
  }

  /* Selbstverständnis */
  .self-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    align-items: start;
  }
  .self-item { position: relative; padding-top: 130px; }
  .self-num {
    position: absolute;
    top: -40px; left: -20px;
    font-family: var(--font-display, inherit);
    font-size: 240px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -8px;
    color: transparent;
    -webkit-text-stroke: 4px var(--brand-coral);
    text-stroke: 4px var(--brand-coral);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .self-item:hover .self-num {
    transform: translate(-4px, -4px);
  }
  .self-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 12px;
    padding: 38px 32px 30px;
    min-height: 340px;
    display: flex; flex-direction: column;
    border: 1px solid rgba(10,10,10,0.06);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 14px 40px -28px rgba(10,10,10,0.18);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease;
  }
  .self-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 100% 0%, rgba(255,85,48,0.09) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }
  .self-card > * { position: relative; z-index: 1; }
  .self-item:hover .self-card {
    transform: translateY(-5px);
    border-color: rgba(255,85,48,0.22);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -30px rgba(10,10,10,0.22);
  }
  .self-card h3 {
    font-size: 25px; font-weight: 700; line-height: 1.2;
    color: var(--ink); letter-spacing: -0.5px;
  }
  .self-card p {
    margin-top: 18px; font-size: 14px; color: #4a4a4a; line-height: 1.5;
  }
  .self-card-body {
    position: relative;
    max-height: 180px;
    overflow: hidden;
  }
  .self-card-body::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 90%);
    pointer-events: none;
    opacity: 0;
  }
  .self-card.is-clamped:not(.is-expanded) .self-card-body::after {
    opacity: 1;
  }
  .self-card.is-expanded .self-card-body {
    max-height: none;
  }
  .self-card-body > p:first-child { margin-top: 18px; }
  .self-card-toggle {
    margin-top: auto;
    padding-top: 18px;
    align-self: flex-start;
    background: none;
    border: 0;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--brand-coral);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
  }
  .self-card-toggle[hidden] { display: none; }
  .self-card-toggle:hover { color: #ff6a48; }
  .self-card-toggle .arr {
    display: inline-block;
  }
  .self-card.is-expanded .self-card-toggle .arr {
    transform: rotate(180deg);
  }
  .self-card-toggle .lbl-less { display: none; }
  .self-card.is-expanded .self-card-toggle .lbl-more { display: none; }
  .self-card.is-expanded .self-card-toggle .lbl-less { display: inline; }
  .self-card[data-no-clamp] .self-card-body { max-height: none; }
  .self-card[data-no-clamp] .self-card-body::after { display: none; }
  .self-card[data-no-clamp] .self-card-toggle { display: none; }
  @media (max-width: 1024px) {
    .self-grid { grid-template-columns: 1fr; gap: 60px; }
    .self-card { min-height: 0; }
    .self-num { font-size: 200px; letter-spacing: -6px; top: -32px; left: -10px; }
  }
  @media (max-width: 768px) {
    .self-item { padding-top: 90px; }
    .self-num { font-size: 150px; letter-spacing: -5px; top: -24px; }
    .self-card { padding: 28px 22px 24px; }
    .self-card h3 { font-size: 20px; }
  }

  /* Timeline */
  .ueber-edu { background: var(--surface); }
  .timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 820px;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 160px;
    top: 6px; bottom: 6px;
    width: 1px;
    background: var(--hairline);
  }
  .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 60px;
    padding: 18px 0 22px;
  }
  .timeline-item + .timeline-item {
    border-top: 1px dashed rgba(10,10,10,0.08);
  }
  .timeline-item::before {
    content: "";
    position: absolute;
    left: 156px;
    top: 30px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--brand-coral);
    box-shadow: 0 0 0 4px rgba(255,85,48,0.12);
  }
  .timeline-year {
    font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    padding-top: 6px;
  }
  .timeline-body h3 {
    font-size: 20px; font-weight: 600; letter-spacing: -0.3px;
    color: var(--ink); line-height: 1.3;
    margin-bottom: 6px;
  }
  .timeline-body p {
    font-size: 15px; line-height: 1.55; color: var(--slate);
  }
  .timeline-tag {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--brand-coral);
    padding: 3px 10px;
    background: rgba(255,85,48,0.08);
    border-radius: 999px;
  }
  @media (max-width: 720px) {
    .timeline::before { left: 8px; }
    .timeline-item {
      grid-template-columns: 1fr;
      gap: 6px;
      padding-left: 28px;
    }
    .timeline-item::before { left: 4px; top: 24px; }
    .timeline-year { padding-top: 0; }
  }

  /* Awards — refined list */
  .awards-list {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .awards-row {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1.5fr 1fr;
    gap: 32px;
    padding: 24px 8px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: baseline;
    transition: background .25s ease, padding-left .25s ease;
  }
  .awards-row::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 3px; height: 0;
    background: var(--brand-coral);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    transition: height .3s ease;
  }
  .awards-row:hover {
    background: rgba(255,255,255,0.03);
    padding-left: 24px;
  }
  .awards-row:hover::before { height: calc(100% - 24px); }
  .awards-year {
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--brand-coral);
  }
  .awards-main { display: flex; flex-direction: column; gap: 6px; }
  .awards-kind {
    font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
  }
  .awards-title {
    font-size: 17px; font-weight: 600; line-height: 1.4;
    letter-spacing: -0.2px;
    color: var(--on-primary);
  }
  .awards-src {
    font-size: 14px; line-height: 1.55;
    color: rgba(255,255,255,0.6);
  }
  @media (max-width: 820px) {
    .awards-row {
      grid-template-columns: 100px 1fr;
      gap: 18px 24px;
      padding: 22px 8px 22px 18px;
    }
    .awards-src { grid-column: 2; }
  }
  @media (max-width: 560px) {
    .awards-row {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 20px 8px 20px 16px;
    }
    .awards-src { grid-column: auto; }
  }

  /* CTA cards on /ueber */
  .cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .cta-card-ueber {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 30px 28px 26px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
    color: var(--ink);
  }
  .cta-card-ueber:hover {
    transform: translateY(-4px);
    border-color: rgba(255,85,48,0.3);
    box-shadow: 0 24px 50px -32px rgba(10,10,10,0.22);
  }
  .cta-card-ueber .cta-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 14px;
  }
  .cta-card-ueber h3 {
    font-size: 22px; font-weight: 600; letter-spacing: -0.4px;
    line-height: 1.25; color: var(--ink);
    margin-bottom: 12px;
  }
  .cta-card-ueber p {
    font-size: 14px; line-height: 1.55; color: var(--slate);
    margin-bottom: 22px;
  }
  .cta-link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    padding-top: 16px;
    border-top: 1px solid var(--hairline);
  }
  .cta-arr {
    display: inline-block;
    transition: transform .25s ease;
  }
  .cta-card-ueber:hover .cta-arr { transform: translateX(4px); color: var(--brand-coral); }
  @media (max-width: 900px) {
    .cta-grid { grid-template-columns: 1fr; }
  }

  /* ============ Über · Partner-Logos ============ */
  .ueber-partners { background: var(--canvas); }
  .ueber-self {
    background:
      radial-gradient(circle at 12% 8%, rgba(255,85,48,0.06), transparent 45%),
      radial-gradient(circle at 88% 92%, rgba(234,94,193,0.05), transparent 50%),
      linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
  }
  .ueber-self .container { position: relative; z-index: 1; }
  .ueber-cta { background: var(--canvas); }

  /* Awards section — dark like KPIs on main page */
  .ueber-awards {
    position: relative;
    background: var(--ink);
    color: var(--on-primary);
    overflow: hidden;
  }
  .ueber-awards::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,85,48,0.15), transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(20,86,240,0.12), transparent 60%);
    pointer-events: none;
  }
  .ueber-awards::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
  }
  .ueber-awards .container { position: relative; z-index: 1; }
  .ueber-awards .section-head h2 { color: var(--on-primary); }
  .ueber-awards .section-head p { color: rgba(255,255,255,0.65); }
  .partners-groups {
    margin-top: 48px;
  }
  .partners-group + .partners-group {
    margin-top: 64px;
  }
  .partners-group-head {
    margin-bottom: 20px;
    display: flex; align-items: baseline; gap: 16px;
  }
  .partners-group-head .eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin: 0;
  }
  .partners-group-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--hairline);
    transform: translateY(-2px);
  }
  .partners-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1.5px solid var(--hairline);
    border-left: 1.5px solid var(--hairline);
  }
  .partners-group .partners-grid { margin-top: 0; }
  .partners-group .marquee { padding-top: 22px; }
  @media (max-width: 700px) {
    .partners-group + .partners-group { margin-top: 48px; }
  }
  .partner-cell {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 3 / 2;
    padding: 20px 24px;
    border-right: 1.5px solid var(--hairline);
    border-bottom: 1.5px solid var(--hairline);
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter .3s ease, opacity .3s ease, background-color .3s ease;
  }
  .partner-cell:hover { filter: grayscale(0%); opacity: 1; background: #fafafa; }
  .partner-cell img {
    max-width: 110px; max-height: 42px;
    width: auto; height: auto; object-fit: contain;
  }
  @media (max-width: 1100px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 700px)  { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 420px)  { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

  /* Desktop: render the .media-logos partner blocks as a single static grid
     (matches the original .partners-grid look). Mobile keeps the snap-scroll. */
  @media (min-width: 601px) {
    .ueber-partners .media-logos {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border-top: 1.5px solid var(--hairline);
      border-left: 1.5px solid var(--hairline);
      max-width: none;
      position: static;
    }
    .ueber-partners .media-page {
      display: contents;
      border: 0;
    }
    .ueber-partners .media-logo {
      aspect-ratio: 3 / 2;
      min-height: 0;
      padding: 20px 24px;
      border-right: 1.5px solid var(--hairline);
      border-bottom: 1.5px solid var(--hairline);
      filter: grayscale(100%);
      opacity: 0.75;
      transition: filter .3s ease, opacity .3s ease, background-color .3s ease;
    }
    .ueber-partners .media-logo:hover { filter: grayscale(0%); opacity: 1; background: #fafafa; }
    .ueber-partners .media-logo img {
      max-width: 110px; max-height: 42px;
      width: auto; height: auto; object-fit: contain;
      filter: none;
      opacity: 1;
    }
    .ueber-partners .media-logo[data-filler] {
      display: none;
    }
  }
  @media (min-width: 701px) and (max-width: 1100px) {
    .ueber-partners .media-logos { grid-template-columns: repeat(4, 1fr); }
  }
  @media (min-width: 601px) and (max-width: 700px) {
    .ueber-partners .media-logos { grid-template-columns: repeat(3, 1fr); }
  }

  /* ============ /speaker subpage ============ */
  @media (max-width: 900px) {
    .speaker-hero .presse-hero-photo {
      margin-bottom: -150px;
    }
    .speaker-hero .presse-hero-bg {
      left: 50%;
      top: 38%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 92% center;
    }
  }


  /* Themen */
  .speaker-themen {
    background:
      radial-gradient(circle at 10% 5%, rgba(255,85,48,0.05), transparent 45%),
      radial-gradient(circle at 90% 95%, rgba(20,86,240,0.04), transparent 50%),
      linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
  }
  .themen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .themen-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10,10,10,0.06);
    border-radius: 14px;
    padding: 30px 28px 28px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 14px 40px -30px rgba(10,10,10,0.18);
  }
  .themen-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at 100% 0%, rgba(255,85,48,0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }
  .themen-card > * { position: relative; z-index: 1; }
  .themen-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,85,48,0.22);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -30px rgba(10,10,10,0.22);
  }
  .themen-num {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,85,48,0.35);
    text-stroke: 1.5px rgba(255,85,48,0.35);
    pointer-events: none;
    user-select: none;
  }
  .themen-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 12px;
  }
  .themen-card h3 {
    font-size: 20px; font-weight: 600; line-height: 1.3;
    letter-spacing: -0.3px; color: var(--ink);
    margin-bottom: 12px;
    max-width: 92%;
  }
  .themen-card p {
    font-size: 14.5px; line-height: 1.6; color: var(--slate);
  }
  @media (max-width: 1024px) { .themen-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px)  { .themen-grid { grid-template-columns: 1fr; gap: 18px; } }

  /* Formate */
  .speaker-formate { background: var(--canvas); }
  .formate-list {
    border-top: 1px solid var(--hairline);
  }
  .formate-row {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.6fr;
    gap: 28px;
    padding: 26px 20px 26px 22px;
    border-bottom: 1px solid var(--hairline);
    align-items: center;
    position: relative;
    transition: background .25s ease, padding-left .25s ease;
  }
  .formate-row::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 3px; height: 0;
    background: var(--brand-coral);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    transition: height .3s ease;
  }
  .formate-row:hover { background: var(--surface-soft); padding-left: 26px; }
  .formate-row:hover::before { height: calc(100% - 28px); }
  .formate-kind {
    font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--stone);
    margin-bottom: 6px;
  }
  .formate-title {
    font-size: 20px; font-weight: 600; letter-spacing: -0.3px;
    color: var(--ink); line-height: 1.25;
  }
  .formate-meta > div:last-child {
    font-size: 15px; font-weight: 500; color: var(--ink);
  }
  .formate-desc {
    font-size: 15px; line-height: 1.55; color: var(--slate);
  }
  @media (max-width: 820px) {
    .formate-row {
      grid-template-columns: 1fr 1fr;
      gap: 16px 24px;
    }
    .formate-desc { grid-column: 1 / -1; }
  }
  @media (max-width: 520px) {
    .formate-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 16px 22px 18px; }
    .formate-desc { grid-column: auto; }
    .formate-title { font-size: 18px; }
  }

  /* Konditionen */
  .speaker-konditionen {
    background:
      radial-gradient(circle at 15% 90%, rgba(255,85,48,0.05), transparent 45%),
      radial-gradient(circle at 85% 10%, rgba(234,94,193,0.04), transparent 50%),
      var(--surface);
  }
  .kond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .kond-card {
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
  }
  .kond-card--accent {
    background: var(--ink);
    color: var(--on-primary);
    border-color: var(--ink);
    position: relative;
    overflow: hidden;
  }
  .kond-card--accent::before {
    content: "";
    position: absolute;
    top: -40%; right: -20%;
    width: 460px; height: 460px;
    background: radial-gradient(circle at center, rgba(255,85,48,0.22), rgba(255,85,48,0) 60%);
    pointer-events: none;
  }
  .kond-card--accent > * { position: relative; z-index: 1; }
  .kond-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 16px;
  }
  .kond-card h3 {
    font-size: 30px; font-weight: 600; line-height: 1.2;
    letter-spacing: -0.6px; color: var(--ink);
  }
  .kond-card--accent h3 { color: var(--on-primary); }
  .kond-price {
    color: var(--brand-coral);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1;
    display: inline-block;
  }
  .kond-lang {
    list-style: none; padding: 0; margin: 28px 0 0;
    display: flex; flex-direction: column;
  }
  .kond-lang li {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--hairline-soft);
  }
  .kond-lang li:last-child { border-bottom: 1px solid var(--hairline-soft); }
  .lang-code {
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--brand-coral);
    background: rgba(255,85,48,0.08);
    border: 1px solid rgba(255,85,48,0.18);
    padding: 6px 0;
    border-radius: 8px;
    text-align: center;
  }
  .lang-name { font-size: 15.5px; font-weight: 600; color: var(--ink); }
  .lang-level { font-size: 13.5px; color: var(--slate); }
  .kond-note {
    margin-top: 24px;
    font-size: 14.5px; line-height: 1.65;
    color: rgba(255,255,255,0.7);
  }
  .kond-card--accent .btn-coral { margin-top: 28px; align-self: flex-start; }
  @media (max-width: 900px) {
    .kond-grid { grid-template-columns: 1fr; }
    .kond-card { padding: 32px 26px 28px; }
    .kond-card h3 { font-size: 26px; }
    .kond-price { font-size: 38px; }
  }
  @media (max-width: 520px) {
    .kond-lang li { grid-template-columns: 44px 1fr; gap: 12px; }
    .lang-level { grid-column: 2; }
  }

  /* Showreel */
  .speaker-showreel { background: var(--canvas); }
  .showreel-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }
  .showreel-frame {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    box-shadow:
      0 30px 80px -40px rgba(10,10,10,0.45),
      0 0 60px -20px rgba(255,85,48,0.18);
    border: 1px solid rgba(10,10,10,0.06);
    color: var(--on-primary);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  }
  .showreel-frame:hover { transform: translateY(-3px); }
  .showreel-frame img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    opacity: 0.55;
    transition: opacity .35s ease, transform .6s ease;
  }
  .showreel-frame:hover img { opacity: 0.6; transform: scale(1.03); }
  .showreel-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(2,4,10,0.1) 0%, rgba(2,4,10,0.7) 100%),
      radial-gradient(circle at center, rgba(2,4,10,0.0) 30%, rgba(2,4,10,0.55) 100%);
    pointer-events: none;
  }
  .showreel-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--brand-coral);
    color: var(--on-primary);
    display: flex; align-items: center; justify-content: center;
    box-shadow:
      0 0 0 12px rgba(255,85,48,0.18),
      0 20px 50px -20px rgba(255,85,48,0.55);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .showreel-play svg { width: 38px; height: 38px; margin-left: 4px; }
  .showreel-frame:hover .showreel-play {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow:
      0 0 0 14px rgba(255,85,48,0.22),
      0 24px 60px -20px rgba(255,85,48,0.65);
  }
  .showreel-meta {
    position: absolute;
    left: 28px; right: 28px; bottom: 24px;
    z-index: 1;
  }
  .showreel-kind {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 8px;
  }
  .showreel-title {
    font-size: 20px; font-weight: 600; letter-spacing: -0.3px;
    color: var(--on-primary);
    line-height: 1.3;
    max-width: 720px;
  }
  .showreel-platform {
    margin-top: 6px;
    font-size: 13.5px; color: rgba(255,255,255,0.75);
  }
  @media (max-width: 600px) {
    .showreel-play { width: 72px; height: 72px; }
    .showreel-play svg { width: 28px; height: 28px; }
    .showreel-meta { left: 18px; right: 18px; bottom: 16px; }
    .showreel-title { font-size: 16px; }
  }

  /* Vergangene Auftritte */
  .speaker-refs {
    background:
      radial-gradient(circle at 88% 8%, rgba(255,85,48,0.05), transparent 45%),
      var(--surface);
  }
  .refs-list { border-top: 1px solid var(--hairline); }
  .refs-row {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    padding: 24px 8px 24px 20px;
    border-bottom: 1px solid var(--hairline);
    align-items: baseline;
    transition: background .25s ease, padding-left .25s ease;
  }
  .refs-row::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 3px; height: 0;
    background: var(--brand-coral);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    transition: height .3s ease;
  }
  .refs-row:hover { background: rgba(255,255,255,0.6); padding-left: 24px; }
  .refs-row:hover::before { height: calc(100% - 24px); }
  .refs-year {
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--brand-coral);
  }
  .refs-year .r-cur { color: var(--ink); }
  .refs-main { display: flex; flex-direction: column; gap: 4px; }
  .refs-kind {
    font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--stone);
  }
  .refs-title {
    font-size: 17px; font-weight: 600; letter-spacing: -0.2px;
    color: var(--ink); line-height: 1.4;
  }
  .refs-loc {
    font-size: 14px; line-height: 1.55; color: var(--slate);
  }
  @media (max-width: 560px) {
    .refs-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 8px 20px 16px; }
  }

  /* Speaker CTA */
  .speaker-cta {
    background: var(--ink);
    color: var(--on-primary);
    position: relative;
    overflow: hidden;
  }
  .speaker-cta::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,85,48,0.15), transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(20,86,240,0.12), transparent 60%);
    pointer-events: none;
  }
  .speaker-cta::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
  }
  .speaker-cta .container { position: relative; z-index: 1; }
  .speaker-cta-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .speaker-cta-left .section-eyebrow { color: var(--brand-coral); }
  .speaker-cta-left h2 {
    font-size: 48px; font-weight: 600; line-height: 1.1;
    letter-spacing: -1.6px; color: var(--on-primary);
    margin-bottom: 18px;
  }
  .speaker-cta-left h2 .accent { color: var(--brand-coral); }
  .speaker-cta-left > p {
    font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.7);
    max-width: 560px;
  }
  .speaker-cta-bullets {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 18px;
    max-width: 560px;
  }
  .cta-bullet {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: start;
  }
  .cta-bullet-ic {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,85,48,0.14);
    border: 1px solid rgba(255,85,48,0.3);
    color: var(--brand-coral);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .cta-bullet-ic svg { width: 18px; height: 18px; }
  .cta-bullet-title {
    font-size: 15px; font-weight: 600; color: var(--on-primary);
    margin-bottom: 2px;
  }
  .cta-bullet-text {
    font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.65);
  }

  .speaker-cta-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 30px 28px;
    backdrop-filter: blur(8px);
  }
  .speaker-cta-card .kond-eyebrow { margin-bottom: 12px; }
  .speaker-cta-card h3 {
    font-size: 24px; font-weight: 600; letter-spacing: -0.4px;
    color: var(--on-primary); margin-bottom: 22px;
  }
  .speaker-contact { list-style: none; margin: 0; padding: 0; }
  .speaker-contact li {
    display: flex; flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .speaker-contact li:last-child { border-bottom: none; padding-bottom: 0; }
  .speaker-contact li:first-child { padding-top: 0; }
  .sc-label {
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
  }
  .sc-value {
    font-size: 15.5px; font-weight: 600; color: var(--on-primary);
    transition: color .2s ease;
  }
  .sc-value:hover { color: var(--brand-coral); }
  @media (max-width: 960px) {
    .speaker-cta-wrap { grid-template-columns: 1fr; gap: 40px; }
    .speaker-cta-left h2 { font-size: 40px; letter-spacing: -1.2px; }
  }
  @media (max-width: 600px) {
    .speaker-cta-left h2 { font-size: 32px; letter-spacing: -0.8px; }
    .speaker-cta-card { padding: 26px 22px 22px; }
  }

  /* Presse — Quick Facts (bento grid) */
  .presse-facts {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 14px;
    margin: 56px 0 0;
  }
  .fact {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 22px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .fact:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(10,10,10,0.06);
  }
  .fact-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .fact-num {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-coral);
    font-variant-numeric: tabular-nums;
    padding: 5px 9px;
    border: 1px solid currentColor;
    border-radius: 999px;
    line-height: 1;
  }
  .fact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate);
  }
  .fact-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.3px;
    line-height: 1.35;
    margin: 0;
  }
  .fact-em {
    font-style: normal;
    color: var(--brand-coral);
    font-weight: 700;
  }

  .fact--m { grid-column: span 4; }
  .fact--lg { grid-column: span 7; }
  .fact--sm { grid-column: span 5; }
  .fact--wide { grid-column: span 8; }
  .fact--narrow { grid-column: span 4; }

  /* Hero tile — Name */
  .fact--hero {
    grid-column: span 8;
    grid-row: span 2;
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: var(--on-primary);
    padding: 36px 40px;
  }
  .fact--hero .fact-label { color: rgba(255,255,255,0.55); }
  .fact-display {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
    position: relative;
    z-index: 1;
  }
  .fact-display-line {
    font-size: 76px;
    font-weight: 700;
    letter-spacing: -2.8px;
    color: white;
  }
  .fact-display-line.is-coral { color: var(--brand-coral); }
  .fact-mono {
    position: absolute;
    right: -20px; bottom: -40px;
    font-size: 240px;
    font-weight: 700;
    letter-spacing: -16px;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    line-height: 1;
    user-select: none;
  }

  /* Lebensmittelpunkt — display number style */
  .fact-display-xl {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--ink);
    line-height: 0.95;
    align-self: flex-start;
  }
  .fact-dot { color: var(--brand-coral); }

  /* Sprachen — pills */
  .fact-langs {
    display: flex; flex-wrap: wrap; gap: 8px;
    align-items: flex-end;
  }
  .fact-lang {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 52px;
    padding: 10px 14px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ink);
    transition: background .25s ease, color .25s ease;
  }
  .fact-lang:hover { background: var(--ink); color: var(--on-primary); }

  /* Rollen — dark bullet list */
  .fact--dark {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: var(--on-primary);
  }
  .fact--dark .fact-label { color: rgba(255,255,255,0.55); }
  .fact-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 6px;
  }
  .fact-list li {
    font-size: 17px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.2px;
    position: relative;
    padding-left: 16px;
  }
  .fact-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 6px; height: 6px;
    background: var(--brand-coral);
    border-radius: 999px;
  }

  /* Unternehmen — chip list */
  .fact-pills {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .fact-pills li {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    padding: 9px 14px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    letter-spacing: -0.1px;
    transition: border-color .25s ease, color .25s ease;
  }
  .fact-pills li:hover {
    border-color: var(--brand-coral);
    color: var(--brand-coral);
  }

  /* NGOs — coral tile */
  .fact--coral {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
    color: var(--on-primary);
  }
  .fact--coral .fact-num { color: white; }
  .fact--coral .fact-label { color: rgba(255,255,255,0.75); }
  .fact-stack {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .fact-stack li {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.15;
    color: white;
  }
  .fact-stack-sub {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255,255,255,0.8);
  }

  @media (max-width: 980px) {
    .presse-facts { grid-template-columns: repeat(6, 1fr); }
    .fact--hero { grid-column: span 6; grid-row: span 1; min-height: 220px; }
    .fact--m { grid-column: span 3; }
    .fact--lg { grid-column: span 6; }
    .fact--sm { grid-column: span 6; }
    .fact--wide { grid-column: span 6; }
    .fact--narrow { grid-column: span 6; }
    .fact-display-line { font-size: 56px; letter-spacing: -2px; }
  }
  @media (max-width: 600px) {
    .presse-facts { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
    .fact { padding: 22px 24px; min-height: 130px; }
    .fact--hero { padding: 28px 26px; min-height: 220px; grid-column: 1 / -1; }
    .fact--m, .fact--lg, .fact--sm, .fact--wide, .fact--narrow { grid-column: 1 / -1; }
    .fact-display-line { font-size: 42px; letter-spacing: -1.5px; }
    .fact-display-xl { font-size: 48px; }
    .fact-mono { font-size: 160px; bottom: -28px; right: -12px; }
    .fact-value { font-size: 18px; }
    .fact-list li { font-size: 16px; }
  }

  /* Presse-Hero — bbg-logo-hero als Hintergrund */
  .presse-hero {
    position: relative;
    overflow: hidden;
    background-color: #02040a;
    color: var(--on-primary);
    padding: 80px 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .presse-hero-photo {
    position: absolute; inset: 0; overflow: hidden; z-index: 0;
  }
  .presse-hero-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .presse-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(2,4,10,0.85) 0%, rgba(2,4,10,0.55) 45%, rgba(2,4,10,0.25) 100%);
    z-index: 1; pointer-events: none;
  }
  .presse-hero > .container { position: relative; z-index: 2; width: 100%; }
  .presse-hero-inner { max-width: 640px; }
  .presse-hero h1 {
    font-size: 60px; font-weight: 600; line-height: 1.05; letter-spacing: -2px;
    color: var(--on-primary);
  }
  .presse-hero h1 .accent { color: var(--brand-coral); }

  @media (max-width: 1100px) {
    .presse-hero h1 { font-size: 52px; letter-spacing: -1.6px; }
  }
  @media (max-width: 900px) {
    .presse-hero {
      padding: 80px 0 32px;
      display: block;
      min-height: 0;
    }
    .presse-hero h1 { font-size: 40px; letter-spacing: -1.2px; }
    .presse-hero-overlay { display: none; }
    .presse-hero-photo {
      position: relative;
      inset: auto;
      width: 100%;
      height: 58vh;
      min-height: 380px;
      max-height: 560px;
      margin-bottom: -120px;
      overflow: hidden;
      z-index: 1;
    }
    .presse-hero-bg {
      position: absolute;
      height: 115%;
      width: auto;
      max-width: none;
      left: 50%;
      top: 38%;
      transform: translate(-76.56%, -50.93%);
      object-fit: unset;
    }
    .presse-hero-photo::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(2,4,10,0) 0%, rgba(2,4,10,0) 45%, rgba(2,4,10,0.6) 75%, rgba(2,4,10,1) 100%);
      pointer-events: none; z-index: 2;
    }
    .presse-hero > .container { padding-top: 0; position: relative; z-index: 3; }
    .presse-hero-inner { position: relative; z-index: 3; padding-top: 0; }
  }
  @media (max-width: 600px) {
    .presse-hero h1 { font-size: 34px; }
  }

  @media (max-width: 900px) {
    .kontakt-hero .presse-hero-photo {
      margin-bottom: -167px;
    }
    .kontakt-hero .presse-hero-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      transform: translateY(-14%);
      object-fit: cover;
      object-position: 96% 50%;
    }
  }

  /* ========================================================
     KONTAKT
     ======================================================== */

  /* Anliegen-Routing */
  .kontakt-routes-section {
    background:
      radial-gradient(circle at 12% 8%, rgba(255,85,48,0.05), transparent 45%),
      radial-gradient(circle at 88% 92%, rgba(20,86,240,0.04), transparent 50%),
      linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
  }
  .kontakt-routes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .kontakt-route {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10,10,10,0.07);
    border-radius: 20px;
    padding: 36px 32px 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    color: var(--ink);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease;
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 18px 50px -32px rgba(10,10,10,0.22);
  }
  .kontakt-route::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 100% 0%, rgba(255,85,48,0.10) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    opacity: .55;
    transition: opacity .35s ease;
  }
  .kontakt-route > * { position: relative; z-index: 1; }
  .kontakt-route:hover {
    transform: translateY(-6px);
    border-color: rgba(255,85,48,0.28);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 36px 70px -32px rgba(10,10,10,0.28);
  }
  .kontakt-route:hover::after { opacity: 1; }

  .kontakt-route-num {
    position: absolute;
    top: 16px; right: 22px;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,85,48,0.32);
    text-stroke: 1.5px rgba(255,85,48,0.32);
    pointer-events: none;
    user-select: none;
  }
  .kontakt-route-ic {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,85,48,0.12);
    border: 1px solid rgba(255,85,48,0.25);
    color: var(--brand-coral);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 26px;
  }
  .kontakt-route-ic svg { width: 26px; height: 26px; }
  .kontakt-route-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--brand-coral);
    margin-bottom: 10px;
  }
  .kontakt-route h3 {
    font-size: 30px; font-weight: 600; line-height: 1.1;
    letter-spacing: -0.6px; color: var(--ink);
    margin-bottom: 14px;
  }
  .kontakt-route p {
    font-size: 14.5px; line-height: 1.6; color: var(--slate);
    margin-bottom: 24px;
  }
  .kontakt-route-mail {
    margin-top: auto;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--hairline-soft);
    border-radius: 12px;
    display: flex; flex-direction: column; gap: 4px;
    transition: background .25s ease, border-color .25s ease;
  }
  .kontakt-route:hover .kontakt-route-mail {
    background: #fff;
    border-color: rgba(255,85,48,0.28);
  }
  .kontakt-route-mail-label {
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--stone);
  }
  .kontakt-route-mail-value {
    font-size: 15px; font-weight: 600; color: var(--ink);
    word-break: break-word;
  }
  .kontakt-route-foot {
    margin-top: 18px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
  }
  .kontakt-route-meta {
    font-size: 12px; font-weight: 500; letter-spacing: 0.4px;
    color: var(--stone);
  }
  .kontakt-route-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--ink); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), background .25s ease;
  }
  .kontakt-route-arrow svg { width: 14px; height: 14px; }
  .kontakt-route:hover .kontakt-route-arrow {
    transform: translateX(4px);
    background: var(--brand-coral);
  }

  .kontakt-route--accent {
    background:
      radial-gradient(circle at 100% 0%, rgba(255,85,48,0.16) 0%, transparent 55%),
      var(--ink);
    color: var(--on-primary);
    border-color: var(--ink);
  }
  .kontakt-route--accent::after { display: none; }
  .kontakt-route--accent .kontakt-route-num {
    -webkit-text-stroke: 1.5px rgba(255,85,48,0.45);
    text-stroke: 1.5px rgba(255,85,48,0.45);
  }
  .kontakt-route--accent .kontakt-route-ic {
    background: rgba(255,85,48,0.18);
    border-color: rgba(255,85,48,0.45);
  }
  .kontakt-route--accent h3 { color: var(--on-primary); }
  .kontakt-route--accent p { color: rgba(255,255,255,0.7); }
  .kontakt-route--accent .kontakt-route-mail {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
  }
  .kontakt-route--accent:hover .kontakt-route-mail {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,85,48,0.45);
  }
  .kontakt-route--accent .kontakt-route-mail-label { color: rgba(255,255,255,0.55); }
  .kontakt-route--accent .kontakt-route-mail-value { color: var(--on-primary); }
  .kontakt-route--accent .kontakt-route-meta { color: rgba(255,255,255,0.6); }
  .kontakt-route--accent .kontakt-route-arrow {
    background: var(--brand-coral);
    color: #fff;
  }
  .kontakt-route--accent:hover {
    border-color: rgba(255,85,48,0.5);
  }

  @media (max-width: 1024px) {
    .kontakt-routes { grid-template-columns: 1fr; gap: 18px; }
    .kontakt-route { min-height: 0; padding: 32px 28px 24px; }
    .kontakt-route h3 { font-size: 26px; }
  }

  /* Kontakt Form */
  .kontakt-form-section {
    background: var(--canvas);
    position: relative;
    overflow: hidden;
  }
  .kontakt-form-section::before {
    content: "";
    position: absolute;
    top: -120px; left: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,85,48,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .kontakt-form-section > .container { position: relative; z-index: 1; }
  .kontakt-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
  }
  .kontakt-form-left .section-eyebrow { color: var(--brand-coral); }
  .kontakt-form-left h2 {
    font-size: 48px; font-weight: 600; line-height: 1.1;
    letter-spacing: -1.6px; color: var(--ink);
    margin-bottom: 18px;
  }
  .kontakt-form-left h2 .accent { color: var(--brand-coral); }
  .kontakt-form-lede {
    font-size: 17px; line-height: 1.65; color: var(--slate);
    max-width: 480px;
    margin-bottom: 36px;
  }
  .kontakt-briefing {
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
  }
  .kontakt-briefing-head {
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--stone);
    margin-bottom: 22px;
  }
  .kontakt-briefing-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 20px;
  }
  .kontakt-briefing-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
  }
  .kontakt-bullet-num {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,85,48,0.10);
    border: 1px solid rgba(255,85,48,0.22);
    color: var(--brand-coral);
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .kontakt-bullet-title {
    font-size: 15px; font-weight: 600; color: var(--ink);
    margin-bottom: 4px;
  }
  .kontakt-bullet-text {
    font-size: 14px; line-height: 1.55; color: var(--slate);
  }

  .kontakt-form-card {
    background: var(--ink);
    color: var(--on-primary);
    border-radius: 24px;
    padding: 32px 36px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px -40px rgba(10,10,10,0.55);
    height: 720px;
    display: flex;
    flex-direction: column;
  }
  .kontakt-form-card.is-step-1 .kontakt-form-nav { display: none; }
  .kontakt-form-card::before {
    content: "";
    position: absolute;
    top: -30%; right: -20%;
    width: 460px; height: 460px;
    background: radial-gradient(circle at center, rgba(255,85,48,0.22), rgba(255,85,48,0) 60%);
    pointer-events: none;
  }
  .kontakt-form-card::after {
    content: "";
    position: absolute;
    bottom: -45%; left: -25%;
    width: 520px; height: 520px;
    background: radial-gradient(circle at center, rgba(255,85,48,0.08), rgba(255,85,48,0) 65%);
    pointer-events: none;
  }

  /* Progress bar */
  .kontakt-form-progress {
    position: relative; z-index: 2;
    padding-bottom: 28px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .kfp-track {
    position: relative;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin: 0 14px 18px;
    overflow: hidden;
  }
  .kfp-fill {
    position: absolute; inset: 0;
    width: 12.5%;
    background: linear-gradient(90deg, var(--brand-coral), #ff8a6b);
    border-radius: 2px;
    box-shadow: 0 0 18px rgba(255,85,48,0.5);
    transition: width 420ms cubic-bezier(.65,.05,.36,1);
  }
  .kfp-steps {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .kfp-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    transition: color .25s ease;
  }
  .kfp-dot {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    display: inline-flex; align-items: center; justify-content: center;
    position: relative;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
  }
  .kfp-num {
    font-size: 12px; font-weight: 600; letter-spacing: 0.2px;
    color: currentColor;
    transition: opacity .2s ease;
  }
  .kfp-check {
    position: absolute; inset: 0;
    display: inline-flex; align-items: center; justify-content: center;
    opacity: 0;
    color: #fff;
    transition: opacity .25s ease;
  }
  .kfp-check svg { width: 14px; height: 14px; }
  .kfp-label {
    font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
    text-transform: uppercase;
    color: inherit;
  }
  .kfp-step.is-active {
    color: #fff;
  }
  .kfp-step.is-active .kfp-dot {
    background: rgba(255,85,48,0.18);
    border-color: var(--brand-coral);
    box-shadow: 0 0 0 4px rgba(255,85,48,0.14);
  }
  .kfp-step.is-done {
    color: rgba(255,255,255,0.7);
  }
  .kfp-step.is-done .kfp-dot {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
  }
  .kfp-step.is-done .kfp-num { opacity: 0; }
  .kfp-step.is-done .kfp-check { opacity: 1; }

  .kontakt-form {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    flex: 1;
    padding-top: 28px;
  }

  /* Step container */
  .kontakt-step {
    border: 0; padding: 0; margin: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    animation: kontaktStepIn .42s cubic-bezier(.2,.7,.2,1) both;
  }
  .kontakt-step.is-active { display: flex; }
  @keyframes kontaktStepIn {
    from { opacity: 0; transform: translateY(14px); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  .kontakt-step-head {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 6px;
  }
  .kontakt-step-counter {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-coral);
  }
  .kontakt-step-title {
    font-size: 28px; font-weight: 600; line-height: 1.15;
    letter-spacing: -0.8px;
    color: #fff;
  }
  .kontakt-step-sub {
    font-size: 14.5px; line-height: 1.55;
    color: rgba(255,255,255,0.55);
    max-width: 460px;
  }

  /* Generic field — re-used across steps */
  .kontakt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .kontakt-field {
    display: flex; flex-direction: column; gap: 8px;
  }
  .kontakt-field-label {
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    display: inline-flex; gap: 6px; align-items: baseline;
  }
  .kontakt-field-opt {
    font-size: 10.5px; font-weight: 500; letter-spacing: 1px;
    color: rgba(255,255,255,0.32); text-transform: none;
  }
  .kontakt-field input,
  .kontakt-field select,
  .kontakt-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--on-primary);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 13px 16px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    line-height: 1.4;
  }
  .kontakt-field textarea { resize: vertical; min-height: 150px; line-height: 1.55; }
  .kontakt-field input::placeholder,
  .kontakt-field textarea::placeholder {
    color: rgba(255,255,255,0.32);
    font-weight: 400;
  }
  .kontakt-field input:hover,
  .kontakt-field select:hover,
  .kontakt-field textarea:hover {
    border-color: rgba(255,255,255,0.22);
  }
  .kontakt-field input:focus,
  .kontakt-field select:focus,
  .kontakt-field textarea:focus {
    outline: none;
    border-color: rgba(255,85,48,0.6);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(255,85,48,0.18);
  }
  .kontakt-field.is-invalid input,
  .kontakt-field.is-invalid textarea {
    border-color: rgba(255,85,48,0.7);
    background: rgba(255,85,48,0.06);
  }

  /* Step 1 — Topic cards */
  .kontakt-topic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 12px;
  }
  .kontakt-topic { position: relative; display: block; cursor: pointer; height: 100%; }
  .kontakt-topic input {
    position: absolute; opacity: 0; pointer-events: none;
    width: 1px; height: 1px;
  }
  .kontakt-topic-card {
    display: grid;
    grid-template-columns: 44px 1fr 22px;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
    height: 100%;
    min-height: 124px;
  }
  .kontakt-topic-card:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
  }
  .kontakt-topic-ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,85,48,0.10);
    border: 1px solid rgba(255,85,48,0.22);
    color: var(--brand-coral);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease, border-color .2s ease;
  }
  .kontakt-topic-ic svg { width: 20px; height: 20px; }
  .kontakt-topic-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
  .kontakt-topic-title {
    font-size: 15px; font-weight: 600; color: #fff;
    letter-spacing: -0.2px;
  }
  .kontakt-topic-sub {
    font-size: 12.5px; line-height: 1.4;
    color: rgba(255,255,255,0.5);
  }
  .kontakt-topic-tick {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex; align-items: center; justify-content: center;
    color: transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  }
  .kontakt-topic-tick svg { width: 12px; height: 12px; }
  .kontakt-topic input:checked + .kontakt-topic-card {
    border-color: var(--brand-coral);
    background: linear-gradient(135deg, rgba(255,85,48,0.12), rgba(255,85,48,0.04));
    box-shadow: 0 0 0 1px var(--brand-coral) inset, 0 18px 40px -28px rgba(255,85,48,0.55);
  }
  .kontakt-topic input:checked + .kontakt-topic-card .kontakt-topic-ic {
    background: var(--brand-coral); border-color: var(--brand-coral); color: #fff;
  }
  .kontakt-topic input:checked + .kontakt-topic-card .kontakt-topic-tick {
    background: var(--brand-coral); border-color: var(--brand-coral); color: #fff;
    transform: scale(1.05);
  }
  .kontakt-topic input:focus-visible + .kontakt-topic-card {
    box-shadow: 0 0 0 3px rgba(255,85,48,0.30);
  }

  /* Step 3 — Pill selectors */
  .kontakt-pill-group {
    display: flex; flex-direction: column; gap: 10px;
  }
  .kontakt-pill-label {
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
  }
  .kontakt-pills {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .kontakt-pill { position: relative; cursor: pointer; }
  .kontakt-pill input {
    position: absolute; opacity: 0; pointer-events: none;
    width: 1px; height: 1px;
  }
  .kontakt-pill span {
    display: inline-flex; align-items: center;
    padding: 9px 16px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
  }
  .kontakt-pill span:hover {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.07);
  }
  .kontakt-pill input:checked + span {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
    color: #fff;
  }
  .kontakt-pill input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(255,85,48,0.30);
  }

  /* Step 4 — Consent */
  .kontakt-consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: border-color .2s ease, background .2s ease;
  }
  .kontakt-consent:hover { border-color: rgba(255,255,255,0.18); }
  .kontakt-consent input {
    position: absolute; opacity: 0; pointer-events: none;
    width: 1px; height: 1px;
  }
  .kontakt-consent-box {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.22);
    display: inline-flex; align-items: center; justify-content: center;
    color: transparent;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .kontakt-consent-box svg { width: 13px; height: 13px; }
  .kontakt-consent input:checked ~ .kontakt-consent-box {
    background: var(--brand-coral);
    border-color: var(--brand-coral);
    color: #fff;
  }
  .kontakt-consent-text {
    font-size: 13px; line-height: 1.5;
    color: rgba(255,255,255,0.65);
  }
  .kontakt-consent-text a { color: rgba(255,255,255,0.85); text-decoration: underline; }
  .kontakt-consent.is-invalid {
    border-color: rgba(255,85,48,0.6);
    background: rgba(255,85,48,0.05);
  }

  /* Success state */
  .kontakt-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 12px 8px;
    animation: kontaktStepIn .5s cubic-bezier(.2,.7,.2,1) both;
  }
  .kontakt-success.is-active { display: flex; }
  .kontakt-success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--brand-coral);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 8px rgba(255,85,48,0.16), 0 18px 40px -16px rgba(255,85,48,0.55);
    margin-bottom: 4px;
    animation: kontaktSuccessPop .55s cubic-bezier(.2,1.4,.5,1) both .1s;
  }
  .kontakt-success-icon svg { width: 32px; height: 32px; }
  @keyframes kontaktSuccessPop {
    from { transform: scale(.4); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  .kontakt-success-title {
    font-size: 28px; font-weight: 600; line-height: 1.15;
    letter-spacing: -0.6px;
    color: #fff;
  }
  .kontakt-success-title .accent { color: var(--brand-coral); }
  .kontakt-success-text {
    font-size: 14.5px; line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 380px;
  }
  .kontakt-success-actions {
    margin-top: 12px;
    display: flex; flex-direction: column; gap: 14px; align-items: center;
  }
  .btn-ghost--card {
    background: transparent; color: #fff;
    padding: 11px 22px;
    font-size: 14px; font-weight: 600;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.25);
    display: inline-flex; align-items: center; gap: 10px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
  }
  .btn-ghost--card:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
  .kontakt-success-link {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.55);
    transition: color .2s ease;
  }
  .kontakt-success-link:hover { color: var(--brand-coral); }

  /* Nav */
  .kontakt-form-nav {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
  }
  .kontakt-form-nav.is-success { display: none; }
  .kontakt-nav-back {
    background: transparent; color: rgba(255,255,255,0.7);
    padding: 10px 14px 10px 12px;
    font-family: inherit;
    font-size: 13.5px; font-weight: 500;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.14);
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
  }
  .kontakt-nav-back:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.04);
  }
  .kontakt-nav-back .arr-back {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px;
    font-size: 14px; line-height: 1;
  }
  .kontakt-form-note {
    font-size: 12.5px; line-height: 1.55;
    color: rgba(255,255,255,0.45);
    text-align: right;
  }
  .kontakt-nav-next,
  .kontakt-nav-submit {
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    border: none;
  }
  .kontakt-nav-next .arr,
  .kontakt-nav-submit .arr {
    font-size: 14px; line-height: 1;
  }
  .kontakt-form-nav button[hidden] { display: none !important; }

  @media (max-width: 1024px) {
    .kontakt-form-wrap { grid-template-columns: 1fr; gap: 48px; }
    .kontakt-form-left h2 { font-size: 40px; letter-spacing: -1.2px; }
  }
  @media (max-width: 720px) {
    .kontakt-topic-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .kontakt-form-left h2 { font-size: 32px; letter-spacing: -0.8px; }
    .kontakt-form-card { padding: 22px 18px 20px; border-radius: 20px; height: 760px; }
    .kontakt-form-row { grid-template-columns: 1fr; gap: 12px; }
    .kontakt-form { gap: 14px; padding-top: 22px; }
    .kontakt-step { gap: 14px; }
    .kontakt-briefing-list li { grid-template-columns: 36px 1fr; gap: 14px; }
    .kontakt-step-head { gap: 6px; }
    .kontakt-step-title { font-size: 22px; letter-spacing: -0.4px; }
    .kontakt-step-sub { font-size: 13.5px; }
    .kontakt-form-progress { padding-bottom: 18px; }
    .kfp-track { margin: 0 6px 14px; }
    .kfp-steps { gap: 4px; }
    .kfp-label { font-size: 9.5px; letter-spacing: 1px; }
    .kfp-dot { width: 26px; height: 26px; }
    .kfp-num { font-size: 11px; }
    .kontakt-topic-card { min-height: 88px; padding: 14px 14px; }
    .kontakt-topic-title { font-size: 14.5px; }
    .kontakt-topic-sub { font-size: 12px; }
    .kontakt-field textarea { min-height: 120px; }
    .kontakt-form-nav {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding-top: 18px;
    }
    .kontakt-form-note {
      grid-column: 1 / -1;
      order: 3;
      text-align: center;
    }
    .kontakt-nav-back { order: 1; width: 100%; justify-content: center; }
    .kontakt-nav-next, .kontakt-nav-submit { order: 2; width: 100%; justify-content: center; }
    .kontakt-form-nav:not(:has(#kontakt-back:not([hidden]))) .kontakt-nav-next,
    .kontakt-form-nav:not(:has(#kontakt-back:not([hidden]))) .kontakt-nav-submit {
      grid-column: 1 / -1;
    }
  }
  @media (max-width: 380px) {
    .kontakt-form-card { height: 740px; padding: 20px 16px 18px; }
    .kontakt-topic-card { min-height: 80px; padding: 12px 12px; }
    .kontakt-topic-ic { width: 38px; height: 38px; }
    .kontakt-topic-card { grid-template-columns: 38px 1fr 20px; gap: 12px; }
  }

  /* Kontakt-Bento — variants on .presse-facts */
  .kontakt-facts-section {
    background: var(--surface);
  }
  .kontakt-facts {
    margin-top: 48px;
  }

  /* Kontakt Socials — kontakt-only adjustments */
  .kontakt-socials {
    background: var(--canvas);
  }

  /* Closing CTA — extends speaker-cta */
  .kontakt-cta { padding: 96px 0; }
  .kontakt-cta + footer { margin-top: 0; }

  /* ========================================================
     FOR-PROFIT HUB
     ======================================================== */

  /* Hero — editorial dark with three coloured glows = three pillars */
  .fp-hero {
    position: relative;
    overflow: hidden;
    background: #02040a;
    color: var(--on-primary);
    padding: 96px 0 56px;
    height: 100vh;
    min-height: 720px;
    max-height: 100vh;
    display: flex;
    align-items: center;
  }
  .fp-hero > .container { position: relative; z-index: 2; width: 100%; }
  .fp-hero-glow {
    position: absolute;
    width: 720px; height: 720px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
  }
  .fp-hero-glow--a {
    top: -25%; left: -10%;
    background: radial-gradient(circle at center, rgba(255,85,48,0.22), rgba(255,85,48,0) 60%);
  }
  .fp-hero-glow--b {
    top: 40%; right: -15%;
    width: 760px; height: 760px;
    background: radial-gradient(circle at center, rgba(20,86,240,0.18), rgba(20,86,240,0) 60%);
  }
  .fp-hero-glow--c {
    bottom: -30%; left: 25%;
    width: 620px; height: 620px;
    background: radial-gradient(circle at center, rgba(168,85,247,0.16), rgba(168,85,247,0) 60%);
  }
  .fp-hero-grid {
    position: absolute; inset: 0;
    z-index: 1;
    background-image:
      linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
  }
  .fp-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
  }
  .fp-hero-inner {
    max-width: 640px;
  }
  .fp-hero h1 {
    font-size: 72px; font-weight: 600; line-height: 1.02; letter-spacing: -2.4px;
    color: var(--on-primary);
  }
  .fp-hero h1 .accent { color: var(--brand-coral); }

  /* Logo constellation (right side of hero) */
  .fp-hero-cluster {
    position: relative;
    width: 100%;
    padding: 8px;
  }
  .fp-cluster-glow {
    position: absolute;
    inset: -20%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,85,48,0.22), transparent 55%),
      radial-gradient(circle at 75% 70%, rgba(20,86,240,0.18), transparent 55%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
  }
  .fp-cluster-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .fp-logo-tile {
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    aspect-ratio: 1 / 1;
    padding: 18px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);
    overflow: hidden;
    color: var(--on-primary);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s ease, background .3s ease;
    animation: fp-tile-float 7s ease-in-out infinite;
    animation-delay: calc(var(--d, 0) * -0.7s);
    will-change: transform;
  }
  .fp-logo-tile::after {
    content: "";
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    top: -80px; right: -80px;
    background: radial-gradient(circle, rgba(255,85,48,0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
  }
  .fp-logo-tile--lift { transform: translateY(14px); }
  .fp-logo-tile--step-1 { transform: translateY(72px); }
  .fp-logo-tile--step-2 { transform: translateY(48px); }
  .fp-logo-tile--step-3 { transform: translateY(24px); }
  .fp-logo-tile--step-4 { transform: translateY(0); }
  .fp-logo-tile:hover {
    border-color: rgba(255,85,48,0.42);
    background: rgba(255,255,255,0.055);
    transform: translateY(-4px);
  }
  .fp-logo-tile--lift:hover { transform: translateY(10px); }
  .fp-logo-tile--step-1:hover { transform: translateY(66px); }
  .fp-logo-tile--step-2:hover { transform: translateY(42px); }
  .fp-logo-tile--step-3:hover { transform: translateY(18px); }
  .fp-logo-tile--step-4:hover { transform: translateY(-6px); }

  .fp-cluster-grid--stairs { grid-template-columns: repeat(4, 1fr); align-items: end; gap: 14px; }
  .np-hero .fp-hero-layout { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .np-cluster-glow {
    background:
      radial-gradient(circle at 25% 70%, rgba(255,85,48,0.20), transparent 55%),
      radial-gradient(circle at 55% 45%, rgba(46,196,144,0.18), transparent 55%),
      radial-gradient(circle at 85% 20%, rgba(20,86,240,0.18), transparent 55%);
  }
  .fp-logo-tag--np-coral { color: rgba(255,140,108,0.85); }
  .fp-logo-tag--np-green { color: rgba(110,220,170,0.9); }
  .fp-logo-tag--np-blue { color: rgba(120,160,255,0.9); }
  .fp-logo-tag--np-purple { color: rgba(196,140,255,0.9); }
  .fp-logo-tile:hover::after { opacity: 1; }
  .fp-logo-tile img {
    width: 78%;
    max-height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    transition: opacity .35s ease;
  }
  .fp-logo-tile:hover img { opacity: 1; }
  .fp-logo-evercrest { filter: brightness(0) invert(1) !important; }
  .fp-logo-tile img.fp-logo-keepcolor { filter: none; opacity: 1; }
  .fp-logo-tag {
    font-size: 9.5px; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1;
  }
  .fp-logo-tag--ai,
  .fp-logo-tag--bf,
  .fp-logo-tag--rt { color: rgba(255,255,255,0.55); }

  @keyframes fp-tile-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .fp-logo-tile { animation: none; }
  }

  @media (max-width: 1100px) {
    .fp-hero-layout { gap: 48px; }
    .fp-logo-tile img { max-height: 36px; }
  }
  @media (max-width: 960px) {
    .fp-hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .np-hero .fp-hero-layout { grid-template-columns: 1fr; }
    .fp-hero-cluster { order: -1; max-width: 560px; margin: 0 auto; padding: 0; }
    .np-hero .fp-hero-cluster { padding-bottom: 30px; }
    .fp-hero-inner { order: 1; }
    .fp-logo-tile--lift { transform: translateY(14px); }
    .fp-logo-tile--lift:hover { transform: translateY(10px); }
    .fp-logo-tile--step-1 { transform: translateY(48px); }
    .fp-logo-tile--step-2 { transform: translateY(32px); }
    .fp-logo-tile--step-3 { transform: translateY(16px); }
    .fp-logo-tile--step-4 { transform: translateY(0); }
    .fp-logo-tile--step-1:hover { transform: translateY(44px); }
    .fp-logo-tile--step-2:hover { transform: translateY(28px); }
    .fp-logo-tile--step-3:hover { transform: translateY(12px); }
    .fp-logo-tile--step-4:hover { transform: translateY(-4px); }
  }
  @media (max-width: 560px) {
    .fp-cluster-grid { gap: 14px; }
    .fp-logo-tile { padding: 14px 10px; border-radius: 14px; }
    .fp-logo-tile img { max-height: 30px; }
    .fp-logo-tag { font-size: 9px; letter-spacing: 0.8px; }
    .fp-logo-tile--lift { transform: translateY(10px); }
    .fp-logo-tile--lift:hover { transform: translateY(6px); }
    .fp-cluster-grid--stairs { gap: 10px; }
    .fp-logo-tile--step-1 { transform: translateY(30px); }
    .fp-logo-tile--step-2 { transform: translateY(20px); }
    .fp-logo-tile--step-3 { transform: translateY(10px); }
    .fp-logo-tile--step-4 { transform: translateY(0); }
    .fp-logo-tile--step-1:hover { transform: translateY(26px); }
    .fp-logo-tile--step-2:hover { transform: translateY(16px); }
    .fp-logo-tile--step-3:hover { transform: translateY(6px); }
    .fp-logo-tile--step-4:hover { transform: translateY(-4px); }
  }

  .fp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .fp-hero-stat {
    display: flex; flex-direction: column; gap: 8px;
  }
  .fp-hero-stat .num {
    font-size: 44px; font-weight: 600; line-height: 1; letter-spacing: -1.4px;
    color: var(--on-primary);
  }
  .fp-hero-stat .num .plus { color: var(--brand-coral); }
  .fp-hero-stat .lbl {
    font-size: 12px; font-weight: 600; letter-spacing: 0.6px;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
  }

  @media (max-width: 1100px) {
    .fp-hero h1 { font-size: 64px; letter-spacing: -2px; }
  }
  @media (max-width: 900px) {
    .fp-hero { padding: 120px 0 64px; height: auto; max-height: none; min-height: 0; }
    .fp-hero h1 { font-size: 46px; letter-spacing: -1.4px; }
    .fp-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
    .fp-hero-stat .num { font-size: 34px; }
  }
  @media (max-width: 520px) {
    .fp-hero h1 { font-size: 38px; letter-spacing: -1.2px; }
    .fp-hero-stats { grid-template-columns: 1fr 1fr; }
  }

  /* Pillars section */
  .fp-pillars {
    background:
      radial-gradient(circle at 8% 6%, rgba(255,85,48,0.05), transparent 45%),
      radial-gradient(circle at 92% 92%, rgba(20,86,240,0.05), transparent 50%),
      linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
    position: relative;
    overflow: hidden;
  }
  .fp-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .fp-pillar {
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    padding: 32px 30px 28px;
    min-height: 460px;
    color: var(--ink);
    transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 18px 50px -34px rgba(10,10,10,0.22);
  }
  .fp-pillar::after {
    content: "";
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    top: -120px; right: -120px;
    pointer-events: none;
    opacity: 0.55;
    transition: opacity .4s ease;
    z-index: 0;
  }
  .fp-pillar > * { position: relative; z-index: 1; }
  .fp-pillar--ai::after {
    background: radial-gradient(circle, rgba(255,85,48,0.18) 0%, transparent 70%);
  }
  .fp-pillar--bf::after {
    background: radial-gradient(circle, rgba(20,86,240,0.18) 0%, transparent 70%);
  }
  .fp-pillar--rt::after {
    background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, transparent 70%);
  }
  .fp-pillar:hover {
    transform: translateY(-5px);
    border-color: rgba(255,85,48,0.32);
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -32px rgba(10,10,10,0.24);
  }
  .fp-pillar:hover::after { opacity: 1; }
  .fp-pillar-link.is-disabled {
    color: var(--ink-soft, #999);
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  .fp-pillar-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
  }
  .fp-pillar-num {
    font-size: 32px; font-weight: 700; letter-spacing: -1px;
    color: rgba(10,10,10,0.12);
    font-feature-settings: "tnum";
  }
  .fp-pillar-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    color: var(--brand-coral);
    background: rgba(255,85,48,0.08);
    border: 1px solid rgba(255,85,48,0.22);
  }
  .fp-pillar-icon svg { width: 24px; height: 24px; }
  .fp-pillar--bf .fp-pillar-icon {
    color: var(--brand-blue);
    background: rgba(20,86,240,0.08);
    border-color: rgba(20,86,240,0.22);
  }
  .fp-pillar--rt .fp-pillar-icon {
    color: var(--brand-purple);
    background: rgba(168,85,247,0.08);
    border-color: rgba(168,85,247,0.22);
  }
  .fp-pillar-tag {
    display: inline-flex; align-items: center;
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--brand-coral);
    padding: 6px 12px;
    background: rgba(255,85,48,0.08);
    border: 1px solid rgba(255,85,48,0.22);
    border-radius: 9999px;
  }
  .fp-pillar--bf .fp-pillar-tag {
    color: var(--brand-blue);
    background: rgba(20,86,240,0.08);
    border-color: rgba(20,86,240,0.22);
  }
  .fp-pillar--rt .fp-pillar-tag {
    color: var(--brand-purple);
    background: rgba(168,85,247,0.08);
    border-color: rgba(168,85,247,0.22);
  }

  .fp-pillar h3 {
    font-size: 36px; font-weight: 600; line-height: 1.05; letter-spacing: -1.2px;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .fp-pillar > p {
    font-size: 15px; line-height: 1.55; color: var(--slate);
    margin-bottom: 22px;
  }
  .fp-pillar-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 18px 0 0;
    border-top: 1px solid var(--hairline);
    display: flex; flex-direction: column; gap: 10px;
  }
  .fp-pillar-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 500; color: var(--charcoal);
    line-height: 1.4;
  }
  .fp-pillar-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-coral);
    flex: 0 0 6px;
  }
  .fp-pillar--bf .fp-pillar-dot { background: var(--brand-blue); }
  .fp-pillar--rt .fp-pillar-dot { background: var(--brand-purple); }

  .fp-pillar-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--hairline);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
  }
  .fp-pillar-stat {
    display: flex; align-items: baseline; gap: 8px;
  }
  .fp-pillar-stat .n {
    font-size: 22px; font-weight: 700; letter-spacing: -0.6px;
    color: var(--ink);
  }
  .fp-pillar-stat .l {
    font-size: 12px; font-weight: 500; color: var(--slate);
    letter-spacing: 0.2px;
  }
  .fp-pillar-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    transition: gap .25s ease, color .25s ease;
  }
  .fp-pillar-link .arr {
    transition: transform .25s ease;
  }
  .fp-pillar:hover .fp-pillar-link { color: var(--brand-coral); gap: 12px; }
  .fp-pillar:hover .fp-pillar-link .arr { transform: translateX(2px); }
  .fp-pillar--bf:hover .fp-pillar-link { color: var(--brand-blue); }
  .fp-pillar--rt:hover .fp-pillar-link { color: var(--brand-purple); }

  @media (max-width: 1024px) {
    .fp-pillar-grid { grid-template-columns: 1fr; gap: 16px; }
    .fp-pillar { min-height: auto; padding: 28px 26px 24px; }
    .fp-pillar h3 { font-size: 32px; }
  }

  .fp-pillars-note {
    margin-top: 32px;
  }
  .fp-pillars-note-inner {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-left: 3px solid var(--brand-coral);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .fp-pillars-note-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
    text-transform: uppercase; color: var(--brand-coral);
  }
  .fp-pillars-note-inner p {
    font-size: 15px; line-height: 1.55; color: var(--charcoal);
    margin: 0;
  }
  .fp-pillars-note-inner strong { color: var(--ink); font-weight: 600; }

  .fp-extra {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--hairline);
  }
  .fp-extra-head {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 24px;
    max-width: 720px;
  }
  .fp-extra-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
    text-transform: uppercase; color: var(--brand-coral);
  }
  .fp-extra-lead {
    font-size: 16px; line-height: 1.55; color: var(--charcoal);
    margin: 0;
  }
  .fp-extra-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .fp-extra-card {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 22px 24px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .fp-extra-card:hover {
    border-color: rgba(10,10,10,0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(10,10,10,0.18);
  }
  .fp-extra-icon {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    color: var(--ink);
    background: rgba(10,10,10,0.04);
    border: 1px solid var(--hairline);
  }
  .fp-extra-icon svg { width: 22px; height: 22px; }
  .fp-extra-body { display: flex; flex-direction: column; gap: 6px; }
  .fp-extra-tag {
    align-self: flex-start;
    font-size: 10px; font-weight: 600; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--charcoal);
    padding: 4px 10px;
    background: rgba(10,10,10,0.04);
    border: 1px solid var(--hairline);
    border-radius: 9999px;
  }
  .fp-extra-body h4 {
    font-size: 17px; font-weight: 600; line-height: 1.3;
    margin: 2px 0 0; color: var(--ink);
  }
  .fp-extra-body p {
    font-size: 14px; line-height: 1.55; color: var(--charcoal);
    margin: 0;
  }
  @media (max-width: 760px) {
    .fp-extra-grid { grid-template-columns: 1fr; }
  }

  /* Portfolio section reuses .showcase-section; nothing else needed */


  /* =====================================================
     Non-Profit Hub — /non-profit/
     Extends fp-hero / fp-pillars with a green variant for
     World Animal Welfare Alliance and a soft accent for the
     Start-up Institute Wien.
     ===================================================== */

  /* Local accent token: emerald — fits the existing palette
     of vivid coral / magenta / blue / purple / cyan. */
  .np-hero,
  .np-pillars,
  .np-kpis { --brand-green: #10b981; }

  /* Hero: replace the purple bottom glow with an emerald one,
     so the three glows mirror the three pillars (coral · green · blue). */
  .np-hero-glow--green {
    bottom: -30%; left: 25%;
    width: 620px; height: 620px;
    background: radial-gradient(circle at center, rgba(16,185,129,0.18), rgba(16,185,129,0) 60%);
  }
  .np-hero .fp-hero-glow--b {
    top: 38%; right: -12%;
  }

  /* Tag-row variants in the dark hero */
  .np-hero .tag.np-tag--green .ti {
    background: rgba(16,185,129,0.14);
    color: var(--brand-green);
    border-color: rgba(16,185,129,0.32);
  }
  .np-hero .tag.np-tag--blue .ti {
    background: rgba(20,86,240,0.14);
    color: var(--brand-blue);
    border-color: rgba(20,86,240,0.32);
  }

  /* Pillars background — coral · green · blue glows */
  .np-pillars {
    background:
      radial-gradient(circle at 6% 8%, rgba(255,85,48,0.06), transparent 45%),
      radial-gradient(circle at 50% 100%, rgba(16,185,129,0.06), transparent 50%),
      radial-gradient(circle at 94% 6%, rgba(20,86,240,0.05), transparent 50%),
      linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
  }

  /* New pillar variant: green (World Animal Welfare Alliance) */
  .fp-pillar--green::after {
    background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
  }
  .fp-pillar--green .fp-pillar-tag {
    color: var(--brand-green);
    background: rgba(16,185,129,0.08);
    border-color: rgba(16,185,129,0.24);
  }
  .fp-pillar--green .fp-pillar-dot { background: var(--brand-green); }
  .fp-pillar--green:hover {
    border-color: rgba(16,185,129,0.34);
  }
  .fp-pillar--green:hover .fp-pillar-link { color: var(--brand-green); }

  /* Note block accent on /non-profit/ — keep coral as the editorial spine */
  .np-pillars-note .fp-pillars-note-inner {
    border-left-color: var(--brand-green);
  }
  .np-pillars-note .fp-pillars-note-eyebrow {
    color: var(--brand-green);
  }

  /* Impact KPIs — swap the radial background to coral + emerald so it
     reads as the non-profit page, not the main page. */
  .np-kpis::before {
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,85,48,0.13), transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(16,185,129,0.13), transparent 60%);
  }

  /* Hero tag-row — purple variant for the Holocaust Education foundation */
  .np-hero .tag.np-tag--purple .ti {
    background: rgba(168,85,247,0.14);
    color: var(--brand-purple);
    border-color: rgba(168,85,247,0.32);
  }

  /* Pillar card logo — bold brand-colored plate with white-silhouette logo */
  .fp-pillar-logo {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    height: 140px;
    margin-bottom: 28px;
    padding: 22px 26px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    transition: border-color .3s ease, transform .35s ease, box-shadow .35s ease;
  }
  .fp-pillar-logo::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 18% 12%, rgba(255,255,255,0.28), transparent 55%),
      radial-gradient(circle at 82% 95%, rgba(0,0,0,0.18), transparent 55%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
  }
  .fp-pillar-logo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
  }
  .fp-pillar-logo img {
    position: relative;
    z-index: 1;
    max-height: 76px; max-width: 78%;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
    /* normalize any logo to a pure-white silhouette so the colored plate
       reads as a unified, branded overlay across all three NGOs */
    filter: brightness(0) invert(1);
    transition: transform .35s ease;
  }
  .fp-pillar:hover .fp-pillar-logo img { transform: scale(1.04); }

  .fp-pillar--ai .fp-pillar-logo {
    background:
      radial-gradient(circle at 20% 15%, #ff7a5c 0%, transparent 60%),
      radial-gradient(circle at 80% 95%, #e63a1a 0%, transparent 65%),
      linear-gradient(135deg, var(--brand-coral) 0%, #ff7a5c 100%);
    border-color: rgba(255,85,48,0.45);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      0 16px 36px -22px rgba(255,85,48,0.55);
  }
  .fp-pillar--green .fp-pillar-logo {
    background:
      radial-gradient(circle at 20% 15%, #34d399 0%, transparent 60%),
      radial-gradient(circle at 80% 95%, #0e8c64 0%, transparent 65%),
      linear-gradient(135deg, var(--brand-green) 0%, #34d399 100%);
    border-color: rgba(16,185,129,0.45);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      0 16px 36px -22px rgba(16,185,129,0.55);
  }
  .fp-pillar--rt .fp-pillar-logo {
    background:
      radial-gradient(circle at 20% 15%, #c084fc 0%, transparent 60%),
      radial-gradient(circle at 80% 95%, #7c3aed 0%, transparent 65%),
      linear-gradient(135deg, var(--brand-purple) 0%, #c084fc 100%);
    border-color: rgba(168,85,247,0.45);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      0 16px 36px -22px rgba(168,85,247,0.55);
  }
  .fp-pillar--bf .fp-pillar-logo {
    background:
      radial-gradient(circle at 20% 15%, #5a8bff 0%, transparent 60%),
      radial-gradient(circle at 80% 95%, #0b3fb8 0%, transparent 65%),
      linear-gradient(135deg, var(--brand-blue) 0%, #5a8bff 100%);
    border-color: rgba(20,86,240,0.45);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      0 16px 36px -22px rgba(20,86,240,0.55);
  }
  .fp-pillar:hover .fp-pillar-logo {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.4),
      0 22px 44px -22px rgba(10,10,10,0.32);
  }

  @media (max-width: 1024px) {
    .fp-pillar-logo { height: 118px; padding: 18px 22px; margin-bottom: 22px; }
    .fp-pillar-logo img { max-height: 64px; }
  }

  /* =====================================================
     Start-up Institute — dedicated section on /non-profit/
     Single wide card, blue accent (mentoring · Wien).
     ===================================================== */
  .np-institute {
    --brand-blue-r: 20; --brand-blue-g: 86; --brand-blue-b: 240;
    background:
      radial-gradient(circle at 10% 15%, rgba(20,86,240,0.06), transparent 50%),
      radial-gradient(circle at 92% 90%, rgba(168,85,247,0.04), transparent 55%),
      linear-gradient(180deg, var(--surface) 0%, var(--canvas) 100%);
    position: relative;
    overflow: hidden;
  }

  .np-institute-card {
    margin-top: 8px;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 0;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
      0 1px 2px rgba(10,10,10,0.04),
      0 28px 60px -34px rgba(10,10,10,0.22);
  }

  .np-institute-card-media {
    background:
      radial-gradient(circle at 30% 20%, rgba(20,86,240,0.12), transparent 60%),
      linear-gradient(155deg, rgba(20,86,240,0.10) 0%, rgba(168,85,247,0.06) 100%);
    border-right: 1px solid var(--hairline);
    padding: 36px 32px;
    display: flex; flex-direction: column;
    gap: 24px;
    justify-content: space-between;
  }
  .np-institute-logo {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    height: 140px;
    padding: 22px 26px;
    background:
      radial-gradient(circle at 20% 15%, #5a8bff 0%, transparent 60%),
      radial-gradient(circle at 80% 95%, #0b3fb8 0%, transparent 65%),
      linear-gradient(135deg, var(--brand-blue) 0%, #5a8bff 100%);
    border: 1px solid rgba(20,86,240,0.45);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      0 16px 36px -22px rgba(20,86,240,0.55);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .np-institute-logo::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 18% 12%, rgba(255,255,255,0.28), transparent 55%),
      radial-gradient(circle at 82% 95%, rgba(0,0,0,0.18), transparent 55%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
  }
  .np-institute-logo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
  }
  .np-institute-logo img {
    position: relative;
    z-index: 1;
    max-height: 76px; max-width: 78%;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform .35s ease;
  }
  .np-institute-card:hover .np-institute-logo {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.4),
      0 22px 44px -22px rgba(10,10,10,0.32);
  }
  .np-institute-card:hover .np-institute-logo img { transform: scale(1.04); }
  .np-institute-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .np-institute-chip {
    display: inline-flex; align-items: center;
    font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--brand-blue);
    padding: 6px 12px;
    background: rgba(20,86,240,0.08);
    border: 1px solid rgba(20,86,240,0.22);
    border-radius: 9999px;
  }
  .np-institute-chip--soft {
    color: var(--slate);
    background: var(--canvas);
    border-color: var(--hairline);
    letter-spacing: 0.6px;
    text-transform: none;
    font-weight: 500;
  }

  .np-institute-card-body {
    padding: 40px 40px 36px;
    display: flex; flex-direction: column;
  }
  .np-institute-card-body h3 {
    font-size: 38px; font-weight: 600; line-height: 1.05; letter-spacing: -1.3px;
    color: var(--ink);
    margin: 0 0 16px;
  }
  .np-institute-card-body > p {
    font-size: 16px; line-height: 1.55; color: var(--slate);
    margin: 0 0 24px;
  }
  .np-institute-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 20px 0 0;
    border-top: 1px solid var(--hairline);
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
  }
  .np-institute-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 500; color: var(--charcoal);
    line-height: 1.4;
  }
  .np-institute-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-blue);
    flex: 0 0 6px;
  }

  .np-institute-stats {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 24px;
  }
  .np-institute-stat .num {
    font-size: 32px; font-weight: 700; letter-spacing: -1px;
    color: var(--ink);
    font-feature-settings: "tnum";
    line-height: 1;
  }
  .np-institute-stat .num .plus {
    color: var(--brand-blue); font-weight: 600;
  }
  .np-institute-stat .lbl {
    margin-top: 6px;
    font-size: 12px; font-weight: 500; color: var(--slate);
    letter-spacing: 0.2px;
  }

  .np-institute-foot {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  }
  .np-institute-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 14px; font-weight: 600;
    padding: 12px 20px;
    border-radius: 9999px;
    transition: background .25s ease, transform .25s ease;
  }
  .np-institute-cta:hover {
    background: var(--brand-blue-deep);
    transform: translateY(-1px);
  }
  .np-institute-arr {
    font-size: 16px; line-height: 1;
    transition: transform .25s ease;
  }
  .np-institute-cta:hover .np-institute-arr {
    transform: translate(2px, -2px);
  }
  .np-institute-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    transition: gap .25s ease, color .25s ease;
  }
  .np-institute-link .arr { transition: transform .25s ease; }
  .np-institute-link:hover { color: var(--brand-blue); gap: 12px; }
  .np-institute-link:hover .arr { transform: translateX(2px); }

  @media (max-width: 1024px) {
    .np-institute-card { grid-template-columns: 1fr; }
    .np-institute-card-media {
      border-right: none;
      border-bottom: 1px solid var(--hairline);
      padding: 28px 28px;
    }
    .np-institute-card-body { padding: 28px 28px 28px; }
    .np-institute-card-body h3 { font-size: 30px; }
    .np-institute-list { grid-template-columns: 1fr; gap: 10px; }
    .np-institute-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .np-institute-stat .num { font-size: 26px; }
  }
  @media (max-width: 560px) {
    .np-institute-stats { grid-template-columns: 1fr; gap: 12px; }
    .np-institute-foot { gap: 12px; }
    .np-institute-cta { width: 100%; justify-content: center; }
  }

