:root {
  --bg: #000000;
  --bg-soft: #050505;
  --panel: #0a0a0a;
  --panel-2: #111111;
  --text: #ffffff;
  --muted: #d4d4d4;
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.28);
  --shadow: 0 16px 42px rgba(0,0,0,0.36);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #000000 0%, #050505 45%, #000000 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.01) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-mini {
  height: 34px;
  width: auto;
  display: block;
}
.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.03em;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.75);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: #000000;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.btn-emphasis {
  font-weight: 800 !important;
}
.btn-ghost {
  background: transparent;
  color: #ffffff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.badge, .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
}
.eyebrow {
  margin-bottom: 12px;
  color: #ffffff;
}
h1 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
p { color: var(--muted); }
.lead {
  margin-top: 22px;
  font-size: 20px;
  max-width: 840px;
}
.lead.small { font-size: 18px; max-width: 720px; }
.hero { padding: 92px 0 108px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-actions, .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.top-grid { margin-top: 34px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.stakeholder-grid .card { height: 100%; }
.stack { display: grid; gap: 16px; margin-top: 28px; }
.card {
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(3,3,3,0.99) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.accent-card {
  padding: 28px;
}
.card strong { color: #ffffff; }
.kpi {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}
.kpi-number {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.kpi-label { color: var(--muted); font-size: 15px; }
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: 9px;
  flex: 0 0 9px;
}
.logo-hero-box,
.logo-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #000000;
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.logo-hero {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.hero-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.proof-box {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  color: var(--muted);
}
.cta-box {
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(0,0,0,1) 100%);
  box-shadow: var(--shadow);
}
.contact-grid { align-items: center; }
.contact-card p { margin: 10px 0; }
.btn-stack { margin-top: 18px; }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  font-size: 14px;
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a:hover,
.nav-links a:hover { color: #ffffff; }

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .stakeholder-grid,
  .grid-2,
  .grid-3,
  .hero-kpis,
  .hero-support { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding: 68px 0 84px; }
  .nav { min-height: 76px; }
  .brand-sub { letter-spacing: 0.1em; }
}

.page-hero.hero { padding: 80px 0 84px; }
.hero-copy h1 { max-width: 760px; }
.card ul, .card ol { margin: 12px 0 0 20px; color: var(--muted); }
ul.clean-list, ol.clean-list { margin: 0; padding-left: 20px; color: var(--muted); }
ul.clean-list li, ol.clean-list li { margin: 10px 0; }
.contact-card p { margin: 10px 0; }
.btn-stack { margin-top: 18px; }


/* ===== Header / Navigation Update ===== */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.site-header {
  padding: 12px 0 14px;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mini {
  width: 84px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.brand-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.brand-sub {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.header-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle-lines {
  width: 22px;
  height: 16px;
  position: relative;
}
.menu-toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.menu-toggle-lines span:nth-child(1) { top: 0; }
.menu-toggle-lines span:nth-child(2) { top: 7px; }
.menu-toggle-lines span:nth-child(3) { top: 14px; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}
.desktop-nav a.active,
.desktop-nav a:hover {
  color: #fff;
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 360px);
  background: #000;
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 80;
  padding: 24px 20px 32px;
  box-shadow: var(--shadow);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 70;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.drawer-title {
  font-size: 18px;
  font-weight: 800;
}
.drawer-close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.drawer-nav {
  display: grid;
  gap: 8px;
}
.drawer-link {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
}
.drawer-link.active,
.drawer-link:hover {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}
.drawer-footer {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
body.menu-open { overflow: hidden; }

@media (min-width: 1100px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px 0;
  }
  .header-main {
    flex: 0 0 auto;
  }
  .header-actions {
    margin-top: 10px;
  }
  .desktop-nav {
    display: flex;
  }
  .menu-toggle,
  .mobile-drawer,
  .drawer-backdrop {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .logo-mini { width: 70px; }
  .brand-title { font-size: 20px; }
  .brand-sub { font-size: 10px; letter-spacing: 0.1em; }
  .header-actions .btn {
    flex: 1 1 auto;
    min-height: 48px;
    font-size: 15px;
    padding: 0 14px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }
}


/* ===== Header layout final ===== */
.site-header {
  padding: 12px 0 14px;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}
.logo-mini {
  width: 84px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.brand-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.brand-sub {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.header-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .btn {
  min-height: 52px;
}
.menu-toggle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.desktop-nav {
  display: none;
}
.hero-photo {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 46vw, 580px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 46vw, 580px);
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.34) 60%, rgba(0,0,0,0.58) 100%);
}
.hero-photo-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 28px;
}
.hero-photo-card {
  max-width: 760px;
  background: rgba(0,0,0,0.64);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.hero-photo-card h1 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}
.hero-photo-card p {
  margin: 16px 0 0;
  font-size: 18px;
  color: rgba(255,255,255,0.86);
  max-width: 640px;
}
.hero-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 1100px) {
  .header-shell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
  }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
  }
  .desktop-nav a.active,
  .desktop-nav a:hover {
    color: #fff;
  }
}
@media (max-width: 700px) {
  .logo-mini {
    width: 66px;
  }
  .brand-title {
    font-size: 19px;
  }
  .brand-sub {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }
  .header-actions {
    gap: 10px;
  }
  .header-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
  }
  .hero-photo-content {
    padding-bottom: 16px;
  }
  .hero-photo-card {
    border-radius: 20px;
    padding: 16px 16px 14px;
  }
  .hero-photo-card p {
    font-size: 16px;
  }
}


/* Umsetzung & Betrieb image section */
.topic-image-band {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.topic-image-wrap {
  width: 100%;
}
.topic-image-wrap img {
  width: 100%;
  display: block;
  height: auto;
}


/* start page header cleanup */
header{
  background:#000 !important;
}
.site-header,
.header-shell,
.header-main,
.header-top,
.header-actions{
  background:#000 !important;
}
.brand-wrap{
  gap:0 !important;
}
.brand-block{
  display:none !important;
}
.logo-mini{
  width:340px !important;
  max-width:calc(100vw - 110px);
  height:auto;
  display:block;
}
.header-top{
  align-items:center !important;
}
.hero-photo{
  margin-top:0 !important;
  background:#000 !important;
  border-top:0 !important;
}
.hero-photo img{
  vertical-align:top;
}
@media (max-width:700px){
  .logo-mini{
    width:220px !important;
    max-width:calc(100vw - 86px);
  }
}


/* Header banner logo insertion */
.header-shell{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
}
.header-main{
  flex:0 0 auto;
}
.header-desktop-left{
  display:none;
}
.desktop-brand-logo{
  display:block;
  width:240px;
  height:auto;
}
@media (min-width: 1100px){
  .header-main{
    display:none;
  }
  .header-desktop-left{
    display:block;
    flex:0 0 auto;
    margin-top:2px;
  }
  .desktop-nav{
    display:flex;
    align-items:center;
    gap:22px;
    color: var(--muted);
    font-size:15px;
    margin-top:12px;
  }
}


/* ===== FINAL HEADER CLEANUP ===== */
header,
.site-header,
.header-shell,
.header-main,
.header-top,
.header-actions,
.header-desktop-left,
.desktop-nav {
  background: #000 !important;
}

.site-header {
  padding: 14px 0 16px !important;
}

.header-shell {
  display: block !important;
}

.header-desktop-left {
  display: none !important;
}

.desktop-brand-logo {
  display: block;
  width: 250px;
  height: auto;
}

.header-main {
  display: block !important;
}

.header-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.brand-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

.brand-block {
  display: none !important;
}

.logo-mini {
  width: 250px !important;
  max-width: calc(100vw - 110px) !important;
  height: auto !important;
  display: block !important;
}

.header-actions {
  margin-top: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.header-actions .btn {
  min-height: 52px !important;
}

.desktop-nav {
  display: none !important;
}

.menu-toggle {
  display: inline-flex !important;
}

/* Desktop: exactly one clean header */
@media (min-width: 1100px) {
  .site-header {
    padding: 16px 0 18px !important;
  }

  .header-shell {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    column-gap: 34px !important;
    row-gap: 14px !important;
  }

  .header-main {
    display: contents !important;
  }

  .header-top {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    justify-content: flex-start !important;
  }

  .brand-wrap {
    flex: 0 0 auto !important;
  }

  .logo-mini {
    width: 290px !important;
    max-width: none !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .header-actions {
    grid-column: 1 / 2 !important;
    grid-row: 2 / 3 !important;
    margin-top: 0 !important;
    justify-content: flex-start !important;
  }

  .desktop-nav {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 3 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
    margin-top: 10px !important;
    color: var(--muted) !important;
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .desktop-nav a.active,
  .desktop-nav a:hover {
    color: #fff !important;
  }

  .header-desktop-left,
  .desktop-brand-logo {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .logo-mini {
    width: 210px !important;
    max-width: calc(100vw - 86px) !important;
  }

  .menu-toggle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }

  .header-actions {
    gap: 10px !important;
  }

  .header-actions .btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 15px !important;
  }
}



/* ===== HERO FEINSCHLIFF ===== */
.hero-photo {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 46vw, 620px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 46vw, 620px);
  object-fit: cover;
  display: block;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.58) 38%,
    rgba(0,0,0,0.28) 68%,
    rgba(0,0,0,0.10) 100%
  );
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.22) 55%,
    rgba(0,0,0,0.48) 100%
  );
}
.hero-photo-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 34px 0;
}
.hero-photo-card {
  max-width: 620px;
  background: rgba(0,0,0,0.46);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 28px 28px 26px;
  box-shadow: var(--shadow);
}
.hero-photo-card h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 540px;
}
.hero-photo-card p {
  margin: 14px 0 0;
  font-size: 21px;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
}
.hero-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-photo-actions .btn {
  min-height: 58px;
  padding: 0 24px;
}
.hero-photo-actions .btn-ghost {
  background: rgba(255,255,255,0.02);
}
@media (max-width: 900px) {
  .hero-photo {
    min-height: 560px;
  }
  .hero-photo img {
    min-height: 560px;
  }
  .hero-photo-content {
    align-items: flex-end;
    padding: 20px 0 24px;
  }
  .hero-photo-card {
    max-width: none;
    width: 100%;
    border-radius: 24px;
    padding: 22px 20px 20px;
    background: rgba(0,0,0,0.58);
  }
  .hero-photo-card h1 {
    font-size: clamp(36px, 12vw, 58px);
    margin-top: 10px;
  }
  .hero-photo-card p {
    font-size: 18px;
    margin-top: 12px;
    max-width: none;
  }
  .hero-photo-actions {
    margin-top: 20px;
    gap: 10px;
  }
  .hero-photo-actions .btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }
}


/* ===== SINGLE START HERO IMAGE ===== */
.start-hero-image {
  width: 100%;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.start-hero-image img {
  width: 100%;
  display: block;
  height: auto;
}
.hero-photo,
.hero-photo-content,
.hero-photo-card {
  display: none !important;
}


/* ===== REMOVE OVERLAY HEROES / KEEP SIMPLE IMAGE BANDS ===== */
.hero-photo,
.hero-photo-content,
.hero-photo-card {
  display: none !important;
}

.start-hero-image,
.topic-image-band {
  width: 100%;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.start-hero-image img,
.topic-image-wrap img {
  width: 100%;
  display: block;
  height: auto;
}


/* ===== VISUAL UPGRADE: BLACK + SILVER/GREY ===== */
:root {
  --bg: #000000;
  --bg-soft: #050505;
  --panel: #0b0b0b;
  --text: #e4e4e4;
  --muted: #b3b3b3;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --shadow: 0 16px 42px rgba(0,0,0,0.38);
}
html, body { background: #000 !important; color: var(--text) !important; }
body, p, li, .kpi-label, .brand-sub, footer, .lead, .lead.small { color: var(--muted) !important; }
h1, h2, h3, strong, .brand-title, .drawer-title { color: var(--text) !important; }
header, .site-header, .header-shell, .header-main, .header-top, .header-actions, .desktop-nav,
.mobile-drawer, .drawer-head, .drawer-nav, .drawer-footer, footer, .start-hero-image,
.topic-image-band, .card, .cta-box, .kpi { background-color: #000 !important; }
.card, .cta-box, .kpi, .logo-hero-box, .logo-panel, .menu-toggle, .drawer-close,
.btn-ghost, .drawer-link.active, .drawer-link:hover { border-color: var(--line-strong) !important; }
.btn { border-color: var(--line-strong) !important; }
.btn-solid { background: linear-gradient(145deg, #d8d8d8, #a8a8a8) !important; color: #050505 !important; box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
.btn-ghost { background: rgba(255,255,255,0.03) !important; color: var(--text) !important; }
.btn-ghost:hover, .menu-toggle:hover, .drawer-close:hover { background: rgba(255,255,255,0.06) !important; }
.badge, .eyebrow { color: #c9c9c9 !important; }
.badge { background: rgba(255,255,255,0.03) !important; border-color: var(--line-strong) !important; }
.desktop-nav a, .footer-links a, .drawer-link { color: #c3c3c3 !important; }
.desktop-nav a.active, .desktop-nav a:hover, .footer-links a:hover, .drawer-link.active, .drawer-link:hover { color: #efefef !important; }
.menu-toggle-lines span { background: #d9d9d9 !important; }
.start-hero-image, .topic-image-band, .section-soft { background: #000 !important; }
.section-soft { border-top: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
.card { background: linear-gradient(180deg, rgba(12,12,12,0.98), rgba(5,5,5,0.99)) !important; }
.kpi { background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012)) !important; }
a { color: inherit; }


/* ===== STARTPAGE HERO LAYOUT UPDATE ===== */
.home-intro-full {
  padding-top: 26px;
}
.home-intro-full .hero-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
.home-intro-full .hero-copy {
  max-width: none !important;
}
.home-intro-full .hero-copy h1,
.home-intro-full .hero-copy .lead {
  max-width: none !important;
}
.home-intro-full .hero-visual {
  display: none !important;
}
.home-intro-full .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 700px) {
  .home-intro-full .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ===== THEME TOGGLE + IPHONE HEADER FIX ===== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}

.theme-toggle-icon {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
}

.theme-toggle-desktop {
  display: none;
}

.theme-toggle-mobile {
  display: inline-flex;
}

@media (max-width: 1099px) {
  .header-top {
    gap: 10px !important;
  }

  .brand-wrap {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .logo-mini {
    max-width: calc(100vw - 160px) !important;
  }
}

@media (max-width: 700px) {
  .logo-mini {
    max-width: calc(100vw - 150px) !important;
  }

  .theme-toggle,
  .menu-toggle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 14px !important;
  }
}

@media (min-width: 1100px) {
  .theme-toggle-mobile {
    display: none !important;
  }

  .theme-toggle-desktop {
    display: inline-flex !important;
    margin-left: 6px;
  }

  .desktop-nav {
    align-items: center !important;
  }
}

html[data-theme="light"] {
  --bg: #f4f4f5;
  --bg-soft: #ececef;
  --panel: #ffffff;
  --text: #111111;
  --muted: #4b5563;
  --line: rgba(17,17,17,0.10);
  --line-strong: rgba(17,17,17,0.18);
  --shadow: 0 14px 34px rgba(17,17,17,0.08);
}

html[data-theme="light"],
html[data-theme="light"] body {
  background: #f4f4f5 !important;
  color: var(--text) !important;
}

html[data-theme="light"] body,
html[data-theme="light"] p,
html[data-theme="light"] li,
html[data-theme="light"] .kpi-label,
html[data-theme="light"] .brand-sub,
html[data-theme="light"] footer,
html[data-theme="light"] .lead,
html[data-theme="light"] .lead.small {
  color: var(--muted) !important;
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] strong,
html[data-theme="light"] .brand-title,
html[data-theme="light"] .drawer-title,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .drawer-close {
  color: var(--text) !important;
}

html[data-theme="light"] header,
html[data-theme="light"] .site-header,
html[data-theme="light"] .header-shell,
html[data-theme="light"] .header-main,
html[data-theme="light"] .header-top,
html[data-theme="light"] .header-actions,
html[data-theme="light"] .desktop-nav,
html[data-theme="light"] .mobile-drawer,
html[data-theme="light"] .drawer-head,
html[data-theme="light"] .drawer-nav,
html[data-theme="light"] .drawer-footer,
html[data-theme="light"] footer,
html[data-theme="light"] .start-hero-image,
html[data-theme="light"] .topic-image-band,
html[data-theme="light"] .section-soft,
html[data-theme="light"] .card,
html[data-theme="light"] .cta-box,
html[data-theme="light"] .kpi {
  background-color: #ffffff !important;
}

html[data-theme="light"] .section-soft {
  background: linear-gradient(180deg, rgba(17,17,17,0.02) 0%, rgba(17,17,17,0.01) 100%) !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
}

html[data-theme="light"] .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,245,245,0.99)) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow) !important;
}

html[data-theme="light"] .cta-box,
html[data-theme="light"] .kpi,
html[data-theme="light"] .logo-hero-box,
html[data-theme="light"] .logo-panel,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .drawer-close,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .drawer-link.active,
html[data-theme="light"] .drawer-link:hover {
  border-color: var(--line-strong) !important;
}

html[data-theme="light"] .kpi {
  background: linear-gradient(180deg, rgba(17,17,17,0.02), rgba(17,17,17,0.01)) !important;
}

html[data-theme="light"] .btn {
  border-color: rgba(17,17,17,0.22) !important;
}

html[data-theme="light"] .btn:not(.btn-ghost) {
  background: linear-gradient(145deg, #171717, #333333) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .btn-ghost {
  background: rgba(17,17,17,0.02) !important;
  color: var(--text) !important;
}

html[data-theme="light"] .btn-ghost:hover,
html[data-theme="light"] .menu-toggle:hover,
html[data-theme="light"] .drawer-close:hover,
html[data-theme="light"] .theme-toggle:hover {
  background: rgba(17,17,17,0.06) !important;
}

html[data-theme="light"] .badge,
html[data-theme="light"] .eyebrow {
  color: #4b5563 !important;
}

html[data-theme="light"] .badge {
  background: rgba(17,17,17,0.03) !important;
  border-color: var(--line-strong) !important;
}

html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .drawer-link {
  color: #374151 !important;
}

html[data-theme="light"] .desktop-nav a.active,
html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .drawer-link.active,
html[data-theme="light"] .drawer-link:hover {
  color: #111111 !important;
}

html[data-theme="light"] .menu-toggle-lines span {
  background: #111111 !important;
}

.image-slider {
  margin: 26px auto 10px;
  max-width: 1100px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}
.slider {
  position: relative;
  aspect-ratio: 16 / 9;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active {
  opacity: 1;
  position: relative;
}

@media (max-width: 700px) {
  .image-slider {
    margin: 18px 12px 4px;
    border-radius: 18px;
  }

  .slider {
    aspect-ratio: 4 / 3;
  }
}


/* Kampagnen-Landingpage Werbepartner */
.badge-warm {
  background: linear-gradient(135deg, rgba(210,146,77,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(210,146,77,0.35);
}
.btn-warm {
  background: linear-gradient(145deg, #d8d8d8 0%, #a8a8a8 100%);
  color: #050505;
  border-color: var(--line-strong);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.btn-warm:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.campaign-hero {
  padding-top: 72px;
  padding-bottom: 72px;
}
.campaign-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.campaign-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
}
.campaign-trust {
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}
.campaign-visual {
  position: relative;
  min-height: clamp(460px, 54vw, 720px);
  height: clamp(460px, 54vw, 720px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.1);
  isolation: isolate;
}
.campaign-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.campaign-visual::before,
.campaign-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.campaign-visual::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.66) 34%, rgba(0,0,0,0.28) 68%, rgba(0,0,0,0.08) 100%);
}
.campaign-visual::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.54) 100%);
}
.campaign-visual-light::before {
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.68) 36%, rgba(0,0,0,0.26) 72%, rgba(0,0,0,0.04) 100%);
}
.campaign-overlay {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  max-width: 520px;
}
.campaign-overlay-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.campaign-overlay-title {
  margin-top: 18px;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0,0,0,0.42);
}
.campaign-overlay-copy {
  margin: 14px 0 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 6px 22px rgba(0,0,0,0.34);
}
.campaign-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.46);
  padding-bottom: 4px;
}
.campaign-overlay-link:hover {
  border-bottom-color: rgba(255,255,255,0.82);
}
.card-warm {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(213,154,85,0.04));
}
.card-contrast {
  background: linear-gradient(180deg, rgba(213,154,85,0.14), rgba(255,255,255,0.02));
  border: 1px solid rgba(213,154,85,0.28);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.journey-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.quiz-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.hidden { display: none; }
.quiz-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.quiz-counter { color: rgba(255,255,255,0.72); font-size: 15px; }
.quiz-progress {
  width: 210px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.quiz-progress span {
  display: block;
  height: 100%;
  width: 14%;
  background: linear-gradient(135deg, #d59a55 0%, #f0c07a 100%);
}
.partner-quiz h3,
.partner-form h3,
.quiz-success h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
}
.quiz-hint,
.form-intro p,
.quiz-success p { color: rgba(255,255,255,0.78); }
.quiz-options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.quiz-option {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.quiz-option:hover {
  border-color: rgba(213,154,85,0.45);
  background: rgba(255,255,255,0.05);
}
.quiz-option.active {
  background: linear-gradient(135deg, rgba(213,154,85,0.22), rgba(213,154,85,0.08));
  border-color: rgba(240,192,122,0.7);
}
.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.partner-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.partner-form label { display: block; }
.partner-form label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.partner-form input,
.partner-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}
.partner-form input:focus,
.partner-form textarea:focus {
  outline: none;
  border-color: rgba(240,192,122,0.8);
  box-shadow: 0 0 0 3px rgba(213,154,85,0.14);
}
.form-full { grid-column: 1 / -1; }
.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}
.check-row input { width: auto; margin-top: 5px; }
.success-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #d59a55 0%, #f0c07a 100%);
  color: #1a130f;
  font-size: 32px;
  font-weight: 700;
}
.center-actions { justify-content: center; }

@media (max-width: 980px) {
  .campaign-hero-grid,
  .campaign-split,
  .partner-form .form-grid {
    grid-template-columns: 1fr;
  }
  .campaign-visual { min-height: 420px; height: 420px; }
}

@media (max-width: 720px) {
  .quiz-shell { padding: 24px; }
  .quiz-head,
  .quiz-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .quiz-progress { width: 100%; }
  .journey-grid { grid-template-columns: 1fr; }
  .campaign-overlay { left: 20px; right: 20px; bottom: 20px; max-width: none; }
  .campaign-overlay-kicker { min-height: 36px; padding: 0 14px; font-size: 13px; }
  .campaign-overlay-title { margin-top: 14px; font-size: clamp(28px, 8.5vw, 40px); }
  .campaign-overlay-copy { margin-top: 10px; font-size: 16px; max-width: 320px; }
  .campaign-overlay-link { margin-top: 18px; }
}


.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(162, 28, 28, 0.08);
  border: 1px solid rgba(162, 28, 28, 0.18);
  color: #8b1e1e;
  font-size: 0.96rem;
  line-height: 1.5;
}

/* ===== PREMIUM CINEMATIC SLIDER ===== */
.cinematic-slider {
  position: relative;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  min-height: clamp(360px, 52vw, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
  isolation: isolate;
}

.cinematic-slider-track {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.cinematic-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.cinematic-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.cinematic-slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 52vw, 760px);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.cinematic-slide.is-active img {
  animation: cinematicZoom 3.6s ease forwards;
}

@keyframes cinematicZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.10); }
}

.cinematic-slider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.52) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.14) 40%, rgba(0,0,0,0.10) 100%);
  z-index: 1;
  pointer-events: none;
}

.cinematic-slider-ui {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding-bottom: 24px;
}

.cinematic-slider-panel {
  max-width: 780px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.cinematic-slider-panel p {
  margin: 14px 0 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88) !important;
  max-width: 680px;
}

.cinematic-slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.cinematic-slider-panel--controls-only {
  max-width: max-content;
  padding: 14px 18px;
}

.cinematic-slider-panel--controls-only .cinematic-slider-controls {
  margin-top: 0;
}

.cinematic-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cinematic-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.16);
  padding: 0;
  cursor: pointer;
}

.cinematic-dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.05);
}

.cinematic-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.cinematic-arrow:hover,
.cinematic-dot:hover {
  background: rgba(255,255,255,0.22);
}

html[data-theme="light"] .cinematic-slider-panel {
  background: rgba(255,255,255,0.68);
  border-color: rgba(17,17,17,0.12);
}

html[data-theme="light"] .cinematic-slider-panel p {
  color: rgba(17,17,17,0.80) !important;
}

html[data-theme="light"] .cinematic-arrow {
  color: #111;
  background: rgba(255,255,255,0.66);
  border-color: rgba(17,17,17,0.14);
}

html[data-theme="light"] .cinematic-dot {
  border-color: rgba(17,17,17,0.28);
  background: rgba(17,17,17,0.14);
}

html[data-theme="light"] .cinematic-dot.is-active {
  background: #111;
  border-color: #111;
}

@media (max-width: 900px) {
  .cinematic-slider {
    min-height: 420px;
  }

  .cinematic-slide img {
    min-height: 420px;
  }

  .cinematic-slider-ui {
    padding-bottom: 18px;
  }

  .cinematic-slider-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .cinematic-slider-panel p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .cinematic-slider {
    min-height: 380px;
  }

  .cinematic-slide img {
    min-height: 380px;
  }

  .cinematic-slider-controls {
    gap: 10px;
  }

  .cinematic-slider-panel {
    padding: 16px;
  }

  .cinematic-slider-panel--controls-only {
    padding: 12px 14px;
  }

  .cinematic-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-slide,
  .cinematic-slide img {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== GLOBAL SECTION SPACING TIGHTENING ===== */
.section {
  padding: 58px 0 !important;
}

.hero {
  padding: 58px 0 64px !important;
}

.page-hero.hero {
  padding: 52px 0 56px !important;
}

.home-intro-full {
  padding-top: 18px !important;
}

@media (max-width: 860px) {
  .section {
    padding: 42px 0 !important;
  }

  .hero {
    padding: 44px 0 50px !important;
  }

  .page-hero.hero {
    padding: 38px 0 42px !important;
  }

  .home-intro-full {
    padding-top: 12px !important;
  }
}


/* ===== KONTAKTSEITE MIT PORTRAET ===== */
.contact-layout {
  align-items: stretch !important;
}

.contact-card-primary,
.profile-card {
  height: 100%;
}

.contact-note {
  margin-top: 18px;
}

.contact-portrait-frame {
  margin: 14px 0 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #111;
  box-shadow: var(--shadow);
}

.contact-portrait {
  width: 100%;
  display: block;
  height: auto;
}

.contact-intro {
  margin-top: 0;
  margin-bottom: 22px;
}

.contact-topic-list {
  gap: 14px;
}

html[data-theme="light"] .contact-portrait-frame {
  background: #f3f4f6;
  border-color: var(--line);
}

@media (max-width: 1040px) {
  .profile-card {
    order: -1;
  }
}


/* ===== KONTAKTSEITE UEBER-MICH-BLOCK ===== */
.about-contact-layout {
  align-items: center;
}

.about-portrait-card,
.about-contact-card {
  height: 100%;
}

.about-portrait-card {
  padding: 18px;
}

.about-portrait-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #111;
  box-shadow: var(--shadow);
}

.about-portrait {
  width: 100%;
  display: block;
  height: auto;
}

.about-contact-card h2 {
  margin-top: 4px;
  margin-bottom: 20px;
}

.about-contact-card p + p {
  margin-top: 16px;
}

html[data-theme="light"] .about-portrait-frame {
  background: #f3f4f6;
  border-color: var(--line);
}

@media (max-width: 1040px) {
  .about-contact-layout {
    grid-template-columns: 1fr !important;
  }

  .about-portrait-card {
    order: -1;
  }
}


.about-contact-card-single {
  max-width: 980px;
  margin: 0 auto;
}


/* ===== V3 STARTPAGE UPGRADE ===== */
.example-grid,
.insight-grid {
  align-items: stretch;
}

.grid-4.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1040px) {
  .grid-4.sector-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .grid-4.sector-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE CTA / CONTENT WIDTH FIX ===== */
@media (max-width: 700px) {
  .cta-box {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  .cta-box .split-grid {
    gap: 20px !important;
  }

  .cta-box .card,
  .section .card,
  .section-soft .card {
    padding: 22px !important;
  }

  .cta-box h2,
  .section h2,
  .section-soft h2 {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .cta-box .lead.small,
  .section .lead.small,
  .section-soft .lead.small {
    font-size: 17px !important;
    line-height: 1.55 !important;
  }
}


/* ===== USE CASES ===== */
.use-case-hero-band {
  border-bottom: 1px solid var(--line);
}
.use-case-hero-wrap img {
  width: 100%;
  display: block;
  height: auto;
}
.usecase-intro {
  padding-top: 54px;
}
.usecase-overview .card {
  align-self: stretch;
}
.usecase-toc {
  display: grid;
  gap: 14px;
}
.usecase-sections {
  display: grid;
  gap: 22px;
}
.usecase-section-card h2 {
  margin-bottom: 16px;
}
.usecase-home-image-card {
  padding: 0;
  overflow: hidden;
}
.usecase-home-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .usecase-intro {
    padding-top: 34px;
  }
  .usecase-home-image {
    min-height: 220px;
  }
}


/* ===== Use Cases ===== */
.usecase-cta-section {
  padding-top: 22px;
  padding-bottom: 34px;
}
.usecase-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cta-headline {
  text-align: center;
  margin: 0 auto;
  opacity: 0.82;
  max-width: 760px;
}
@media (max-width: 700px) {
  .usecase-cta .btn {
    width: 100%;
    justify-content: center;
  }
}



/* ===== Use Cases Hub ===== */
.usecase-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.usecase-hub-card {
  padding: 0;
  overflow: hidden;
}
.usecase-hub-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.usecase-hub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.usecase-hub-content {
  padding: 24px;
}
.usecase-hub-content p {
  margin-top: 12px;
}
.stack.compact {
  gap: 12px;
  margin-top: 20px;
}
.compact-card .usecase-hub-content {
  padding: 22px;
}
.usecase-hub-hero .lead,
.usecase-hub-hero h1 {
  max-width: 900px;
}
.usecase-overview {
  align-items: stretch;
}
.usecase-section-card {
  margin-bottom: 20px;
}
.usecase-toc {
  display: grid;
  gap: 10px;
}
.start-usecase-grid .usecase-hub-media {
  aspect-ratio: 16 / 10;
}
@media (max-width: 980px) {
  .usecase-hub-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}

.lang-toggle-desktop {
  display: none;
}

.lang-toggle-mobile {
  display: inline-flex;
}

@media (max-width: 1099px) {
  .logo-mini {
    max-width: calc(100vw - 220px) !important;
  }
}

@media (max-width: 700px) {
  .logo-mini {
    max-width: calc(100vw - 210px) !important;
  }

  .lang-toggle,
  .theme-toggle,
  .menu-toggle {
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 14px !important;
  }

  .lang-toggle {
    padding: 0 12px !important;
    font-size: 12px !important;
  }
}

@media (min-width: 1100px) {
  .lang-toggle-mobile {
    display: none !important;
  }

  .lang-toggle-desktop {
    display: inline-flex !important;
  }
}

html[data-theme="light"] .lang-toggle {
  background: rgba(17,17,17,0.02) !important;
  color: var(--text) !important;
  border-color: var(--line-strong) !important;
}

html[data-theme="light"] .lang-toggle:hover {
  background: rgba(17,17,17,0.06) !important;
}

/* ===== IPHONE HORIZONTAL SCROLL FIX ===== */
html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip !important;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden !important;
  }
}

body,
main,
section,
header,
footer,
.container,
.header-shell,
.header-main,
.header-top,
.brand-wrap,
.hero-actions,
.inline-actions,
.grid-2,
.grid-3,
.grid-4,
.split-grid,
.card,
.cta-box,
.cinematic-slider,
.cinematic-slider-track,
.cinematic-slider-ui,
.cinematic-slider-panel,
.quiz-shell,
.partner-form,
.form-grid,
.usecase-hub-grid {
  max-width: 100% !important;
}

img,
video,
svg,
canvas,
iframe {
  max-width: 100% !important;
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }

  .hero-actions,
  .inline-actions,
  .footer-row,
  .footer-links,
  .cinematic-slider-controls,
  .quiz-actions,
  .check-row {
    min-width: 0 !important;
  }

  .btn,
  .btn-ghost,
  .btn-solid,
  .btn-warm,
  .quiz-option,
  .partner-form input,
  .partner-form textarea {
    max-width: 100% !important;
  }

  .cinematic-slider-ui.container {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
  }

  .cinematic-slider-panel--controls-only {
    max-width: 100% !important;
  }
}

/* ===== FINAL IPHONE SIDE-SCROLL LOCK =====
   Prevents single oversized mobile elements from creating horizontal drag on iOS. */
html,
body {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0 !important;
}

*,
*::before,
*::after {
  min-width: 0;
}

main,
section,
article,
header,
footer,
.container,
.site-header,
.header-shell,
.header-main,
.header-top,
.header-actions,
.brand-wrap,
.desktop-nav,
.drawer-nav,
.drawer-footer,
.hero,
.page-hero,
.section,
.section-soft,
.card,
.cta-box,
.kpi,
.grid-2,
.grid-3,
.grid-4,
.split-grid,
.hero-grid,
.campaign-hero-grid,
.journey-grid,
.usecase-hub-grid,
.image-slider,
.slider,
.cinematic-slider,
.cinematic-slider-track,
.cinematic-slider-ui,
.cinematic-slider-panel,
.quiz-shell,
.partner-form,
.partner-form .form-grid,
.start-hero-image,
.topic-image-band,
.use-case-hero-band,
.usecase-hero-wrap {
  max-width: 100% !important;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100% !important;
  height: auto;
}

p,
li,
h1,
h2,
h3,
a,
span,
div {
  overflow-wrap: anywhere;
}

/* Fixed/off-canvas elements must not enlarge the layout width on iPhone. */
.mobile-drawer,
.drawer-backdrop {
  max-width: 100vw !important;
}

@media (max-width: 1099px) {
  .desktop-nav {
    display: none !important;
  }

  .header-top {
    width: 100% !important;
  }

  .brand-wrap {
    overflow: hidden !important;
  }

  .logo-mini {
    width: auto !important;
    max-width: calc(100vw - 220px) !important;
  }

  .hero-actions,
  .inline-actions,
  .header-actions,
  .footer-row,
  .footer-links,
  .cinematic-slider-controls,
  .quiz-actions,
  .usecase-cta {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .btn,
  .btn-ghost,
  .btn-solid,
  .btn-warm,
  .quiz-option,
  .partner-form input,
  .partner-form textarea,
  .lang-toggle,
  .theme-toggle,
  .menu-toggle {
    max-width: 100% !important;
    flex-shrink: 1 !important;
  }

  .header-actions .btn,
  .hero-actions .btn,
  .inline-actions .btn,
  .usecase-cta .btn,
  .quiz-actions .btn {
    white-space: normal !important;
    text-align: center !important;
  }

  .logo-mini {
    max-width: calc(100vw - 224px) !important;
  }

  .image-slider {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cinematic-slider-ui.container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    left: auto !important;
    right: auto !important;
  }
}
/* ===== MOBILE OVERFLOW SAFETY WITHOUT BLOCKING SLIDERS ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.image-slider,
.cinematic-slider {
  overflow: hidden;
}

.image-slider .slider,
.cinematic-slider {
  touch-action: pan-y;
}


/* ===== STARTSEITE: CINEMATIC STILL HERO ===== */
.start-hero-image {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #000 !important;
  border-bottom: 1px solid var(--line) !important;
  animation: umgStillHeroReveal 900ms ease-out both;
}

.start-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.00) 42%, rgba(0,0,0,0.28) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.04) 46%, rgba(0,0,0,0.12) 100%);
}

.start-hero-image img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  display: block !important;
  height: auto !important;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  filter: contrast(1.035) saturate(1.025);
  animation: umgStillHeroZoom 18s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes umgStillHeroReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes umgStillHeroZoom {
  from {
    transform: scale(1.000);
  }
  to {
    transform: scale(1.035);
  }
}

@media (max-width: 700px) {
  .start-hero-image::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.00) 42%, rgba(0,0,0,0.22) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.00) 52%, rgba(0,0,0,0.08) 100%);
  }

  .start-hero-image img {
    animation-duration: 16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-hero-image,
  .start-hero-image img {
    animation: none !important;
  }

  .start-hero-image img {
    transform: none !important;
  }
}


/* ===== USE CASE HUB: 3-CARD LAYOUT ===== */
.usecase-hub-content h2 {
  font-size: clamp(26px, 2.3vw, 34px) !important;
  line-height: 1.08 !important;
}

@media (max-width: 1180px) {
  .usecase-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .usecase-hub-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== FINAL QA PATCH: SLIDER + MOBILE STABILITY ===== */
.btn,
.lang-toggle,
.theme-toggle,
.menu-toggle,
.cinematic-arrow,
.cinematic-dot {
  flex-shrink: 0;
}

.cinematic-slider,
.image-slider {
  max-width: 100vw !important;
  contain: layout paint;
}

.cinematic-slider-controls {
  flex-wrap: nowrap !important;
  max-width: 100% !important;
}

.cinematic-dots {
  min-width: 0 !important;
  max-width: 100% !important;
}

body.menu-open {
  touch-action: none;
}

@media (max-width: 420px) {
  .cinematic-slider-panel--controls-only {
    padding: 10px 12px !important;
  }

  .cinematic-slider-controls {
    gap: 8px !important;
  }

  .cinematic-arrow {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .cinematic-dot {
    width: 9px !important;
    height: 9px !important;
  }
}


/* ===== Back to top button ===== */
.back-to-top-section {
  padding: 0 0 42px;
  background: transparent;
}

.back-to-top-section .container {
  display: flex;
  justify-content: center;
}

.back-to-top-btn {
  min-height: 52px;
  padding-inline: 22px;
}

.back-to-top-btn span {
  display: inline-block;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .back-to-top-section {
    padding: 0 0 34px;
  }

  .back-to-top-btn {
    width: 100%;
  }
}


/* ===== Network partner cards ===== */
.partner-network-section .lead.small {
  max-width: 920px;
}

.partner-network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.partner-network-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-network-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.partner-initial {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.06);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.partner-role {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.partner-list {
  margin-top: 0 !important;
}

.partner-network-compact-section .card p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .partner-network-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .partner-network-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .partner-initial {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 20px;
  }
}

/* ===== Partner logos ===== */
.partner-logo-link {
  width: 76px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.92);
  padding: 8px;
  overflow: hidden;
}

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

.partner-logo-display-concepts {
  transform: scale(1.16);
}

.partner-url {
  margin-top: auto;
  font-size: 14px;
}

.partner-url a {
  font-weight: 700;
}

@media (max-width: 520px) {
  .partner-network-head {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .partner-logo-link {
    width: 64px;
    height: 48px;
    border-radius: 16px;
    padding: 7px;
  }
}

/* ===== STARTPAGE INSIGHT PANEL REFINEMENT ===== */
.insight-panel {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px 22px 72px;
  background: linear-gradient(180deg, rgba(12,12,12,0.98), rgba(4,4,4,0.99));
  box-shadow: var(--shadow);
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255,255,255,0.22);
}

.insight-number {
  position: absolute;
  left: 24px;
  top: 23px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.44);
  font-weight: 800;
}

.insight-card h3 {
  margin-bottom: 8px;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
}

.insight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 0;
}

.insight-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
  font-size: 14px;
}

html[data-theme="light"] .insight-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,244,242,0.99));
}

html[data-theme="light"] .insight-card::before {
  background: rgba(0,0,0,0.16);
}

html[data-theme="light"] .insight-number {
  color: rgba(0,0,0,0.38);
}

html[data-theme="light"] .insight-chips span {
  background: rgba(0,0,0,0.035);
}

@media (max-width: 700px) {
  .insight-card {
    padding: 20px 20px 20px 62px;
  }

  .insight-number {
    left: 20px;
    top: 22px;
  }
}

/* ===== STARTPAGE HERO VISUAL REPLACEMENT ===== */
.insight-visual {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #050505;
  box-shadow: var(--shadow);
}

.insight-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.18)),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.08), transparent 42%);
}

.insight-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

html[data-theme="light"] .insight-visual {
  background: #f4f4f2;
}

@media (max-width: 980px) {
  .insight-visual,
  .insight-visual img {
    min-height: 620px;
  }
}

@media (max-width: 700px) {
  .insight-visual {
    min-height: 520px;
    border-radius: 24px;
  }

  .insight-visual img {
    min-height: 520px;
  }
}

@media (max-width: 420px) {
  .insight-visual,
  .insight-visual img {
    min-height: 460px;
  }
}

/* ===== MOBILE SLIDER IMAGE-FIT TEST =====
   On phones the foreground image is shown completely. A blurred, darkened
   duplicate of the same image fills the background so the slider still feels
   cinematic instead of showing hard empty bars. */
@media (max-width: 700px) {
  .cinematic-slide,
  .image-slider .slider {
    background: #050505;
  }

  .cinematic-slide::before,
  .image-slider .slider::before {
    content: "";
    position: absolute;
    inset: -22px;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
  }

  .cinematic-slide::after,
  .image-slider .slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.46));
    z-index: 1;
    pointer-events: none;
  }

  .cinematic-slide img,
  .image-slider .slide {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  .cinematic-slide img {
    min-height: 0 !important;
  }

  .cinematic-slide.is-active img {
    animation: none !important;
  }

  .cinematic-slider-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.12) 48%, rgba(0,0,0,0.50) 100%) !important;
  }
}

/* Correction for the simple image sliders: only the visible slide may be relative. */
@media (max-width: 700px) {
  .image-slider .slide {
    position: absolute !important;
  }

  .image-slider .slide.active {
    position: relative !important;
  }
}

/* ===== GLOBAL KEN BURNS TEST FOR ALL SLIDERS =====
   Desktop: subtle cinematic movement on the visible image.
   Mobile: foreground stays fully visible; only the soft background moves. */
@keyframes umgKenBurnsDesktop {
  0% { transform: scale(1.025) translate3d(0, 0, 0); }
  100% { transform: scale(1.085) translate3d(-1.6%, -1.2%, 0); }
}

@keyframes umgKenBurnsMobileBg {
  0% { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.15) translate3d(-1.4%, -1%, 0); }
}

.cinematic-slide.is-active img,
.image-slider .slide.active {
  animation: umgKenBurnsDesktop 11s ease-in-out forwards !important;
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 700px) {
  .cinematic-slide.is-active::before,
  .image-slider .slider::before {
    animation: umgKenBurnsMobileBg 12s ease-in-out forwards !important;
    transform-origin: center center;
    will-change: transform;
  }

  .cinematic-slide.is-active img,
  .image-slider .slide.active {
    animation: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-slide.is-active img,
  .image-slider .slide.active,
  .cinematic-slide.is-active::before,
  .image-slider .slider::before {
    animation: none !important;
    transform: none !important;
  }
}

/* ===== PREMIUM LIGHT REDESIGN V2 =====
   Warmer editorial light look with strong black/gold contrast.
   Keeps the brand cinematic, avoids flat white surfaces, and fixes dark-box text contrast. */
html[data-theme="light"] {
  --bg: #efe7dc;
  --bg-soft: #e6dacb;
  --panel: #fbf7ef;
  --panel-2: #fffaf2;
  --text: #141414;
  --muted: #3f3a34;
  --gold: #b78945;
  --gold-soft: #e2c28e;
  --line: rgba(41, 31, 20, 0.13);
  --line-strong: rgba(41, 31, 20, 0.24);
  --shadow: 0 22px 55px rgba(70, 48, 22, 0.14);
}

html[data-theme="light"],
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 0%, rgba(183,137,69,0.18) 0%, rgba(183,137,69,0.00) 32%),
    linear-gradient(180deg, #f4eadc 0%, #efe7dc 42%, #e6dacb 100%) !important;
  color: var(--text) !important;
}

/* Header and footer stay premium black in light mode. */
html[data-theme="light"] header,
html[data-theme="light"] .site-header,
html[data-theme="light"] .header-shell,
html[data-theme="light"] .header-main,
html[data-theme="light"] .header-top,
html[data-theme="light"] .header-actions,
html[data-theme="light"] .desktop-nav,
html[data-theme="light"] footer {
  background: #0b0b0a !important;
  color: #fff !important;
  border-color: rgba(226,194,142,0.16) !important;
}

html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] footer,
html[data-theme="light"] .footer-links a {
  color: rgba(255,255,255,0.72) !important;
}

html[data-theme="light"] .desktop-nav a.active,
html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .footer-links a:hover {
  color: #fff !important;
}

html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .lang-toggle {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(226,194,142,0.30) !important;
  color: #fff !important;
}

html[data-theme="light"] .menu-toggle-lines span {
  background: #fff !important;
}

html[data-theme="light"] .mobile-drawer,
html[data-theme="light"] .drawer-head,
html[data-theme="light"] .drawer-nav,
html[data-theme="light"] .drawer-footer {
  background: #0b0b0a !important;
  color: #fff !important;
}

html[data-theme="light"] .drawer-title,
html[data-theme="light"] .drawer-close,
html[data-theme="light"] .drawer-link {
  color: #fff !important;
}

/* Hero / image bands: avoid white blocks around visuals. */
html[data-theme="light"] .start-hero-image,
html[data-theme="light"] .topic-image-band,
html[data-theme="light"] .use-case-hero-band {
  background: #0b0b0a !important;
  border-color: rgba(226,194,142,0.18) !important;
}

html[data-theme="light"] .start-hero-image::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.00) 42%, rgba(0,0,0,0.18) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.02) 46%, rgba(0,0,0,0.08) 100%) !important;
}

/* Sections: editorial alternation instead of plain white. */
html[data-theme="light"] .section {
  background: transparent !important;
}

html[data-theme="light"] .section-soft {
  background:
    radial-gradient(circle at 84% 8%, rgba(183,137,69,0.12), transparent 34%),
    linear-gradient(180deg, #e9dfd0 0%, #f2eadf 100%) !important;
  border-top: 1px solid rgba(41,31,20,0.12) !important;
  border-bottom: 1px solid rgba(41,31,20,0.12) !important;
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] strong {
  color: #11100e !important;
}

html[data-theme="light"] p,
html[data-theme="light"] li,
html[data-theme="light"] .lead,
html[data-theme="light"] .lead.small,
html[data-theme="light"] .kpi-label {
  color: #413a31 !important;
}

html[data-theme="light"] .eyebrow {
  color: #a57933 !important;
  letter-spacing: 0.16em;
}

html[data-theme="light"] .badge,
html[data-theme="light"] .badge-warm {
  color: #7a5522 !important;
  background: linear-gradient(135deg, rgba(183,137,69,0.18), rgba(255,255,255,0.52)) !important;
  border-color: rgba(183,137,69,0.34) !important;
}

/* Light cards: cream paper surface with depth. */
html[data-theme="light"] .card,
html[data-theme="light"] .kpi,
html[data-theme="light"] .quiz-shell,
html[data-theme="light"] .journey-step,
html[data-theme="light"] .insight-card {
  background:
    linear-gradient(180deg, rgba(255,250,242,0.98) 0%, rgba(244,235,222,0.98) 100%) !important;
  border-color: rgba(41,31,20,0.14) !important;
  box-shadow: 0 20px 46px rgba(70,48,22,0.13) !important;
}

html[data-theme="light"] .card:hover,
html[data-theme="light"] .usecase-hub-card:hover {
  border-color: rgba(183,137,69,0.34) !important;
  box-shadow: 0 26px 62px rgba(70,48,22,0.18) !important;
}

/* Important dark panels stay dark, but with readable text. */
html[data-theme="light"] .cta-box,
html[data-theme="light"] .card-contrast,
html[data-theme="light"] .insight-card.card-contrast {
  background:
    radial-gradient(circle at 20% 0%, rgba(183,137,69,0.22), rgba(183,137,69,0.00) 36%),
    linear-gradient(145deg, #171613 0%, #050505 100%) !important;
  border-color: rgba(255,255,255,0.16) !important;
  box-shadow: 0 28px 72px rgba(20,16,10,0.26) !important;
}

html[data-theme="light"] .cta-box,
html[data-theme="light"] .cta-box *,
html[data-theme="light"] .card-contrast,
html[data-theme="light"] .card-contrast *,
html[data-theme="light"] .insight-card.card-contrast,
html[data-theme="light"] .insight-card.card-contrast * {
  color: rgba(255,255,255,0.92) !important;
}

html[data-theme="light"] .cta-box p,
html[data-theme="light"] .cta-box li,
html[data-theme="light"] .cta-box .lead,
html[data-theme="light"] .cta-box .lead.small,
html[data-theme="light"] .card-contrast p,
html[data-theme="light"] .card-contrast li {
  color: rgba(255,255,255,0.74) !important;
}

html[data-theme="light"] .cta-box .eyebrow,
html[data-theme="light"] .card-contrast .eyebrow {
  color: #e2c28e !important;
}

/* Fix any dark custom cards/panels that were unreadable in the light theme. */
html[data-theme="light"] .card[style*="background:#000"],
html[data-theme="light"] .card[style*="background: #000"],
html[data-theme="light"] .card[style*="background:linear-gradient"],
html[data-theme="light"] .card[style*="background: linear-gradient"] {
  color: #fff !important;
}

html[data-theme="light"] .card[style*="background:#000"] *,
html[data-theme="light"] .card[style*="background: #000"] *,
html[data-theme="light"] .card[style*="background:linear-gradient"] *,
html[data-theme="light"] .card[style*="background: linear-gradient"] * {
  color: rgba(255,255,255,0.90) !important;
}

/* Buttons: black/gold instead of generic gray. */
html[data-theme="light"] .btn:not(.btn-ghost) {
  background: linear-gradient(145deg, #17130d 0%, #050505 100%) !important;
  color: #fff !important;
  border-color: rgba(183,137,69,0.35) !important;
  box-shadow: 0 12px 30px rgba(32,22,10,0.20) !important;
}

html[data-theme="light"] .btn:not(.btn-ghost):hover {
  background: linear-gradient(145deg, #2a2115 0%, #0b0b0a 100%) !important;
}

html[data-theme="light"] .btn-ghost {
  background: rgba(255,250,242,0.62) !important;
  color: #141414 !important;
  border-color: rgba(41,31,20,0.24) !important;
}

html[data-theme="light"] .cta-box .btn-ghost,
html[data-theme="light"] .card-contrast .btn-ghost {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border-color: rgba(226,194,142,0.34) !important;
}

/* Slider control panels in light mode: readable and less washed out. */
html[data-theme="light"] .cinematic-slider-panel {
  background: rgba(12,12,10,0.66) !important;
  border-color: rgba(226,194,142,0.22) !important;
  color: #fff !important;
}

html[data-theme="light"] .cinematic-slider-panel *,
html[data-theme="light"] .cinematic-slider-panel p {
  color: rgba(255,255,255,0.90) !important;
}

html[data-theme="light"] .cinematic-arrow {
  color: #fff !important;
  background: rgba(0,0,0,0.44) !important;
  border-color: rgba(226,194,142,0.26) !important;
}

html[data-theme="light"] .cinematic-dot {
  border-color: rgba(255,255,255,0.52) !important;
  background: rgba(255,255,255,0.22) !important;
}

html[data-theme="light"] .cinematic-dot.is-active {
  background: #e2c28e !important;
  border-color: #e2c28e !important;
}

/* Forms and misc surfaces. */
html[data-theme="light"] .partner-form input,
html[data-theme="light"] .partner-form textarea {
  background: rgba(255,250,242,0.86) !important;
  color: #141414 !important;
  border-color: rgba(41,31,20,0.18) !important;
}

html[data-theme="light"] .insight-chips span,
html[data-theme="light"] .partner-initial {
  background: rgba(183,137,69,0.10) !important;
  border-color: rgba(183,137,69,0.26) !important;
  color: #6f4b1c !important;
}

html[data-theme="light"] .partner-logo-link {
  background: #fff !important;
  border-color: rgba(41,31,20,0.14) !important;
}

/* Mobile: keep the light look rich, not cramped. */
@media (max-width: 700px) {
  html[data-theme="light"] .section-soft {
    background: linear-gradient(180deg, #eadfce 0%, #f4eadc 100%) !important;
  }

  html[data-theme="light"] .card,
  html[data-theme="light"] .cta-box {
    border-radius: 24px !important;
  }
}

/* ===== PREMIUM LIGHT REDESIGN V3: contact card + full style consolidation ===== */
html[data-theme="light"] {
  --bg: #efe6d8;
  --bg-soft: #e7dccb;
  --panel: #f5ecdf;
  --panel-2: #fff8ee;
  --text: #101416;
  --muted: #38342e;
  --gold: #b78945;
  --gold-soft: #e2c28e;
  --line: rgba(43, 31, 17, 0.16);
  --line-strong: rgba(183, 137, 69, 0.40);
  --shadow: 0 22px 60px rgba(43, 31, 17, 0.18);
}

html[data-theme="light"],
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 14% 0%, rgba(183,137,69,0.20) 0%, rgba(183,137,69,0) 34%),
    radial-gradient(circle at 90% 18%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 32%),
    linear-gradient(180deg, #f4eadc 0%, #efe3d3 42%, #e6d8c6 100%) !important;
}

html[data-theme="light"] .section:not(.section-soft) {
  background: linear-gradient(180deg, rgba(255,248,238,0.42), rgba(239,227,211,0.20)) !important;
}

html[data-theme="light"] .section-soft {
  background:
    radial-gradient(circle at 86% 8%, rgba(183,137,69,0.15), transparent 34%),
    linear-gradient(180deg, #e8ddcc 0%, #f2e8db 100%) !important;
}

html[data-theme="light"] .card,
html[data-theme="light"] .kpi,
html[data-theme="light"] .quiz-shell,
html[data-theme="light"] .journey-step,
html[data-theme="light"] .insight-card,
html[data-theme="light"] .profile-card {
  background:
    linear-gradient(180deg, rgba(255,248,238,0.99) 0%, rgba(239,228,212,0.99) 100%) !important;
  border: 1px solid rgba(43,31,17,0.14) !important;
  box-shadow: 0 20px 48px rgba(43,31,17,0.14) !important;
  color: #101416 !important;
}

html[data-theme="light"] .card *,
html[data-theme="light"] .profile-card * {
  color: inherit;
}

html[data-theme="light"] .card p,
html[data-theme="light"] .card li,
html[data-theme="light"] .profile-card p,
html[data-theme="light"] .profile-card li {
  color: #3e372f !important;
}

html[data-theme="light"] .card h2,
html[data-theme="light"] .card h3,
html[data-theme="light"] .card strong,
html[data-theme="light"] .profile-card h2,
html[data-theme="light"] .profile-card h3,
html[data-theme="light"] .profile-card strong {
  color: #101416 !important;
}

html[data-theme="light"] .cta-box {
  background:
    radial-gradient(circle at 16% 0%, rgba(183,137,69,0.24), rgba(183,137,69,0) 36%),
    linear-gradient(145deg, #161512 0%, #050505 100%) !important;
  border: 1px solid rgba(226,194,142,0.26) !important;
  box-shadow: 0 30px 78px rgba(20,16,10,0.30) !important;
}

html[data-theme="light"] .cta-box h1,
html[data-theme="light"] .cta-box h2,
html[data-theme="light"] .cta-box h3,
html[data-theme="light"] .cta-box strong,
html[data-theme="light"] .cta-box .eyebrow {
  color: #fff !important;
}

html[data-theme="light"] .cta-box p,
html[data-theme="light"] .cta-box li,
html[data-theme="light"] .cta-box .lead,
html[data-theme="light"] .cta-box .lead.small {
  color: rgba(255,255,255,0.76) !important;
}

/* Contact cards in the light theme: cream panel, dark type, gold accents, icon rows. */
html[data-theme="light"] .contact-card,
html[data-theme="light"] .cta-box .contact-card,
html[data-theme="light"] .contact-card-primary,
html[data-theme="light"] .about-contact-card {
  background:
    linear-gradient(180deg, #f5ecdf 0%, #eadfce 100%) !important;
  border: 1.5px solid rgba(183,137,69,0.62) !important;
  border-radius: 30px !important;
  box-shadow: 0 24px 64px rgba(43,31,17,0.22) !important;
  color: #101416 !important;
}

html[data-theme="light"] .contact-card h2,
html[data-theme="light"] .contact-card h3,
html[data-theme="light"] .contact-card strong,
html[data-theme="light"] .cta-box .contact-card h2,
html[data-theme="light"] .cta-box .contact-card h3,
html[data-theme="light"] .cta-box .contact-card strong,
html[data-theme="light"] .about-contact-card h2,
html[data-theme="light"] .about-contact-card h3,
html[data-theme="light"] .about-contact-card strong {
  color: #101416 !important;
}

html[data-theme="light"] .contact-card h2::after,
html[data-theme="light"] .contact-card h3::after,
html[data-theme="light"] .about-contact-card h2::after,
html[data-theme="light"] .about-contact-card h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 20px 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b78945, #e2c28e) !important;
}

html[data-theme="light"] .contact-card p:not(.contact-note),
html[data-theme="light"] .about-contact-card p:not(.contact-note) {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 58px;
  gap: 18px;
  margin: 18px 0 !important;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  color: #101416 !important;
}

html[data-theme="light"] .contact-card p:not(.contact-note)::before,
html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #081015;
  color: #d6a756;
  border: 1px solid rgba(214,167,86,0.42);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  font-size: 26px;
  line-height: 1;
}

html[data-theme="light"] .contact-card p:nth-of-type(1)::before,
html[data-theme="light"] .about-contact-card p:nth-of-type(1)::before { content: "☎"; }
html[data-theme="light"] .contact-card p:nth-of-type(2)::before,
html[data-theme="light"] .about-contact-card p:nth-of-type(2)::before { content: "☏"; }
html[data-theme="light"] .contact-card p:nth-of-type(3)::before,
html[data-theme="light"] .about-contact-card p:nth-of-type(3)::before { content: "✉"; }

html[data-theme="light"] .contact-card p:not(.contact-note) strong,
html[data-theme="light"] .contact-card p:not(.contact-note) a,
html[data-theme="light"] .about-contact-card p:not(.contact-note) strong,
html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
  color: #101416 !important;
}

html[data-theme="light"] .contact-card p:not(.contact-note) a:hover,
html[data-theme="light"] .about-contact-card p:not(.contact-note) a:hover {
  color: #8a5d22 !important;
}

html[data-theme="light"] .contact-note {
  margin-top: 24px !important;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,248,238,0.64) !important;
  border: 1px solid rgba(183,137,69,0.20);
  color: #3e372f !important;
}

html[data-theme="light"] .contact-card .btn-stack,
html[data-theme="light"] .contact-card .stack.btn-stack {
  margin-top: 26px;
}

/* Strong black media-stat bars keep the premium contrast. */
html[data-theme="light"] .kpi-strip,
html[data-theme="light"] .metric-strip,
html[data-theme="light"] .stats-strip {
  background: linear-gradient(145deg, #151412 0%, #050505 100%) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color: #fff !important;
}

html[data-theme="light"] .kpi-number,
html[data-theme="light"] .metric-number,
html[data-theme="light"] .stat-number {
  color: #b78945 !important;
}

/* Make dark image/card overlays intentionally strong, not washed out. */
html[data-theme="light"] .vertical-card,
html[data-theme="light"] .usecase-hub-card,
html[data-theme="light"] .case-card,
html[data-theme="light"] .cinematic-slider-panel {
  border-color: rgba(226,194,142,0.28) !important;
  box-shadow: 0 18px 44px rgba(20,16,10,0.20) !important;
}

@media (max-width: 700px) {
  html[data-theme="light"] .contact-card,
  html[data-theme="light"] .cta-box .contact-card,
  html[data-theme="light"] .contact-card-primary,
  html[data-theme="light"] .about-contact-card {
    border-radius: 24px !important;
    padding: 26px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note),
  html[data-theme="light"] .about-contact-card p:not(.contact-note) {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    min-height: 46px;
    font-size: 17px;
    word-break: break-word;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note)::before,
  html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
    width: 46px;
    height: 46px;
    font-size: 21px;
  }
}

/* ===== PREMIUM LIGHT V4 FIX: readable contact rows inside dark CTA boxes ===== */
html[data-theme="light"] .cta-box .split-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  align-items: stretch;
}

html[data-theme="light"] .contact-card,
html[data-theme="light"] .cta-box .contact-card,
html[data-theme="light"] .contact-card-primary,
html[data-theme="light"] .about-contact-card {
  padding: clamp(28px, 4vw, 52px) !important;
  overflow: hidden;
}

html[data-theme="light"] .contact-card p:not(.contact-note),
html[data-theme="light"] .about-contact-card p:not(.contact-note) {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin: 22px 0 !important;
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.35 !important;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  color: #101416 !important;
}

html[data-theme="light"] .contact-card p:not(.contact-note)::before,
html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
}

html[data-theme="light"] .contact-card p:not(.contact-note) strong,
html[data-theme="light"] .about-contact-card p:not(.contact-note) strong {
  flex: 0 0 auto;
  margin-right: 2px;
}

html[data-theme="light"] .contact-card p:not(.contact-note) a,
html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  text-decoration: none;
}

@media (max-width: 980px) {
  html[data-theme="light"] .cta-box .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html[data-theme="light"] .contact-card p:not(.contact-note),
  html[data-theme="light"] .about-contact-card p:not(.contact-note) {
    gap: 14px;
    font-size: 16px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note)::before,
  html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
}

/* ===== PREMIUM LIGHT V5 FIX: keep contact values readable on desktop ===== */
@media (min-width: 981px) {
  html[data-theme="light"] .cta-box .split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 0.78fr) !important;
  }

  html[data-theme="light"] .cta-box .contact-card,
  html[data-theme="light"] .contact-card {
    padding: clamp(34px, 3.2vw, 48px) !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note),
  html[data-theme="light"] .about-contact-card p:not(.contact-note) {
    flex-wrap: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  html[data-theme="light"] .cta-box .split-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  html[data-theme="light"] .contact-card p:not(.contact-note) a,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

/* ===== MOBILE KEN BURNS VISIBILITY BOOST =====
   Adds a very subtle foreground movement on phones while keeping object-fit: contain.
   The blurred background moves a little more strongly, so the effect is visible
   without returning to hard image cropping on mobile. */
@keyframes umgKenBurnsMobileFgVisible {
  0% { transform: scale(1.000) translate3d(0, 0, 0); }
  100% { transform: scale(1.018) translate3d(-0.45%, -0.35%, 0); }
}

@keyframes umgKenBurnsMobileBgVisible {
  0% { transform: scale(1.10) translate3d(0, 0, 0); }
  100% { transform: scale(1.20) translate3d(-2.2%, -1.6%, 0); }
}

@media (max-width: 700px) {
  .cinematic-slide,
  .image-slider .slider {
    overflow: hidden;
  }

  .cinematic-slide.is-active::before,
  .image-slider .slider::before {
    animation: umgKenBurnsMobileBgVisible 13s ease-in-out forwards !important;
    transform-origin: center center;
    will-change: transform;
  }

  .cinematic-slide.is-active img,
  .image-slider .slide.active {
    animation: umgKenBurnsMobileFgVisible 13s ease-in-out forwards !important;
    transform-origin: center center;
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-slide.is-active img,
  .image-slider .slide.active,
  .cinematic-slide.is-active::before,
  .image-slider .slider::before {
    animation: none !important;
    transform: none !important;
  }
}

/* ===== FINAL MOBILE KEN BURNS VISIBILITY OVERRIDE =====
   Placed at the very end so it wins against earlier mobile contain rules.
   Mobile keeps object-fit: contain, but the foreground now moves subtly enough
   to be visible on iPhone. The blurred duplicate background moves more clearly. */
@keyframes umgKenBurnsMobileForegroundVisible {
  0% { transform: scale(1.000) translate3d(0, 0, 0); }
  100% { transform: scale(1.035) translate3d(-0.7%, -0.45%, 0); }
}

@keyframes umgKenBurnsMobileBackgroundVisible {
  0% { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.20) translate3d(-2.1%, -1.35%, 0); }
}

@media (max-width: 700px) {
  .cinematic-slide.is-active img,
  .image-slider .slide.active {
    animation: umgKenBurnsMobileForegroundVisible 7.2s ease-in-out infinite alternate !important;
    transform-origin: center center !important;
    will-change: transform;
  }

  .cinematic-slide.is-active::before,
  .image-slider .slider::before {
    animation: umgKenBurnsMobileBackgroundVisible 7.2s ease-in-out infinite alternate !important;
    transform-origin: center center !important;
    will-change: transform;
    opacity: 0.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-slide.is-active img,
  .image-slider .slide.active,
  .cinematic-slide.is-active::before,
  .image-slider .slider::before {
    animation: none !important;
  }
}

/* ===== BIO-MARKT SLIDER: READABLE SCREEN CONTENT =====
   Uses real images with object-fit: contain so text inside the display mockups
   stays visible. A blurred duplicate fills the background for a premium look. */
.cinematic-slider--biomarkt-readable {
  min-height: clamp(430px, 56vw, 800px);
  background: #06110b;
}

.cinematic-slider--biomarkt-readable .cinematic-slider-track {
  min-height: inherit;
}

.cinematic-slider--biomarkt-readable .cinematic-slide {
  background: #06110b;
  overflow: hidden;
}

.cinematic-slider--biomarkt-readable .cinematic-slide::before {
  content: "";
  position: absolute;
  inset: -34px;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  filter: blur(22px);
  transform: scale(1.12);
  opacity: 0.48;
  z-index: 0;
  pointer-events: none;
}

.cinematic-slider--biomarkt-readable .cinematic-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.24));
  z-index: 1;
  pointer-events: none;
}

.cinematic-slider--biomarkt-readable .cinematic-slide img {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(430px, 56vw, 800px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none;
}

.cinematic-slider--biomarkt-readable .cinematic-slider-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.38) 100%);
}

.cinematic-slider--biomarkt-readable .cinematic-slide.is-active img {
  animation: umgBioMarketReadableKenBurns 8s ease-in-out infinite alternate !important;
  transform-origin: center center;
}

.cinematic-slider--biomarkt-readable .cinematic-slide.is-active::before {
  animation: umgBioMarketReadableBackground 8s ease-in-out infinite alternate !important;
  transform-origin: center center;
}

@keyframes umgBioMarketReadableKenBurns {
  0% { transform: scale(0.985) translate3d(0, 0, 0); }
  100% { transform: scale(1.018) translate3d(-0.35%, -0.25%, 0); }
}

@keyframes umgBioMarketReadableBackground {
  0% { transform: scale(1.12) translate3d(0, 0, 0); }
  100% { transform: scale(1.20) translate3d(-1.8%, -1.2%, 0); }
}

@media (max-width: 700px) {
  .cinematic-slider--biomarkt-readable {
    min-height: 420px;
  }

  .cinematic-slider--biomarkt-readable .cinematic-slide img {
    min-height: 420px !important;
    padding: 10px 0 58px;
  }

  .cinematic-slider--biomarkt-readable .cinematic-slide::before {
    opacity: 0.62;
  }
}

@media (max-width: 420px) {
  .cinematic-slider--biomarkt-readable {
    min-height: 360px;
  }

  .cinematic-slider--biomarkt-readable .cinematic-slide img {
    min-height: 360px !important;
    padding-bottom: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-slider--biomarkt-readable .cinematic-slide.is-active img,
  .cinematic-slider--biomarkt-readable .cinematic-slide.is-active::before {
    animation: none !important;
  }
}


/* Startseite Storyboard final */
.storyboard-visual-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.storyboard-visual-flow .story-step-card {
  position: relative;
  padding: 0 !important;
  overflow: visible;
  min-height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(4,4,4,0.99)) !important;
  border-color: rgba(255,255,255,0.10) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 16px 42px rgba(0,0,0,0.18);
}
.storyboard-visual-flow .story-step-card:hover { transform: translateY(-4px); }
.storyboard-visual-flow .story-step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 124px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  z-index: 3;
}
.storyboard-visual-flow .story-step-card-highlight {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.26);
}
.storyboard-visual-flow .story-step-card-highlight:hover { transform: translateY(-12px); }
.story-step-media {
  position: relative;
  height: 258px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.story-step-card-highlight .story-step-media { height: 282px; }
.story-step-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 34%);
  z-index: 1;
}
.story-step-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.24) 40%, rgba(0,0,0,0.76) 100%);
  z-index: 1;
}
.story-step-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.02) brightness(0.96);
}
.storyboard-visual-flow .story-step-head {
  position: absolute;
  inset: 18px 18px auto 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}
.storyboard-visual-flow .story-step-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(12,12,12,0.72) !important;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22) !important;
}
.storyboard-visual-flow .story-step-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(12,12,12,0.62);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
}
.story-step-body { padding: 24px 24px 26px; }
.story-step-body h3 { margin-bottom: 10px; font-size: 1.35rem; }
.story-step-body p { margin: 0; }
.story-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}
.story-step-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}
.story-step-note {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #b9c0cb;
  font-size: 0.96rem;
}
.storyboard-cta { margin-top: 28px; }
.storyboard-conversion-box {
  margin-top: 26px;
  padding: 28px 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at top right, rgba(108,61,240,0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(212,106,0,0.12), transparent 26%),
    linear-gradient(180deg, rgba(10,10,12,0.98), rgba(3,3,5,0.99));
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
}
.storyboard-conversion-box h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
}
.storyboard-conversion-box p { margin: 0; color: var(--muted); }
.storyboard-conversion-side { display: grid; gap: 18px; }
.storyboard-conversion-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.storyboard-conversion-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}
.storyboard-conversion-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}
.storyboard-conversion-actions { margin-top: 4px; }
@media (max-width: 980px) {
  .storyboard-visual-flow { grid-template-columns: 1fr; }
  .storyboard-visual-flow .story-step-card-highlight,
  .storyboard-visual-flow .story-step-card-highlight:hover,
  .storyboard-visual-flow .story-step-card:hover { transform: none; }
  .storyboard-visual-flow .story-step-card:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(-50%);
  }
  .storyboard-conversion-box {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }
  .story-step-media,
  .story-step-card-highlight .story-step-media { height: 236px; }
}
html[data-theme="light"] .storyboard-conversion-box {
  background:
    radial-gradient(circle at top right, rgba(183,137,69,0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(212,106,0,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,248,238,0.99) 0%, rgba(239,228,212,0.99) 100%) !important;
  border-color: rgba(43,31,17,0.14) !important;
  box-shadow: 0 22px 54px rgba(43,31,17,0.14) !important;
}
html[data-theme="light"] .storyboard-visual-flow .story-step-number,
html[data-theme="light"] .storyboard-conversion-list li::before {
  background: rgba(255,255,255,0.92) !important;
  color: #111;
  border-color: rgba(17,17,17,0.10);
}
html[data-theme="light"] .storyboard-visual-flow .story-step-kicker {
  background: rgba(255,255,255,0.86);
  color: #111;
  border-color: rgba(17,17,17,0.08);
}
html[data-theme="light"] .story-step-tags span {
  background: rgba(10,10,10,0.03);
}


/* ===== Premium 5-step process section ===== */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(226,194,142,0.10), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(226,194,142,0.07), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.98), rgba(7,7,7,0.99));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-section::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 360px;
  pointer-events: none;
  opacity: 0.46;
  background-image: radial-gradient(circle, rgba(226,194,142,0.36) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 68%);
}
.process-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}
.process-head .section-intro {
  max-width: 760px;
  margin-bottom: 0;
}
.process-head-cta {
  white-space: nowrap;
}
.process-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}
.process-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    linear-gradient(145deg, rgba(18,18,18,0.98), rgba(5,5,5,0.99));
  box-shadow: 0 24px 56px rgba(0,0,0,0.38);
}
.process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(9,9,9,0.96);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 12px 26px rgba(0,0,0,0.34);
}
.process-number {
  align-self: flex-start;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: rgba(255,255,255,0.06);
}
.process-icon {
  width: 74px;
  height: 74px;
  margin: 28px auto 22px;
  color: #ffffff;
}
.process-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.process-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 13px auto 0;
  background: rgba(255,255,255,0.72);
}
.process-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}
.process-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.process-cta .btn:first-child {
  min-width: 280px;
  background: #ffffff;
  color: #080808;
  border-color: rgba(255,255,255,0.80) !important;
  box-shadow: 0 18px 38px rgba(255,255,255,0.08);
}
html[data-theme="light"] .process-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,0.08), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(180deg, #171613 0%, #080807 100%) !important;
  border-color: rgba(255,255,255,0.16) !important;
}
html[data-theme="light"] .process-section h2,
html[data-theme="light"] .process-section h3,
html[data-theme="light"] .process-section .eyebrow {
  color: #ffffff !important;
}
html[data-theme="light"] .process-section p {
  color: rgba(255,255,255,0.76) !important;
}
html[data-theme="light"] .process-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    linear-gradient(145deg, rgba(22,22,20,0.98), rgba(5,5,5,0.99)) !important;
  border-color: rgba(255,255,255,0.18) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,0.26) !important;
}
@media (max-width: 1120px) {
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-card:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 760px) {
  .process-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .process-head-cta {
    width: 100%;
  }
  .process-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }
  .process-card {
    min-height: 0;
    align-items: flex-start;
    text-align: left;
    padding: 24px 22px;
  }
  .process-icon {
    width: 58px;
    height: 58px;
    margin: 22px 0 18px;
  }
  .process-card h3::after {
    margin-left: 0;
  }
  .process-cta .btn {
    width: 100%;
  }
}

/* QA fix 2026-04-26: remove all gold accents from homepage process/storyboard section */
.process-section,
html[data-theme="light"] .process-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,0.08), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(180deg, #080808 0%, #000000 100%) !important;
  border-top-color: rgba(255,255,255,0.16) !important;
  border-bottom-color: rgba(255,255,255,0.16) !important;
}
.process-section::before,
html[data-theme="light"] .process-section::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1.4px) !important;
}
.process-section .process-card,
html[data-theme="light"] .process-section .process-card {
  border-color: rgba(255,255,255,0.22) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    linear-gradient(145deg, rgba(22,22,22,0.98), rgba(5,5,5,0.99)) !important;
}
.process-section .process-card:not(:last-child)::after,
html[data-theme="light"] .process-section .process-card:not(:last-child)::after,
.process-section .process-number,
html[data-theme="light"] .process-section .process-number {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.35) !important;
  background: rgba(9,9,9,0.96) !important;
}
.process-section .process-icon,
.process-section .process-icon svg,
html[data-theme="light"] .process-section .process-icon,
html[data-theme="light"] .process-section .process-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}
.process-section .process-card h3::after,
html[data-theme="light"] .process-section .process-card h3::after {
  background: rgba(255,255,255,0.72) !important;
}
.process-section .process-cta .btn:first-child,
html[data-theme="light"] .process-section .process-cta .btn:first-child {
  background: #ffffff !important;
  color: #080808 !important;
  border-color: rgba(255,255,255,0.85) !important;
  box-shadow: 0 18px 38px rgba(255,255,255,0.08) !important;
}
.process-section .process-head-cta,
.process-section .process-cta .btn-ghost,
html[data-theme="light"] .process-section .process-head-cta,
html[data-theme="light"] .process-section .process-cta .btn-ghost {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.28) !important;
  background: rgba(255,255,255,0.03) !important;
}



/* ===== IMPLEMENTATION PROCESS PREMIUM ===== */
.implementation-process-premium {
  padding: 0 0 52px !important;
  background: #000 !important;
}

.implementation-process-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,0.12), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(180deg, rgba(20,20,20,0.98), rgba(6,6,6,0.99)) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.38);
  padding: clamp(24px, 3.2vw, 42px);
}

.implementation-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.09), transparent 18%, transparent 82%, rgba(255,255,255,0.05));
  opacity: 0.7;
}

.implementation-process-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(26px, 3.8vw, 46px);
}

.implementation-process-intro .eyebrow {
  margin-bottom: 12px !important;
  color: rgba(255,255,255,0.72) !important;
}

.implementation-process-intro h2 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 640px;
}

.implementation-process-intro p {
  margin: 0;
  color: rgba(255,255,255,0.72) !important;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 620px;
}

.implementation-journey {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.implementation-journey::before {
  content: "";
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  pointer-events: none;
}

.implementation-journey-step {
  position: relative;
  min-width: 0;
  padding: 0 clamp(10px, 1.25vw, 18px);
}

.implementation-journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(255,255,255,0.42);
  border-right: 1px solid rgba(255,255,255,0.42);
  transform: rotate(45deg);
}

.implementation-journey-index {
  display: block;
  color: rgba(255,255,255,0.42) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.implementation-journey-dot {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 999px;
  background: #ffffff;
  border: 5px solid #161616;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.28), 0 12px 30px rgba(255,255,255,0.08);
  margin-bottom: 22px;
}

.implementation-journey-step strong {
  display: block;
  color: #ffffff !important;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.implementation-journey-step p {
  margin: 0;
  color: rgba(255,255,255,0.62) !important;
  font-size: 14px;
  line-height: 1.48;
}

html[data-theme="light"] .implementation-process-premium {
  background: transparent !important;
}

html[data-theme="light"] .implementation-process-card {
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,0.96), transparent 34%),
    radial-gradient(circle at 94% 100%, rgba(0,0,0,0.045), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%) !important;
  border-color: rgba(0,0,0,0.12) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,0.12) !important;
}

html[data-theme="light"] .implementation-process-card::before {
  background: linear-gradient(120deg, rgba(255,255,255,0.92), transparent 24%, transparent 78%, rgba(0,0,0,0.035));
}

html[data-theme="light"] .implementation-process-intro .eyebrow,
html[data-theme="light"] .implementation-journey-index {
  color: rgba(0,0,0,0.46) !important;
}

html[data-theme="light"] .implementation-process-intro h2,
html[data-theme="light"] .implementation-journey-step strong {
  color: #101010 !important;
}

html[data-theme="light"] .implementation-process-intro p,
html[data-theme="light"] .implementation-journey-step p {
  color: rgba(0,0,0,0.62) !important;
}

html[data-theme="light"] .implementation-journey::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.22), transparent);
}

html[data-theme="light"] .implementation-journey-step:not(:last-child)::after {
  border-color: rgba(0,0,0,0.26);
}

html[data-theme="light"] .implementation-journey-dot {
  background: #111111;
  border-color: #f5f5f5;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.14), 0 14px 28px rgba(0,0,0,0.08);
}

@media (max-width: 1160px) {
  .implementation-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .implementation-journey::before {
    display: none;
  }

  .implementation-journey-step {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
  }

  .implementation-journey-step:not(:last-child)::after {
    display: none;
  }

  .implementation-journey-dot {
    margin-bottom: 18px;
  }

  html[data-theme="light"] .implementation-journey-step {
    background: rgba(0,0,0,0.026);
    border-color: rgba(0,0,0,0.08);
  }
}

@media (max-width: 760px) {
  .implementation-process-premium {
    padding: 0 0 40px !important;
  }

  .implementation-process-card {
    border-radius: 26px;
    padding: 22px;
  }

  .implementation-process-intro {
    display: block;
    margin-bottom: 24px;
  }

  .implementation-process-intro h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .implementation-process-intro p {
    font-size: 15.5px;
  }

  .implementation-journey {
    display: block;
    position: relative;
    padding-left: 22px;
  }

  .implementation-journey::before {
    display: block;
    left: 7px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.38), rgba(255,255,255,0.12));
  }

  .implementation-journey-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    padding: 18px 0;
    border-radius: 0;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.09) !important;
  }

  .implementation-journey-step:last-child {
    border-bottom: 0 !important;
  }

  .implementation-journey-index {
    grid-column: 1;
    grid-row: 1;
    margin: 2px 0 0;
    letter-spacing: 0.12em;
  }

  .implementation-journey-dot {
    position: absolute;
    left: -22px;
    top: 22px;
    width: 15px;
    height: 15px;
    border-width: 4px;
    margin: 0;
  }

  .implementation-journey-step > div {
    grid-column: 2;
  }

  .implementation-journey-step strong {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .implementation-journey-step p {
    font-size: 14.5px;
  }

  html[data-theme="light"] .implementation-journey::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.24), rgba(0,0,0,0.08));
  }

  html[data-theme="light"] .implementation-journey-step {
    border-bottom-color: rgba(0,0,0,0.08) !important;
  }
}

@media (max-width: 420px) {
  .implementation-process-card {
    padding: 20px 18px;
  }

  .implementation-journey {
    padding-left: 18px;
  }

  .implementation-journey-step {
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
  }

  .implementation-journey-dot {
    left: -18px;
  }
}


/* ===== 2026-04-26: compact 4-step homepage overview + premium implementation icons ===== */
.start-overview-section {
  position: relative;
  background: #000 !important;
}
.start-overview-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 10% 6%, rgba(255,255,255,0.10), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(255,255,255,0.05), transparent 30%),
    linear-gradient(180deg, rgba(18,18,18,0.99), rgba(5,5,5,0.99));
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
  padding: clamp(24px, 3vw, 42px);
}
.start-overview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 20%, transparent 80%, rgba(255,255,255,0.04));
}
.start-overview-head,
.implementation-process-intro {
  position: relative;
  z-index: 1;
}
.start-overview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 24px 40px;
  align-items: end;
  margin-bottom: 34px;
}
.start-overview-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.start-overview-head p {
  margin: 0;
  max-width: 560px;
}
.start-overview-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.start-overview-step {
  position: relative;
  min-height: 268px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(145deg, rgba(18,18,18,0.98), rgba(5,5,5,0.99));
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}
.start-overview-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(10,10,10,0.96);
  color: #ffffff;
  line-height: 1;
  font-size: 21px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.28);
  z-index: 2;
}
.start-overview-number,
.implementation-journey-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.start-overview-icon,
.implementation-journey-icon {
  width: 72px;
  height: 72px;
  margin: 22px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 32px rgba(0,0,0,0.22);
}
.start-overview-icon svg,
.implementation-journey-icon svg {
  width: 38px;
  height: 38px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.start-overview-step h3 {
  margin-bottom: 12px;
  font-size: 21px;
}
.start-overview-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72) !important;
}
.start-overview-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.start-overview-cta .btn:first-child {
  min-width: 250px;
  background: #ffffff !important;
  color: #080808 !important;
  border-color: rgba(255,255,255,0.84) !important;
}
.start-overview-cta .btn-ghost {
  border-color: rgba(255,255,255,0.26) !important;
  background: rgba(255,255,255,0.03) !important;
  color: #ffffff !important;
}
html[data-theme="light"] .start-overview-shell {
  background:
    radial-gradient(circle at 12% 4%, rgba(255,255,255,0.92), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(0,0,0,0.04), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%) !important;
  border-color: rgba(0,0,0,0.10) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.10) !important;
}
html[data-theme="light"] .start-overview-shell::before {
  background: linear-gradient(120deg, rgba(255,255,255,0.92), transparent 24%, transparent 78%, rgba(0,0,0,0.035));
}
html[data-theme="light"] .start-overview-head h2,
html[data-theme="light"] .start-overview-step h3 {
  color: #101010 !important;
}
html[data-theme="light"] .start-overview-head p,
html[data-theme="light"] .start-overview-step p {
  color: rgba(0,0,0,0.62) !important;
}
html[data-theme="light"] .start-overview-number,
html[data-theme="light"] .implementation-journey-index {
  color: #101010 !important;
  border-color: rgba(0,0,0,0.16) !important;
  background: rgba(0,0,0,0.03) !important;
}
html[data-theme="light"] .start-overview-icon,
html[data-theme="light"] .implementation-journey-icon {
  color: #111111 !important;
  border-color: rgba(0,0,0,0.10) !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.015)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 16px 28px rgba(0,0,0,0.08) !important;
}
html[data-theme="light"] .start-overview-step {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.55)),
    linear-gradient(145deg, rgba(255,255,255,1), rgba(245,245,245,1)) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
html[data-theme="light"] .start-overview-step:not(:last-child)::after {
  color: #101010 !important;
  border-color: rgba(0,0,0,0.12) !important;
  background: #ffffff !important;
}
.implementation-process-premium {
  padding: 0 0 52px !important;
}
.implementation-process-card {
  padding: clamp(24px, 3vw, 42px);
}
.implementation-journey {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.implementation-journey::before {
  display: none !important;
}
.implementation-journey-step {
  position: relative;
  min-width: 0;
  min-height: 286px;
  padding: 20px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.implementation-journey-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(8,8,8,0.94);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
}
.implementation-journey-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.implementation-journey-index {
  margin-bottom: 16px;
}
.implementation-journey-icon {
  margin: 0 0 18px;
}
.implementation-journey-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.15;
}
.implementation-journey-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.52;
  color: rgba(255,255,255,0.66) !important;
}
html[data-theme="light"] .implementation-journey-step {
  background: rgba(0,0,0,0.024) !important;
  border-color: rgba(0,0,0,0.08) !important;
}
html[data-theme="light"] .implementation-journey-step p {
  color: rgba(0,0,0,0.62) !important;
}
html[data-theme="light"] .implementation-journey-step:not(:last-child)::after {
  color: #101010 !important;
  border-color: rgba(0,0,0,0.12) !important;
  background: #ffffff !important;
}
@media (max-width: 1260px) {
  .start-overview-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .start-overview-step:not(:last-child)::after,
  .implementation-journey-step:not(:last-child)::after {
    display: none;
  }
  .implementation-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .start-overview-shell,
  .implementation-process-card {
    border-radius: 26px;
    padding: 22px;
  }
  .start-overview-head,
  .implementation-process-intro {
    display: block;
  }
  .start-overview-head {
    margin-bottom: 24px;
  }
  .start-overview-head h2,
  .implementation-process-intro h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .start-overview-flow,
  .implementation-journey {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .start-overview-step,
  .implementation-journey-step {
    min-height: 0;
    padding: 20px 18px;
  }
  .start-overview-icon,
  .implementation-journey-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 18px 0 16px;
  }
  .start-overview-icon svg,
  .implementation-journey-icon svg {
    width: 34px;
    height: 34px;
  }
  .start-overview-cta .btn,
  .implementation-process-card .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .start-overview-flow,
  .implementation-journey {
    grid-template-columns: 1fr;
  }
  .start-overview-number,
  .implementation-journey-index {
    min-width: 40px;
    height: 40px;
    font-size: 11px;
  }
}


/* ===== 2026-04-27: Umsetzung & Betrieb neutral 9+ process redesign ===== */
.process-redesign.implementation-process-premium {
  padding: clamp(20px, 3.6vw, 48px) 0 clamp(54px, 5vw, 78px) !important;
  background:
    radial-gradient(circle at 72% 8%, rgba(255,255,255,0.055), transparent 34%),
    radial-gradient(circle at 10% 92%, rgba(255,255,255,0.035), transparent 28%),
    #000 !important;
}
.process-redesign .implementation-process-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background:
    linear-gradient(145deg, rgba(22,22,22,0.98), rgba(6,6,6,0.99)) !important;
  box-shadow: 0 28px 72px rgba(0,0,0,0.42);
  padding: clamp(28px, 4.2vw, 58px) !important;
}
.process-redesign .implementation-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(120deg, rgba(255,255,255,0.075), transparent 18%, transparent 82%, rgba(255,255,255,0.04));
  opacity: 0.72;
}
.process-redesign .implementation-process-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.035);
}
.process-redesign .implementation-process-intro {
  position: relative;
  z-index: 1;
  display: block !important;
  margin-bottom: clamp(26px, 3.5vw, 40px) !important;
  max-width: 860px;
}
.process-redesign .implementation-process-intro .eyebrow {
  display: inline-block;
  margin-bottom: 15px !important;
  color: rgba(255,255,255,0.68) !important;
  letter-spacing: 0.42em;
}
.process-redesign .implementation-process-intro h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(38px, 5.2vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  max-width: 900px !important;
}
.process-redesign .implementation-process-intro p {
  margin: clamp(16px, 2vw, 24px) 0 0 !important;
  max-width: 650px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
  line-height: 1.45 !important;
}
.process-redesign .implementation-journey {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.process-redesign .implementation-journey::before,
.process-redesign .implementation-journey-step::after {
  display: none !important;
  content: none !important;
}
.process-redesign .implementation-journey-step {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 214px !important;
  padding: 24px 22px 22px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
    rgba(255,255,255,0.018) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 18px 40px rgba(0,0,0,0.20) !important;
  text-align: center !important;
}
.process-redesign .implementation-journey-index {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 43px !important;
  height: 32px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,0.24) !important;
  background: rgba(255,255,255,0.035) !important;
  color: rgba(255,255,255,0.93) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  margin: 0 !important;
}
.process-redesign .implementation-journey-top {
  display: contents !important;
}
.process-redesign .implementation-journey-icon {
  width: 68px !important;
  height: 68px !important;
  margin: 8px auto 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #f5f5f5 !important;
}
.process-redesign .implementation-journey-icon svg {
  width: 54px !important;
  height: 54px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.25 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: drop-shadow(0 12px 18px rgba(255,255,255,0.035));
}
.process-redesign .implementation-journey-copy {
  max-width: 270px;
  margin: 0 auto;
}
.process-redesign .implementation-journey-step strong {
  display: block !important;
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(19px, 1.6vw, 24px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
}
.process-redesign .implementation-journey-step p {
  margin: 0 !important;
  color: rgba(255,255,255,0.68) !important;
  font-size: 15px !important;
  line-height: 1.48 !important;
}
.process-redesign .implementation-proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.032);
  overflow: hidden;
}
.process-redesign .implementation-proof-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 20px;
}
.process-redesign .implementation-proof-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.10);
}
.process-redesign .implementation-proof-item span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.84);
}
.process-redesign .implementation-proof-item svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-redesign .implementation-proof-item strong {
  display: block;
  margin: 0 0 3px;
  color: #fff !important;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.process-redesign .implementation-proof-item p {
  margin: 0 !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 13px;
  line-height: 1.35;
}
html[data-theme="light"] .process-redesign.implementation-process-premium {
  background: #000 !important;
}
html[data-theme="light"] .process-redesign .implementation-process-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(145deg, rgba(22,22,22,0.98), rgba(6,6,6,0.99)) !important;
  border-color: rgba(255,255,255,0.14) !important;
  box-shadow: 0 28px 72px rgba(0,0,0,0.42) !important;
}
html[data-theme="light"] .process-redesign .implementation-process-intro h2,
html[data-theme="light"] .process-redesign .implementation-journey-step strong,
html[data-theme="light"] .process-redesign .implementation-proof-item strong {
  color: #fff !important;
}
html[data-theme="light"] .process-redesign .implementation-process-intro p,
html[data-theme="light"] .process-redesign .implementation-journey-step p,
html[data-theme="light"] .process-redesign .implementation-proof-item p {
  color: rgba(255,255,255,0.68) !important;
}
html[data-theme="light"] .process-redesign .implementation-process-intro .eyebrow,
html[data-theme="light"] .process-redesign .implementation-journey-index,
html[data-theme="light"] .process-redesign .implementation-journey-icon,
html[data-theme="light"] .process-redesign .implementation-proof-item span {
  color: rgba(255,255,255,0.9) !important;
}
@media (max-width: 1120px) {
  .process-redesign .implementation-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .process-redesign.implementation-process-premium {
    padding: 20px 0 42px !important;
  }
  .process-redesign .container {
    width: min(100% - 32px, var(--container));
  }
  .process-redesign .implementation-process-card {
    border-radius: 24px !important;
    padding: 28px 18px 20px !important;
  }
  .process-redesign .implementation-process-intro {
    margin-bottom: 22px !important;
  }
  .process-redesign .implementation-process-intro .eyebrow {
    margin-bottom: 12px !important;
    font-size: 12px !important;
    letter-spacing: 0.38em !important;
  }
  .process-redesign .implementation-process-intro h2 {
    font-size: clamp(30px, 8.4vw, 42px) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.055em !important;
  }
  .process-redesign .implementation-process-intro p {
    margin-top: 14px !important;
    font-size: 16px !important;
    line-height: 1.48 !important;
  }
  .process-redesign .implementation-journey {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding-left: 30px !important;
  }
  .process-redesign .implementation-journey::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.52), rgba(255,255,255,0.18));
  }
  .process-redesign .implementation-journey-step {
    position: relative;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 48px 48px 1fr !important;
    align-items: center !important;
    column-gap: 12px !important;
    text-align: left !important;
    padding: 14px 14px !important;
    border-radius: 14px !important;
  }
  .process-redesign .implementation-journey-step::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 50%;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.13);
  }
  .process-redesign .implementation-journey-top {
    display: contents !important;
  }
  .process-redesign .implementation-journey-index {
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 34px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    margin: 0 !important;
  }
  .process-redesign .implementation-journey-icon {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
  }
  .process-redesign .implementation-journey-icon svg {
    width: 34px !important;
    height: 34px !important;
  }
  .process-redesign .implementation-journey-copy {
    grid-column: 3 !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .process-redesign .implementation-journey-step strong {
    font-size: 16px !important;
    line-height: 1.16 !important;
    margin-bottom: 4px !important;
  }
  .process-redesign .implementation-journey-step p {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
  .process-redesign .implementation-proof-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
  .process-redesign .implementation-proof-item {
    grid-template-columns: 34px 1fr;
    padding: 14px 15px;
  }
  .process-redesign .implementation-proof-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
}
@media (max-width: 390px) {
  .process-redesign .implementation-journey {
    padding-left: 24px !important;
  }
  .process-redesign .implementation-journey-step {
    grid-template-columns: 42px 40px 1fr !important;
    column-gap: 10px !important;
    padding: 13px 12px !important;
  }
  .process-redesign .implementation-journey-step::before {
    left: -22px;
  }
  .process-redesign .implementation-journey-index {
    width: 38px !important;
    min-width: 38px !important;
  }
  .process-redesign .implementation-journey-icon {
    width: 38px !important;
    height: 38px !important;
  }
  .process-redesign .implementation-journey-icon svg {
    width: 30px !important;
    height: 30px !important;
  }
}

/* ===== Umsetzung & Betrieb: Leistungsumfang ===== */
.section-intro {
  max-width: 860px;
}

.service-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-scope-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-scope-card h3 {
  margin-top: 10px;
}

.service-scope-card p {
  margin-top: 10px;
}

.service-scope-card .clean-list {
  margin-top: 18px;
}

.service-scope-kicker {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

@media (max-width: 700px) {
  .service-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-card {
    padding: 22px;
  }
}

html[data-theme="light"] .service-scope-kicker {
  border-color: rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.04);
  color: #111111;
}

/* Partner structure steering card */
.partner-control-card {
  max-width: 940px;
  margin: 22px 0 30px;
  padding: 30px;
}

.partner-control-card p {
  margin: 0 0 14px;
}

.partner-control-card p:last-child {
  margin-bottom: 0;
}

.partner-network-subhead {
  max-width: 880px;
  margin: 0 0 22px;
}

.partner-network-subhead h3 {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.18;
}

@media (max-width: 720px) {
  .partner-control-card {
    padding: 22px;
    margin-top: 18px;
  }
}

/* Partner structure responsibility board */
.role-matrix-card,
.responsibility-board-card {
  max-width: 1080px;
  margin: 0 0 34px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.responsibility-board-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  pointer-events: none;
}

.role-matrix-intro,
.responsibility-board-intro {
  padding: 30px 32px 22px;
  max-width: 900px;
}

.role-matrix-intro h3,
.responsibility-board-intro h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  line-height: 1.14;
}

.role-matrix-intro p,
.responsibility-board-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.responsibility-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px 18px;
}

.responsibility-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.responsibility-item::after {
  content: "";
  position: absolute;
  inset: 12px auto 12px 48px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.28), rgba(255,255,255,0.08));
  pointer-events: none;
}

.responsibility-item-primary,
.responsibility-item-shared {
  background: linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.024));
}

.responsibility-index {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  z-index: 1;
}

.responsibility-content {
  min-width: 0;
}

.responsibility-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.responsibility-content h4 {
  margin: 0 0 8px;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.2;
}

.responsibility-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.52;
}

.responsibility-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.responsibility-content li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.45;
  font-size: 0.94rem;
}

.responsibility-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.responsibility-note {
  margin: 0;
  padding: 18px 32px 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

html[data-theme="light"] .responsibility-board-card::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.22), transparent);
}

html[data-theme="light"] .responsibility-item {
  background: linear-gradient(145deg, rgba(0,0,0,0.035), rgba(0,0,0,0.012));
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

html[data-theme="light"] .responsibility-index {
  border-color: rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.045);
}

html[data-theme="light"] .responsibility-item::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18), rgba(0,0,0,0.05));
}

@media (max-width: 900px) {
  .responsibility-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .role-matrix-intro,
  .responsibility-board-intro {
    padding: 24px 22px 18px;
  }

  .responsibility-board {
    padding: 0 12px 12px;
    gap: 12px;
  }

  .responsibility-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .responsibility-item::after {
    left: 41px;
  }

  .responsibility-index {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .responsibility-note {
    padding: 16px 22px 22px;
  }
}

@media (max-width: 420px) {
  .responsibility-item {
    grid-template-columns: 1fr;
  }

  .responsibility-item::after {
    display: none;
  }
}

/* Differentiation block: hardware providers vs media space operations */
.differentiation-card {
  max-width: 1040px;
  margin: 0 0 34px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
}

.differentiation-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.16;
}

.differentiation-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.differentiation-points {
  display: grid;
  gap: 12px;
}

.differentiation-points div {
  padding: 18px 18px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
}

.differentiation-points strong,
.differentiation-points span {
  display: block;
}

.differentiation-points strong {
  color: var(--text);
  margin-bottom: 6px;
}

.differentiation-points span {
  color: var(--muted);
  line-height: 1.5;
}

html[data-theme="light"] .differentiation-card {
  border-color: rgba(0,0,0,0.12);
  background: linear-gradient(135deg, rgba(0,0,0,0.035), rgba(0,0,0,0.012));
}

html[data-theme="light"] .differentiation-points div {
  background: rgba(255,255,255,0.72);
}

@media (max-width: 860px) {
  .differentiation-card {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 18px;
  }
}


/* ===== Hero Typografie-Hierarchie ===== */
.hero-audience {
  margin: 16px 0 0;
  max-width: 980px;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: #ffffff !important;
  text-wrap: balance;
}

.hero-intro-copy {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  max-width: 960px;
}

.hero-intro-copy p {
  margin: 0;
  max-width: 960px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted) !important;
}

.hero-intro-copy + .hero-actions {
  margin-top: 30px;
}

html[data-theme="light"] .hero-audience {
  color: #111111 !important;
}

@media (max-width: 700px) {
  .hero-audience {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-intro-copy {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-intro-copy p {
    font-size: 16.5px;
    line-height: 1.62;
  }
}


/* ===== QA PATCH: UMSETZUNG & BETRIEB HEADERBILD MIT STARTSEITEN-CINEMATIC ===== */
/* Das Headerbild liegt jetzt exakt in 1536x1024 (3:2) vor.
   Dadurch wird es auf Desktop und iPhone vollständig und scharf dargestellt,
   ohne Cropping der integrierten Typografie. */
.topic-image-band {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #000 !important;
  border-bottom: 1px solid var(--line) !important;
  animation: umgStillHeroReveal 900ms ease-out both;
}

.topic-image-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 3 / 2;
  overflow: hidden !important;
  line-height: 0;
  display: block !important;
  background: #000 !important;
}

.topic-image-wrap::before {
  content: none !important;
}

.topic-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.035) 0%, rgba(0,0,0,0.00) 42%, rgba(0,0,0,0.24) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.02) 48%, rgba(0,0,0,0.10) 100%);
}

.topic-image-wrap img {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  filter: contrast(1.035) saturate(1.025);
  animation: umgTopicHeroZoom 18s cubic-bezier(.22,.61,.36,1) both;
  backface-visibility: hidden;
}

@keyframes umgTopicHeroZoom {
  from {
    transform: scale(1.000);
  }
  to {
    transform: scale(1.022);
  }
}

@media (max-width: 700px) {
  .topic-image-wrap {
    aspect-ratio: 3 / 2;
  }

  .topic-image-wrap::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.00) 42%, rgba(0,0,0,0.18) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.00) 52%, rgba(0,0,0,0.06) 100%);
  }

  .topic-image-wrap img {
    animation-duration: 16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topic-image-band,
  .topic-image-wrap img {
    animation: none !important;
  }

  .topic-image-wrap img {
    transform: none !important;
  }
}

/* ===== QA PATCH: Stakeholder-Karten Typografie sauber halten ===== */
.stakeholder-grid .card h2 {
  margin-top: 8px;
  font-size: clamp(32px, 2.8vw, 44px);
  line-height: 1.09;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.stakeholder-grid .card p,
.stakeholder-grid .card .eyebrow {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

@media (max-width: 700px) {
  .stakeholder-grid .card h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }
}


/* ===== FINALER VISUELLER FEINSCHLIFF: Stakeholder-Karten & Abschnittsrhythmus ===== */
.stakeholder-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.06), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.016), rgba(255,255,255,0.007));
}

.stakeholder-section .stakeholder-grid {
  gap: clamp(18px, 2.1vw, 28px);
}

.stakeholder-section .card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: clamp(500px, 36vw, 610px);
  padding: clamp(28px, 3vw, 38px);
  border-radius: 30px;
  border-color: rgba(255,255,255,0.17);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.017) 42%, rgba(0,0,0,0.92)),
    linear-gradient(145deg, rgba(16,16,16,0.98), rgba(2,2,2,0.99));
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  overflow: hidden;
}

.stakeholder-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 26%, transparent 74%, rgba(255,255,255,0.08)),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.12), transparent 34%);
  opacity: 0.58;
  pointer-events: none;
}

.stakeholder-section .card::after {
  content: "";
  position: absolute;
  left: clamp(28px, 3vw, 38px);
  right: clamp(28px, 3vw, 38px);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.54), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.stakeholder-section .card .eyebrow {
  margin-bottom: 24px;
  max-width: 100%;
  color: rgba(255,255,255,0.76);
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.17em;
  line-height: 1.45;
}

.stakeholder-section .card h2 {
  margin: 0 0 28px;
  max-width: 10.8em;
  font-size: clamp(34px, 2.45vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.stakeholder-section .card p {
  margin: 0;
  max-width: 37em;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.64;
}

.stakeholder-section .card p + p {
  margin-top: 24px;
}

html[data-theme="light"] .stakeholder-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(0,0,0,0.045), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(0,0,0,0.035), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.018), rgba(0,0,0,0.006));
}

html[data-theme="light"] .stakeholder-section .card {
  border-color: rgba(0,0,0,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
    linear-gradient(145deg, rgba(0,0,0,0.018), rgba(0,0,0,0.006));
  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

html[data-theme="light"] .stakeholder-section .card::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.07), transparent 28%, transparent 72%, rgba(0,0,0,0.04)),
    radial-gradient(circle at 20% 0%, rgba(0,0,0,0.05), transparent 34%);
}

html[data-theme="light"] .stakeholder-section .card::after {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.22), transparent);
}

html[data-theme="light"] .stakeholder-section .card .eyebrow,
html[data-theme="light"] .stakeholder-section .card p {
  color: rgba(0,0,0,0.68) !important;
}

@media (min-width: 1041px) and (max-width: 1220px) {
  .stakeholder-section .card h2 {
    font-size: clamp(31px, 2.35vw, 37px);
    letter-spacing: -0.04em;
  }

  .stakeholder-section .card p {
    font-size: 16.5px;
  }
}

@media (max-width: 1040px) {
  .stakeholder-section .card {
    min-height: auto;
  }

  .stakeholder-section .card h2 {
    max-width: 12.8em;
    font-size: clamp(34px, 6vw, 48px);
  }
}

@media (max-width: 700px) {
  .stakeholder-section {
    padding: 64px 0;
  }

  .stakeholder-section .stakeholder-grid {
    gap: 16px;
  }

  .stakeholder-section .card {
    padding: 25px 22px 26px;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.30);
  }

  .stakeholder-section .card::after {
    left: 22px;
    right: 22px;
  }

  .stakeholder-section .card .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.145em;
  }

  .stakeholder-section .card h2 {
    margin-bottom: 22px;
    max-width: 11.2em;
    font-size: clamp(31px, 8.6vw, 39px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .stakeholder-section .card p {
    font-size: 16px;
    line-height: 1.58;
  }

  .stakeholder-section .card p + p {
    margin-top: 18px;
  }
}

/* Kleine Harmonisierung der Abschluss-CTA nach dem langen Strukturteil */
.cta-box {
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  pointer-events: none;
}

html[data-theme="light"] .cta-box::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.20), transparent);
}

/* ===== LIGHT CONTACT MOBILE FIX V6: prevent broken words/contact data ===== */
@media (max-width: 700px) {
  html[data-theme="light"] .contact-card,
  html[data-theme="light"] .cta-box .contact-card,
  html[data-theme="light"] .contact-card-primary,
  html[data-theme="light"] .about-contact-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 22px !important;
    overflow: visible !important;
  }

  html[data-theme="light"] .contact-card h2,
  html[data-theme="light"] .contact-card h3,
  html[data-theme="light"] .about-contact-card h2,
  html[data-theme="light"] .about-contact-card h3 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note),
  html[data-theme="light"] .about-contact-card p:not(.contact-note) {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 14px !important;
    row-gap: 2px !important;
    align-items: center !important;
    min-height: 56px !important;
    margin: 20px 0 !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note)::before,
  html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px !important;
    font-size: 21px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) strong,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) strong {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: block !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
    grid-column: 2 !important;
    grid-row: 2 !important;
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="tel"],
  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="https://wa.me"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="tel"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="https://wa.me"] {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="mailto"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="mailto"] {
    font-size: 15px !important;
  }
}


/* ===== MOBILE CONTACT CARD POLISH V7: cleaner light-mode CTA contact cards ===== */
@media (max-width: 700px) {
  html[data-theme="light"] .cta-box {
    padding: 24px 18px !important;
    border-radius: 28px !important;
  }

  html[data-theme="light"] .cta-box .split-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  html[data-theme="light"] .cta-box .contact-card,
  html[data-theme="light"] .contact-card,
  html[data-theme="light"] .contact-card-primary,
  html[data-theme="light"] .about-contact-card {
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  html[data-theme="light"] .contact-card h2,
  html[data-theme="light"] .contact-card h3,
  html[data-theme="light"] .about-contact-card h2,
  html[data-theme="light"] .about-contact-card h3 {
    font-size: clamp(20px, 6.8vw, 28px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 10px !important;
    max-width: 100% !important;
    text-wrap: balance;
    overflow-wrap: break-word !important;
  }

  html[data-theme="light"] .contact-card h2::after,
  html[data-theme="light"] .contact-card h3::after,
  html[data-theme="light"] .about-contact-card h2::after,
  html[data-theme="light"] .about-contact-card h3::after {
    width: 56px !important;
    margin: 16px 0 20px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note),
  html[data-theme="light"] .about-contact-card p:not(.contact-note) {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    min-height: 50px !important;
    column-gap: 12px !important;
    row-gap: 4px !important;
    margin: 16px 0 !important;
    padding-right: 0 !important;
    font-size: 15px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note)::before,
  html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
    font-size: 18px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) strong,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) strong {
    font-size: 14px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
    font-size: 15px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    overflow-wrap: anywhere !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="tel"],
  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="https://wa.me"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="tel"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="https://wa.me"] {
    white-space: normal !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="mailto"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="mailto"] {
    font-size: 14px !important;
  }
}

@media (max-width: 420px) {
  html[data-theme="light"] .cta-box {
    padding: 22px 16px !important;
  }

  html[data-theme="light"] .cta-box .contact-card,
  html[data-theme="light"] .contact-card,
  html[data-theme="light"] .contact-card-primary,
  html[data-theme="light"] .about-contact-card {
    padding: 20px 16px !important;
  }

  html[data-theme="light"] .contact-card h2,
  html[data-theme="light"] .contact-card h3,
  html[data-theme="light"] .about-contact-card h2,
  html[data-theme="light"] .about-contact-card h3 {
    font-size: clamp(18px, 6.4vw, 24px) !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note),
  html[data-theme="light"] .about-contact-card p:not(.contact-note) {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    row-gap: 3px !important;
    margin: 14px 0 !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note)::before,
  html[data-theme="light"] .about-contact-card p:not(.contact-note)::before {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
    font-size: 16px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) strong,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) strong {
    font-size: 13px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a,
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a {
    font-size: 14px !important;
  }

  html[data-theme="light"] .contact-card p:not(.contact-note) a[href^="mailto"],
  html[data-theme="light"] .about-contact-card p:not(.contact-note) a[href^="mailto"] {
    font-size: 13px !important;
  }
}


/* ===== LIGHT MODE CTA FIX V8: CTA boxes should stay light, not black ===== */
html[data-theme="light"] .cta-box {
  background:
    radial-gradient(circle at 86% 8%, rgba(183,137,69,0.16), transparent 34%),
    linear-gradient(180deg, #fff8ee 0%, #f0e4d3 100%) !important;
  border: 1.5px solid rgba(183,137,69,0.45) !important;
  box-shadow: 0 22px 58px rgba(43,31,17,0.16) !important;
  color: #101416 !important;
}

html[data-theme="light"] .cta-box *,
html[data-theme="light"] .cta-box h1,
html[data-theme="light"] .cta-box h2,
html[data-theme="light"] .cta-box h3,
html[data-theme="light"] .cta-box strong {
  color: #101416 !important;
}

html[data-theme="light"] .cta-box p,
html[data-theme="light"] .cta-box li,
html[data-theme="light"] .cta-box .lead,
html[data-theme="light"] .cta-box .lead.small {
  color: #3e372f !important;
}

html[data-theme="light"] .cta-box .eyebrow {
  color: #8a5d22 !important;
}

html[data-theme="light"] .cta-box::before {
  background: linear-gradient(90deg, transparent, rgba(183,137,69,0.42), transparent) !important;
}

/* Keep CTA contact cards visually separated but also light in light mode. */
html[data-theme="light"] .cta-box .contact-card {
  background:
    linear-gradient(180deg, #f7efe3 0%, #eadfce 100%) !important;
  border: 1.5px solid rgba(183,137,69,0.58) !important;
  box-shadow: 0 18px 42px rgba(43,31,17,0.14) !important;
  color: #101416 !important;
}

/* Mobile: reduce the oversized CTA headline in light mode for a more editorial look. */
@media (max-width: 700px) {
  html[data-theme="light"] .cta-box h2 {
    font-size: clamp(30px, 8.4vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
  }

  html[data-theme="light"] .cta-box .lead,
  html[data-theme="light"] .cta-box .lead.small {
    font-size: clamp(18px, 5.2vw, 23px) !important;
    line-height: 1.48 !important;
  }
}

@media (max-width: 420px) {
  html[data-theme="light"] .cta-box h2 {
    font-size: clamp(27px, 8vw, 36px) !important;
  }

  html[data-theme="light"] .cta-box .lead,
  html[data-theme="light"] .cta-box .lead.small {
    font-size: clamp(17px, 4.9vw, 21px) !important;
  }
}


/* ===== LIGHT MODE SECTION PANELS V9: Ablauf / dark process blocks also light ===== */
/* Some process and contrast panels intentionally stayed dark. In light mode they should
   follow the same warm editorial surface as the rest of the page. */
html[data-theme="light"] .card-contrast,
html[data-theme="light"] .journey-step,
html[data-theme="light"] .process-step,
html[data-theme="light"] .roadmap-step,
html[data-theme="light"] .timeline-step,
html[data-theme="light"] .insight-card.card-contrast {
  background:
    radial-gradient(circle at 88% 10%, rgba(183,137,69,0.14), transparent 34%),
    linear-gradient(180deg, #fff8ee 0%, #efe3d3 100%) !important;
  border: 1.5px solid rgba(183,137,69,0.42) !important;
  box-shadow: 0 20px 50px rgba(43,31,17,0.14) !important;
  color: #101416 !important;
}

html[data-theme="light"] .card-contrast *,
html[data-theme="light"] .journey-step *,
html[data-theme="light"] .process-step *,
html[data-theme="light"] .roadmap-step *,
html[data-theme="light"] .timeline-step *,
html[data-theme="light"] .insight-card.card-contrast * {
  color: #101416 !important;
}

html[data-theme="light"] .card-contrast p,
html[data-theme="light"] .card-contrast li,
html[data-theme="light"] .card-contrast .lead,
html[data-theme="light"] .card-contrast .lead.small,
html[data-theme="light"] .journey-step p,
html[data-theme="light"] .journey-step li,
html[data-theme="light"] .journey-step .lead,
html[data-theme="light"] .journey-step .lead.small,
html[data-theme="light"] .process-step p,
html[data-theme="light"] .process-step li,
html[data-theme="light"] .roadmap-step p,
html[data-theme="light"] .roadmap-step li,
html[data-theme="light"] .timeline-step p,
html[data-theme="light"] .timeline-step li {
  color: #3e372f !important;
}

html[data-theme="light"] .card-contrast .eyebrow,
html[data-theme="light"] .journey-step .eyebrow,
html[data-theme="light"] .process-step .eyebrow,
html[data-theme="light"] .roadmap-step .eyebrow,
html[data-theme="light"] .timeline-step .eyebrow {
  color: #8a5d22 !important;
}

/* Keep the buttons readable in light mode when they sit above those sections. */
html[data-theme="light"] .inline-actions .btn:not(.btn-ghost),
html[data-theme="light"] .btn-stack .btn:not(.btn-ghost) {
  background: #101416 !important;
  color: #fff8ee !important;
  border-color: rgba(16,20,22,0.92) !important;
}

html[data-theme="light"] .inline-actions .btn.btn-ghost,
html[data-theme="light"] .btn-stack .btn.btn-ghost {
  background: rgba(255,248,238,0.72) !important;
  color: #101416 !important;
  border-color: rgba(43,31,17,0.18) !important;
}

/* Mobile polish for process panels: smaller headlines and less black-screen feeling. */
@media (max-width: 700px) {
  html[data-theme="light"] .card-contrast,
  html[data-theme="light"] .journey-step,
  html[data-theme="light"] .process-step,
  html[data-theme="light"] .roadmap-step,
  html[data-theme="light"] .timeline-step,
  html[data-theme="light"] .insight-card.card-contrast {
    border-radius: 28px !important;
    padding: 26px 22px !important;
  }

  html[data-theme="light"] .card-contrast h2,
  html[data-theme="light"] .journey-step h2,
  html[data-theme="light"] .process-step h2,
  html[data-theme="light"] .roadmap-step h2,
  html[data-theme="light"] .timeline-step h2,
  html[data-theme="light"] .insight-card.card-contrast h2 {
    font-size: clamp(30px, 8.6vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
  }

  html[data-theme="light"] .card-contrast p,
  html[data-theme="light"] .card-contrast .lead,
  html[data-theme="light"] .card-contrast .lead.small,
  html[data-theme="light"] .journey-step p,
  html[data-theme="light"] .journey-step .lead,
  html[data-theme="light"] .journey-step .lead.small,
  html[data-theme="light"] .process-step p,
  html[data-theme="light"] .roadmap-step p,
  html[data-theme="light"] .timeline-step p {
    font-size: clamp(17px, 4.9vw, 21px) !important;
    line-height: 1.48 !important;
  }
}

@media (max-width: 420px) {
  html[data-theme="light"] .card-contrast h2,
  html[data-theme="light"] .journey-step h2,
  html[data-theme="light"] .process-step h2,
  html[data-theme="light"] .roadmap-step h2,
  html[data-theme="light"] .timeline-step h2,
  html[data-theme="light"] .insight-card.card-contrast h2 {
    font-size: clamp(27px, 8vw, 36px) !important;
  }
}


/* ===== LIGHT MODE DARK PANEL OVERRIDE V10: force implementation/process panels light ===== */
/* Earlier light overrides did not catch the custom implementation panel classes.
   This final override targets the actual premium process containers/cards as well. */
html[data-theme="light"] .implementation-flow,
html[data-theme="light"] .implementation-flow-card,
html[data-theme="light"] .implementation-roadmap,
html[data-theme="light"] .implementation-roadmap-card,
html[data-theme="light"] .implementation-step,
html[data-theme="light"] .implementation-step-card,
html[data-theme="light"] .process-panel,
html[data-theme="light"] .process-card,
html[data-theme="light"] .flow-panel,
html[data-theme="light"] .flow-card,
html[data-theme="light"] .roadmap-panel,
html[data-theme="light"] .roadmap-card,
html[data-theme="light"] .steps-panel,
html[data-theme="light"] .steps-card,
html[data-theme="light"] .timeline-panel,
html[data-theme="light"] .timeline-card,
html[data-theme="light"] .dark-panel,
html[data-theme="light"] .dark-card,
html[data-theme="light"] .glass-panel,
html[data-theme="light"] .glass-card,
html[data-theme="light"] .premium-panel,
html[data-theme="light"] .premium-card,
html[data-theme="light"] .media-model-panel,
html[data-theme="light"] .media-model-card,
html[data-theme="light"] .operating-model-panel,
html[data-theme="light"] .operating-model-card,
html[data-theme="light"] [class*="flow"][class*="panel"],
html[data-theme="light"] [class*="flow"][class*="card"],
html[data-theme="light"] [class*="roadmap"][class*="panel"],
html[data-theme="light"] [class*="roadmap"][class*="card"],
html[data-theme="light"] [class*="process"][class*="panel"],
html[data-theme="light"] [class*="process"][class*="card"],
html[data-theme="light"] [class*="implementation"][class*="panel"],
html[data-theme="light"] [class*="implementation"][class*="card"] {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,0.70), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(183,137,69,0.16), transparent 35%),
    linear-gradient(180deg, #fff8ee 0%, #efe3d3 100%) !important;
  border: 1.5px solid rgba(183,137,69,0.42) !important;
  box-shadow: 0 22px 56px rgba(43,31,17,0.15) !important;
  color: #101416 !important;
}

/* Catch panels/cards that were hard-coded with dark inline/background gradients. */
html[data-theme="light"] .section-soft [style*="background:#000"],
html[data-theme="light"] .section-soft [style*="background: #000"],
html[data-theme="light"] .section-soft [style*="background:linear-gradient"],
html[data-theme="light"] .section-soft [style*="background: linear-gradient"],
html[data-theme="light"] [class*="panel"][style*="background"],
html[data-theme="light"] [class*="card"][style*="background"] {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,0.70), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(183,137,69,0.16), transparent 35%),
    linear-gradient(180deg, #fff8ee 0%, #efe3d3 100%) !important;
  border-color: rgba(183,137,69,0.42) !important;
  color: #101416 !important;
}

/* Force typography inside those previously dark panels to switch to light-mode colors. */
html[data-theme="light"] .implementation-flow *,
html[data-theme="light"] .implementation-flow-card *,
html[data-theme="light"] .implementation-roadmap *,
html[data-theme="light"] .implementation-roadmap-card *,
html[data-theme="light"] .implementation-step *,
html[data-theme="light"] .implementation-step-card *,
html[data-theme="light"] .process-panel *,
html[data-theme="light"] .process-card *,
html[data-theme="light"] .flow-panel *,
html[data-theme="light"] .flow-card *,
html[data-theme="light"] .roadmap-panel *,
html[data-theme="light"] .roadmap-card *,
html[data-theme="light"] .steps-panel *,
html[data-theme="light"] .steps-card *,
html[data-theme="light"] .timeline-panel *,
html[data-theme="light"] .timeline-card *,
html[data-theme="light"] .dark-panel *,
html[data-theme="light"] .dark-card *,
html[data-theme="light"] .glass-panel *,
html[data-theme="light"] .glass-card *,
html[data-theme="light"] .premium-panel *,
html[data-theme="light"] .premium-card *,
html[data-theme="light"] [class*="flow"][class*="panel"] *,
html[data-theme="light"] [class*="flow"][class*="card"] *,
html[data-theme="light"] [class*="roadmap"][class*="panel"] *,
html[data-theme="light"] [class*="roadmap"][class*="card"] *,
html[data-theme="light"] [class*="process"][class*="panel"] *,
html[data-theme="light"] [class*="process"][class*="card"] *,
html[data-theme="light"] [class*="implementation"][class*="panel"] *,
html[data-theme="light"] [class*="implementation"][class*="card"] * {
  color: #101416 !important;
}

html[data-theme="light"] .implementation-flow p,
html[data-theme="light"] .implementation-flow li,
html[data-theme="light"] .implementation-roadmap p,
html[data-theme="light"] .implementation-roadmap li,
html[data-theme="light"] .process-panel p,
html[data-theme="light"] .process-card p,
html[data-theme="light"] .flow-panel p,
html[data-theme="light"] .flow-card p,
html[data-theme="light"] .roadmap-panel p,
html[data-theme="light"] .roadmap-card p,
html[data-theme="light"] .steps-panel p,
html[data-theme="light"] .steps-card p,
html[data-theme="light"] .timeline-panel p,
html[data-theme="light"] .timeline-card p,
html[data-theme="light"] .dark-panel p,
html[data-theme="light"] .dark-card p,
html[data-theme="light"] .glass-panel p,
html[data-theme="light"] .glass-card p,
html[data-theme="light"] .premium-panel p,
html[data-theme="light"] .premium-card p,
html[data-theme="light"] [class*="flow"][class*="panel"] p,
html[data-theme="light"] [class*="flow"][class*="card"] p,
html[data-theme="light"] [class*="roadmap"][class*="panel"] p,
html[data-theme="light"] [class*="roadmap"][class*="card"] p,
html[data-theme="light"] [class*="process"][class*="panel"] p,
html[data-theme="light"] [class*="process"][class*="card"] p,
html[data-theme="light"] [class*="implementation"][class*="panel"] p,
html[data-theme="light"] [class*="implementation"][class*="card"] p {
  color: #3e372f !important;
}

html[data-theme="light"] .implementation-flow .eyebrow,
html[data-theme="light"] .implementation-roadmap .eyebrow,
html[data-theme="light"] .process-panel .eyebrow,
html[data-theme="light"] .process-card .eyebrow,
html[data-theme="light"] .flow-panel .eyebrow,
html[data-theme="light"] .flow-card .eyebrow,
html[data-theme="light"] .roadmap-panel .eyebrow,
html[data-theme="light"] .roadmap-card .eyebrow,
html[data-theme="light"] .steps-panel .eyebrow,
html[data-theme="light"] .steps-card .eyebrow,
html[data-theme="light"] .timeline-panel .eyebrow,
html[data-theme="light"] .timeline-card .eyebrow,
html[data-theme="light"] [class*="flow"][class*="panel"] .eyebrow,
html[data-theme="light"] [class*="flow"][class*="card"] .eyebrow,
html[data-theme="light"] [class*="roadmap"][class*="panel"] .eyebrow,
html[data-theme="light"] [class*="roadmap"][class*="card"] .eyebrow,
html[data-theme="light"] [class*="process"][class*="panel"] .eyebrow,
html[data-theme="light"] [class*="process"][class*="card"] .eyebrow,
html[data-theme="light"] [class*="implementation"][class*="panel"] .eyebrow,
html[data-theme="light"] [class*="implementation"][class*="card"] .eyebrow {
  color: #8a5d22 !important;
}

/* Step-number/dot/icon elements should remain visible on light cards. */
html[data-theme="light"] .step-number,
html[data-theme="light"] .step-index,
html[data-theme="light"] .timeline-number,
html[data-theme="light"] .process-number,
html[data-theme="light"] .roadmap-number {
  background: rgba(16,20,22,0.06) !important;
  border-color: rgba(43,31,17,0.16) !important;
  color: #101416 !important;
}

html[data-theme="light"] .implementation-flow svg,
html[data-theme="light"] .implementation-roadmap svg,
html[data-theme="light"] .process-panel svg,
html[data-theme="light"] .process-card svg,
html[data-theme="light"] .flow-panel svg,
html[data-theme="light"] .flow-card svg,
html[data-theme="light"] .roadmap-panel svg,
html[data-theme="light"] .roadmap-card svg,
html[data-theme="light"] .steps-panel svg,
html[data-theme="light"] .steps-card svg {
  color: #8a5d22 !important;
  stroke: #8a5d22 !important;
}

/* Mobile typography correction for the process headline in light mode. */
@media (max-width: 700px) {
  html[data-theme="light"] [class*="flow"][class*="panel"] h2,
  html[data-theme="light"] [class*="flow"][class*="card"] h2,
  html[data-theme="light"] [class*="roadmap"][class*="panel"] h2,
  html[data-theme="light"] [class*="roadmap"][class*="card"] h2,
  html[data-theme="light"] [class*="process"][class*="panel"] h2,
  html[data-theme="light"] [class*="process"][class*="card"] h2,
  html[data-theme="light"] [class*="implementation"][class*="panel"] h2,
  html[data-theme="light"] [class*="implementation"][class*="card"] h2 {
    font-size: clamp(28px, 8.2vw, 40px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
  }
}

/* ===== 2026-04-30: QA fix - Umsetzung & Betrieb Ablaufcontainer im Light Mode =====
   Der Ablaufbereich hatte noch eine spezifische Light-Mode-Regel mit schwarzem Hintergrund.
   Diese finalen Regeln setzen den Container, die Prozesskarte und alle Ablaufkacheln sauber auf helle Flächen. */
html[data-theme="light"] .process-redesign.implementation-process-premium {
  background:
    radial-gradient(circle at 78% 0%, rgba(255,255,255,0.88), transparent 36%),
    radial-gradient(circle at 10% 100%, rgba(183,137,69,0.10), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #f3eadf 100%) !important;
}
html[data-theme="light"] .process-redesign .implementation-process-card {
  background:
    radial-gradient(circle at 15% 0%, rgba(255,255,255,0.92), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(246,238,228,0.96)) !important;
  border-color: rgba(120,96,66,0.26) !important;
  box-shadow: 0 24px 58px rgba(43,31,17,0.13) !important;
  color: #101416 !important;
}
html[data-theme="light"] .process-redesign .implementation-process-card::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.62), transparent 38%),
    linear-gradient(120deg, rgba(255,255,255,0.44), transparent 24%, transparent 80%, rgba(120,96,66,0.06)) !important;
  opacity: 1 !important;
}
html[data-theme="light"] .process-redesign .implementation-process-card::after {
  border-color: rgba(120,96,66,0.10) !important;
}
html[data-theme="light"] .process-redesign .implementation-journey-step {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.50)) !important;
  border-color: rgba(120,96,66,0.20) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.70), 0 14px 34px rgba(43,31,17,0.10) !important;
  color: #101416 !important;
}
html[data-theme="light"] .process-redesign .implementation-proof-strip {
  background: rgba(255,255,255,0.50) !important;
  border-color: rgba(120,96,66,0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.62) !important;
}
html[data-theme="light"] .process-redesign .implementation-proof-item:not(:last-child) {
  border-color: rgba(120,96,66,0.14) !important;
}
html[data-theme="light"] .process-redesign .implementation-process-intro h2,
html[data-theme="light"] .process-redesign .implementation-journey-step strong,
html[data-theme="light"] .process-redesign .implementation-proof-item strong {
  color: #101416 !important;
}
html[data-theme="light"] .process-redesign .implementation-process-intro p,
html[data-theme="light"] .process-redesign .implementation-journey-step p,
html[data-theme="light"] .process-redesign .implementation-proof-item p {
  color: #3e372f !important;
}
html[data-theme="light"] .process-redesign .implementation-process-intro .eyebrow,
html[data-theme="light"] .process-redesign .implementation-journey-index,
html[data-theme="light"] .process-redesign .implementation-journey-icon,
html[data-theme="light"] .process-redesign .implementation-proof-item span {
  color: #6d5d47 !important;
}
html[data-theme="light"] .process-redesign .implementation-journey-index {
  background: rgba(16,20,22,0.055) !important;
  border-color: rgba(120,96,66,0.18) !important;
}
html[data-theme="light"] .process-redesign .implementation-journey-icon svg,
html[data-theme="light"] .process-redesign .implementation-proof-item svg {
  color: #6d5d47 !important;
  stroke: currentColor !important;
  filter: none !important;
}

/* ===== 2026-04-30: QA fix - CTA-Buttons in Karten auf gleiche Höhe setzen =====
   Karten mit CTA-Buttons werden als Flex-Container aufgebaut. Die Button-Zeile wird nach unten geschoben,
   damit Buttons innerhalb einer Kartenreihe optisch auf derselben Höhe sitzen. */
.usecase-hub-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.usecase-hub-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}
.usecase-hub-content .inline-actions {
  margin-top: auto !important;
  padding-top: 24px !important;
}
.grid-3.top-grid > .card,
.grid-2.top-grid > .card,
.service-scope-grid.top-grid > .card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.grid-3.top-grid > .card > .inline-actions,
.grid-2.top-grid > .card > .inline-actions,
.service-scope-grid.top-grid > .card > .inline-actions {
  margin-top: auto !important;
  padding-top: 22px !important;
}
@media (max-width: 860px) {
  .usecase-hub-content .inline-actions,
  .grid-3.top-grid > .card > .inline-actions,
  .grid-2.top-grid > .card > .inline-actions,
  .service-scope-grid.top-grid > .card > .inline-actions {
    margin-top: 22px !important;
    padding-top: 0 !important;
  }
}

/* ===== 2026-04-30: QA fix - weiße Container auf Start- und Umsetzungsseite vereinheitlicht =====
   Ziel: Im Light Mode sollen die sichtbaren Content-Container nicht hart weiß wirken,
   sondern einheitlich in der warmen Creme-Anmutung der übrigen Website erscheinen. */
html[data-theme="light"] .home-intro-full ~ .section-soft,
html[data-theme="light"] .page-hero ~ .section-soft,
html[data-theme="light"] .home-intro-full ~ .section,
html[data-theme="light"] .page-hero ~ .section {
  background-color: transparent !important;
}

html[data-theme="light"] .home-intro-full ~ .section .card,
html[data-theme="light"] .home-intro-full ~ .section .cta-box,
html[data-theme="light"] .home-intro-full ~ .section .storyboard-conversion-box,
html[data-theme="light"] .home-intro-full ~ .section .start-overview-step,
html[data-theme="light"] .page-hero ~ .section .card,
html[data-theme="light"] .page-hero ~ .section .cta-box,
html[data-theme="light"] .page-hero ~ .section .contact-card,
html[data-theme="light"] .page-hero ~ .implementation-process-premium .implementation-process-card,
html[data-theme="light"] .page-hero ~ .implementation-process-premium .implementation-journey-step,
html[data-theme="light"] .page-hero ~ .implementation-process-premium .implementation-proof-strip {
  background:
    radial-gradient(circle at 86% 8%, rgba(183,137,69,0.13), transparent 34%),
    radial-gradient(circle at 12% 94%, rgba(212,106,0,0.075), transparent 30%),
    linear-gradient(180deg, #fff8ee 0%, #efe2d0 100%) !important;
  border-color: rgba(183,137,69,0.36) !important;
  box-shadow: 0 22px 54px rgba(43,31,17,0.14) !important;
  color: #101416 !important;
}

html[data-theme="light"] .home-intro-full ~ .section .card h1,
html[data-theme="light"] .home-intro-full ~ .section .card h2,
html[data-theme="light"] .home-intro-full ~ .section .card h3,
html[data-theme="light"] .home-intro-full ~ .section .card strong,
html[data-theme="light"] .home-intro-full ~ .section .cta-box h1,
html[data-theme="light"] .home-intro-full ~ .section .cta-box h2,
html[data-theme="light"] .home-intro-full ~ .section .cta-box h3,
html[data-theme="light"] .home-intro-full ~ .section .cta-box strong,
html[data-theme="light"] .page-hero ~ .section .card h1,
html[data-theme="light"] .page-hero ~ .section .card h2,
html[data-theme="light"] .page-hero ~ .section .card h3,
html[data-theme="light"] .page-hero ~ .section .card strong,
html[data-theme="light"] .page-hero ~ .section .cta-box h1,
html[data-theme="light"] .page-hero ~ .section .cta-box h2,
html[data-theme="light"] .page-hero ~ .section .cta-box h3,
html[data-theme="light"] .page-hero ~ .section .cta-box strong {
  color: #101416 !important;
}

html[data-theme="light"] .home-intro-full ~ .section .card p,
html[data-theme="light"] .home-intro-full ~ .section .card li,
html[data-theme="light"] .home-intro-full ~ .section .cta-box p,
html[data-theme="light"] .home-intro-full ~ .section .cta-box li,
html[data-theme="light"] .page-hero ~ .section .card p,
html[data-theme="light"] .page-hero ~ .section .card li,
html[data-theme="light"] .page-hero ~ .section .cta-box p,
html[data-theme="light"] .page-hero ~ .section .cta-box li {
  color: #3e372f !important;
}

/* Unterkarten innerhalb der Rollenmatrix und Differenzierungsbereiche ebenfalls creme statt weiß/grau. */
html[data-theme="light"] .page-hero ~ .section .responsibility-item,
html[data-theme="light"] .page-hero ~ .section .differentiation-points div,
html[data-theme="light"] .home-intro-full ~ .section .story-step-tags span,
html[data-theme="light"] .home-intro-full ~ .section .storyboard-visual-flow .story-step-number,
html[data-theme="light"] .home-intro-full ~ .section .storyboard-visual-flow .story-step-kicker,
html[data-theme="light"] .home-intro-full ~ .section .storyboard-conversion-list li::before,
html[data-theme="light"] .home-intro-full ~ .section .start-overview-step:not(:last-child)::after {
  background:
    linear-gradient(180deg, rgba(255,248,238,0.96), rgba(239,226,208,0.94)) !important;
  border-color: rgba(183,137,69,0.30) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.52), 0 12px 26px rgba(43,31,17,0.10) !important;
  color: #101416 !important;
}

html[data-theme="light"] .home-intro-full ~ .section .card:hover,
html[data-theme="light"] .page-hero ~ .section .card:hover {
  border-color: rgba(183,137,69,0.48) !important;
  box-shadow: 0 26px 62px rgba(43,31,17,0.17) !important;
}

/* Ergänzung: auch die hellen Abschnittsbänder auf Start- und Umsetzungsseite warm abtönen. */
html[data-theme="light"] .home-intro-full ~ .section-soft,
html[data-theme="light"] .page-hero ~ .section-soft {
  background:
    radial-gradient(circle at 80% 0%, rgba(183,137,69,0.075), transparent 34%),
    linear-gradient(180deg, rgba(255,248,238,0.54), rgba(239,226,208,0.42)) !important;
  border-top-color: rgba(183,137,69,0.18) !important;
  border-bottom-color: rgba(183,137,69,0.18) !important;
}

/* ===== 2026-04-30: QA fix - Startseite Orientierung-Container creme statt weiß =====
   Der Orientierung-Block nutzt .start-overview-shell mit eigener Light-Mode-Regel.
   Diese finale Regel steht bewusst am Ende der CSS, damit sie ältere weiße Verläufe übersteuert. */
html[data-theme="light"] .start-overview-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(183,137,69,0.075), transparent 34%),
    linear-gradient(180deg, rgba(255,248,238,0.42), rgba(239,226,208,0.34)) !important;
}

html[data-theme="light"] .start-overview-shell {
  background:
    radial-gradient(circle at 12% 4%, rgba(255,255,255,0.56), transparent 30%),
    radial-gradient(circle at 88% 96%, rgba(183,137,69,0.14), transparent 34%),
    linear-gradient(180deg, #fff8ee 0%, #efe2d0 100%) !important;
  border-color: rgba(183,137,69,0.36) !important;
  box-shadow: 0 24px 70px rgba(43,31,17,0.14) !important;
}

html[data-theme="light"] .start-overview-shell::before {
  background: linear-gradient(120deg, rgba(255,255,255,0.42), transparent 24%, transparent 78%, rgba(183,137,69,0.08)) !important;
}

/* Global bulletpoint redesign – Variante 2 (gold outlined badge with dark check core) */
:root {
  --bullet-ring: rgba(183,137,69,0.78);
  --bullet-ring-soft: rgba(183,137,69,0.34);
  --bullet-core-start: #2b2b2b;
  --bullet-core-end: #111111;
  --bullet-check: #ffffff;
  --bullet-surface: rgba(255,248,238,0.82);
}

.list-item {
  gap: 14px;
}

.dot {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 0.08em;
  flex: 0 0 24px;
  border-radius: 999px;
  border: 1.5px solid var(--bullet-ring);
  background: linear-gradient(180deg, rgba(255,252,247,0.92), rgba(243,231,214,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76), 0 4px 12px rgba(0,0,0,0.10);
}

.dot::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--bullet-core-start), var(--bullet-core-end));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 2px 5px rgba(0,0,0,0.18);
}

.dot::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bullet-check);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

ul.clean-list,
.responsibility-content ul,
.storyboard-conversion-list {
  list-style: none;
}

ul.clean-list {
  padding-left: 0;
}

ul.clean-list li,
.responsibility-content li,
.storyboard-conversion-list li {
  position: relative;
  padding-left: 34px;
}

ul.clean-list li::before,
.responsibility-content li::before,
.storyboard-conversion-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.04em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bullet-check);
  background:
    radial-gradient(circle at center, transparent 0 42%, rgba(0,0,0,0) 42%),
    linear-gradient(180deg, rgba(255,252,247,0.94), rgba(243,231,214,0.84));
  border: 1.5px solid var(--bullet-ring);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.74), 0 4px 12px rgba(0,0,0,0.10);
}

ul.clean-list li::after,
.responsibility-content li::after,
.storyboard-conversion-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.04em + 4px);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--bullet-core-start), var(--bullet-core-end));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 2px 5px rgba(0,0,0,0.18);
  z-index: 0;
}

ul.clean-list li::before,
.responsibility-content li::before,
.storyboard-conversion-list li::before {
  z-index: 1;
}

html[data-theme="light"] .dot,
html[data-theme="light"] ul.clean-list li::before,
html[data-theme="light"] .responsibility-content li::before,
html[data-theme="light"] .storyboard-conversion-list li::before {
  border-color: rgba(183,137,69,0.84) !important;
  background: linear-gradient(180deg, rgba(255,252,247,0.96), rgba(240,227,209,0.88)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 6px 16px rgba(43,31,17,0.10) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .dot::before,
html[data-theme="light"] ul.clean-list li::after,
html[data-theme="light"] .responsibility-content li::after,
html[data-theme="light"] .storyboard-conversion-list li::after {
  background: linear-gradient(145deg, #2c2c2c, #151515) !important;
}

@media (max-width: 767px) {
  .dot {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .dot::before {
    inset: 4px;
  }

  ul.clean-list li,
  .responsibility-content li,
  .storyboard-conversion-list li {
    padding-left: 32px;
  }
}

/* FINAL bulletpoint correction - Variante 2 everywhere: gold ring, dark core, white check */
:root {
  --bullet-v2-ring: #c89a57;
  --bullet-v2-surface-top: rgba(255,252,247,0.98);
  --bullet-v2-surface-bottom: rgba(242,230,212,0.92);
  --bullet-v2-core: #181818;
  --bullet-v2-check: #ffffff;
}

.dot,
html[data-theme="light"] .dot {
  position: relative !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  margin-top: 0.08em !important;
  border-radius: 999px !important;
  border: 1.5px solid var(--bullet-v2-ring) !important;
  background: linear-gradient(180deg, var(--bullet-v2-surface-top), var(--bullet-v2-surface-bottom)) !important;
  color: var(--bullet-v2-check) !important;
  box-shadow:
    inset 0 0 0 4px var(--bullet-v2-core),
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 4px 12px rgba(43,31,17,0.10) !important;
}

.dot::before,
html[data-theme="light"] .dot::before {
  content: "✓" !important;
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: var(--bullet-v2-check) !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.dot::after,
html[data-theme="light"] .dot::after {
  content: none !important;
}

ul.clean-list,
.responsibility-content ul,
.storyboard-conversion-list {
  list-style: none !important;
}

ul.clean-list {
  padding-left: 0 !important;
}

ul.clean-list li,
.responsibility-content li,
.storyboard-conversion-list li {
  position: relative !important;
  padding-left: 34px !important;
}

ul.clean-list li::before,
.responsibility-content li::before,
.storyboard-conversion-list li::before,
html[data-theme="light"] ul.clean-list li::before,
html[data-theme="light"] .responsibility-content li::before,
html[data-theme="light"] .storyboard-conversion-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.04em !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  color: var(--bullet-v2-check) !important;
  border: 1.5px solid var(--bullet-v2-ring) !important;
  background: linear-gradient(180deg, var(--bullet-v2-surface-top), var(--bullet-v2-surface-bottom)) !important;
  box-shadow:
    inset 0 0 0 4px var(--bullet-v2-core),
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 4px 12px rgba(43,31,17,0.10) !important;
}

ul.clean-list li::after,
.responsibility-content li::after,
.storyboard-conversion-list li::after,
html[data-theme="light"] ul.clean-list li::after,
html[data-theme="light"] .responsibility-content li::after,
html[data-theme="light"] .storyboard-conversion-list li::after {
  content: none !important;
}

@media (max-width: 767px) {
  .dot,
  html[data-theme="light"] .dot {
    width: 22px !important;
    height: 22px !important;
    flex-basis: 22px !important;
  }

  .dot::before,
  html[data-theme="light"] .dot::before {
    font-size: 0.78rem !important;
  }

  ul.clean-list li,
  .responsibility-content li,
  .storyboard-conversion-list li {
    padding-left: 32px !important;
  }

  ul.clean-list li::before,
  .responsibility-content li::before,
  .storyboard-conversion-list li::before,
  html[data-theme="light"] ul.clean-list li::before,
  html[data-theme="light"] .responsibility-content li::before,
  html[data-theme="light"] .storyboard-conversion-list li::before {
    width: 21px !important;
    height: 21px !important;
    font-size: 0.76rem !important;
  }
}


/* Umsetzung page bulletpoints – exact Variante 2: gold ring, dark core, white check */
.page-umsetzung ul.clean-list,
.page-umsetzung .responsibility-content ul,
.page-umsetzung .storyboard-conversion-list {
  list-style: none !important;
}

.page-umsetzung ul.clean-list {
  padding-left: 0 !important;
}

.page-umsetzung ul.clean-list li,
.page-umsetzung .responsibility-content li,
.page-umsetzung .storyboard-conversion-list li {
  position: relative !important;
  padding-left: 35px !important;
}

.page-umsetzung ul.clean-list li::before,
.page-umsetzung .responsibility-content li::before,
.page-umsetzung .storyboard-conversion-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  color: #ffffff !important;
  border: 2px solid #c79a58 !important;
  background: linear-gradient(180deg, #fbf7f1 0%, #f0e4d2 100%) !important;
  box-shadow: inset 0 0 0 4px #1b1b1b, inset 0 1px 0 rgba(255,255,255,0.72), 0 4px 12px rgba(43,31,17,0.10) !important;
}

.page-umsetzung ul.clean-list li::after,
.page-umsetzung .responsibility-content li::after,
.page-umsetzung .storyboard-conversion-list li::after {
  content: none !important;
}

html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before {
  color: #ffffff !important;
  border: 2px solid #c79a58 !important;
  background: linear-gradient(180deg, #fbf7f1 0%, #f0e4d2 100%) !important;
  box-shadow: inset 0 0 0 4px #1b1b1b, inset 0 1px 0 rgba(255,255,255,0.72), 0 4px 12px rgba(43,31,17,0.10) !important;
}

@media (max-width: 767px) {
  .page-umsetzung ul.clean-list li,
  .page-umsetzung .responsibility-content li,
  .page-umsetzung .storyboard-conversion-list li {
    padding-left: 33px !important;
  }

  .page-umsetzung ul.clean-list li::before,
  .page-umsetzung .responsibility-content li::before,
  .page-umsetzung .storyboard-conversion-list li::before {
    width: 21px !important;
    height: 21px !important;
    font-size: 0.76rem !important;
  }
}


/* FINAL screenshot-match fix for Umsetzung page bullets */
.page-umsetzung ul.clean-list li,
.page-umsetzung .responsibility-content li,
.page-umsetzung .storyboard-conversion-list li {
  position: relative !important;
  padding-left: 38px !important;
}

.page-umsetzung ul.clean-list li::before,
.page-umsetzung .responsibility-content li::before,
.page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.02em !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  display: block !important;
  background: radial-gradient(circle at center,
    #181818 0 49%,
    #f7f2ea 50% 69%,
    #c89a57 70% 84%,
    rgba(0,0,0,0) 85%) !important;
  box-shadow: 0 3px 10px rgba(43,31,17,0.10) !important;
  border: none !important;
}

.page-umsetzung ul.clean-list li::after,
.page-umsetzung .responsibility-content li::after,
.page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="light"] .page-umsetzung ul.clean-list li::after,
html[data-theme="light"] .page-umsetzung .responsibility-content li::after,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::after,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::after,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::after {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.02em !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.90rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  transform: translateY(-0.5px) !important;
}

@media (max-width: 767px) {
  .page-umsetzung ul.clean-list li,
  .page-umsetzung .responsibility-content li,
  .page-umsetzung .storyboard-conversion-list li {
    padding-left: 35px !important;
  }

  .page-umsetzung ul.clean-list li::before,
  .page-umsetzung .responsibility-content li::before,
  .page-umsetzung .storyboard-conversion-list li::before,
  .page-umsetzung ul.clean-list li::after,
  .page-umsetzung .responsibility-content li::after,
  .page-umsetzung .storyboard-conversion-list li::after,
  html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
  html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
  html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
  html[data-theme="light"] .page-umsetzung ul.clean-list li::after,
  html[data-theme="light"] .page-umsetzung .responsibility-content li::after,
  html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::after,
  html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
  html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
  html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before,
  html[data-theme="dark"] .page-umsetzung ul.clean-list li::after,
  html[data-theme="dark"] .page-umsetzung .responsibility-content li::after,
  html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::after {
    width: 22px !important;
    height: 22px !important;
  }

  .page-umsetzung ul.clean-list li::after,
  .page-umsetzung .responsibility-content li::after,
  .page-umsetzung .storyboard-conversion-list li::after {
    font-size: 0.82rem !important;
  }
}


/* FINAL FINAL – Umsetzung bullets with guaranteed white check visibility */
.page-umsetzung ul.clean-list li,
.page-umsetzung .responsibility-content li,
.page-umsetzung .storyboard-conversion-list li,
.page-umsetzung .partner-list li {
  position: relative !important;
  padding-left: 39px !important;
  min-height: 24px !important;
}

.page-umsetzung ul.clean-list li::before,
.page-umsetzung .responsibility-content li::before,
.page-umsetzung .storyboard-conversion-list li::before,
.page-umsetzung .partner-list li::before,
html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="light"] .page-umsetzung .partner-list li::before,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="dark"] .page-umsetzung .partner-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.08em !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle at center,
    #171717 0 46%,
    #f7f1e8 46.5% 69%,
    #c99c59 69.5% 83%,
    rgba(0,0,0,0) 83.5%) !important;
  box-shadow: 0 4px 12px rgba(43,31,17,0.14) !important;
  border: none !important;
  z-index: 1 !important;
}

.page-umsetzung ul.clean-list li::after,
.page-umsetzung .responsibility-content li::after,
.page-umsetzung .storyboard-conversion-list li::after,
.page-umsetzung .partner-list li::after,
html[data-theme="light"] .page-umsetzung ul.clean-list li::after,
html[data-theme="light"] .page-umsetzung .responsibility-content li::after,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="light"] .page-umsetzung .partner-list li::after,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::after,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::after,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="dark"] .page-umsetzung .partner-list li::after {
  content: "✔" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.08em !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.88rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  text-shadow: 0 0 1px rgba(255,255,255,0.25) !important;
  z-index: 2 !important;
  transform: translateY(-0.5px) !important;
}

@media (max-width: 767px) {
  .page-umsetzung ul.clean-list li,
  .page-umsetzung .responsibility-content li,
  .page-umsetzung .storyboard-conversion-list li,
  .page-umsetzung .partner-list li {
    padding-left: 36px !important;
    min-height: 22px !important;
  }

  .page-umsetzung ul.clean-list li::before,
  .page-umsetzung .responsibility-content li::before,
  .page-umsetzung .storyboard-conversion-list li::before,
  .page-umsetzung .partner-list li::before,
  .page-umsetzung ul.clean-list li::after,
  .page-umsetzung .responsibility-content li::after,
  .page-umsetzung .storyboard-conversion-list li::after,
  .page-umsetzung .partner-list li::after {
    width: 22px !important;
    height: 22px !important;
  }

  .page-umsetzung ul.clean-list li::after,
  .page-umsetzung .responsibility-content li::after,
  .page-umsetzung .storyboard-conversion-list li::after,
  .page-umsetzung .partner-list li::after {
    font-size: 0.80rem !important;
  }
}


/* EXACT screenshot-match bullets for Umsetzung page */
.page-umsetzung ul.clean-list,
.page-umsetzung .responsibility-content ul,
.page-umsetzung .storyboard-conversion-list,
.page-umsetzung .partner-list {
  list-style: none !important;
}

.page-umsetzung ul.clean-list,
.page-umsetzung .partner-list {
  padding-left: 0 !important;
}

.page-umsetzung ul.clean-list li,
.page-umsetzung .responsibility-content li,
.page-umsetzung .storyboard-conversion-list li,
.page-umsetzung .partner-list li {
  position: relative !important;
  padding-left: 44px !important;
  min-height: 28px !important;
}

/* outer cream disk with gold outline */
.page-umsetzung ul.clean-list li::before,
.page-umsetzung .responsibility-content li::before,
.page-umsetzung .storyboard-conversion-list li::before,
.page-umsetzung .partner-list li::before,
html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="light"] .page-umsetzung .partner-list li::before,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="dark"] .page-umsetzung .partner-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  z-index: 1 !important;
}

/* dark core with centered white check */
.page-umsetzung ul.clean-list li::after,
.page-umsetzung .responsibility-content li::after,
.page-umsetzung .storyboard-conversion-list li::after,
.page-umsetzung .partner-list li::after,
html[data-theme="light"] .page-umsetzung ul.clean-list li::after,
html[data-theme="light"] .page-umsetzung .responsibility-content li::after,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="light"] .page-umsetzung .partner-list li::after,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::after,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::after,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="dark"] .page-umsetzung .partner-list li::after {
  content: "✓" !important;
  position: absolute !important;
  left: 5px !important;
  top: calc(0.05em + 5px) !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  background: #1b1b1b !important;
  color: #ffffff !important;
  border: none !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  z-index: 2 !important;
}

@media (max-width: 767px) {
  .page-umsetzung ul.clean-list li,
  .page-umsetzung .responsibility-content li,
  .page-umsetzung .storyboard-conversion-list li,
  .page-umsetzung .partner-list li {
    padding-left: 40px !important;
    min-height: 26px !important;
  }

  .page-umsetzung ul.clean-list li::before,
  .page-umsetzung .responsibility-content li::before,
  .page-umsetzung .storyboard-conversion-list li::before,
  .page-umsetzung .partner-list li::before {
    width: 26px !important;
    height: 26px !important;
  }

  .page-umsetzung ul.clean-list li::after,
  .page-umsetzung .responsibility-content li::after,
  .page-umsetzung .storyboard-conversion-list li::after,
  .page-umsetzung .partner-list li::after {
    left: 5px !important;
    width: 16px !important;
    height: 16px !important;
    font-size: 0.76rem !important;
  }
}


/* Straight-line check refinement for Umsetzung page bullets */
.page-umsetzung ul.clean-list li::before,
.page-umsetzung .responsibility-content li::before,
.page-umsetzung .storyboard-conversion-list li::before,
.page-umsetzung .partner-list li::before,
html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="light"] .page-umsetzung .partner-list li::before,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="dark"] .page-umsetzung .partner-list li::before {
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12), inset 0 0 0 5px #f6efe5 !important;
}

.page-umsetzung ul.clean-list li::after,
.page-umsetzung .responsibility-content li::after,
.page-umsetzung .storyboard-conversion-list li::after,
.page-umsetzung .partner-list li::after,
html[data-theme="light"] .page-umsetzung ul.clean-list li::after,
html[data-theme="light"] .page-umsetzung .responsibility-content li::after,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="light"] .page-umsetzung .partner-list li::after,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::after,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::after,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="dark"] .page-umsetzung .partner-list li::after {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: calc(0.05em + 5px) !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  z-index: 2 !important;
}

@media (max-width: 767px) {
  .page-umsetzung ul.clean-list li::after,
  .page-umsetzung .responsibility-content li::after,
  .page-umsetzung .storyboard-conversion-list li::after,
  .page-umsetzung .partner-list li::after {
    left: 5px !important;
    width: 16px !important;
    height: 16px !important;
    background-size: 9px 9px !important;
  }
}


/* Standortpartner bullets – same exact style as Umsetzung page */
.page-standortpartner .list-item {
  gap: 16px !important;
  align-items: flex-start !important;
}

.page-standortpartner .dot,
html[data-theme="light"] .page-standortpartner .dot,
html[data-theme="dark"] .page-standortpartner .dot {
  position: relative !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  margin-top: 0.05em !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
}

.page-standortpartner .dot::before,
html[data-theme="light"] .page-standortpartner .dot::before,
html[data-theme="dark"] .page-standortpartner .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  z-index: 2 !important;
}

.page-standortpartner .dot::after,
html[data-theme="light"] .page-standortpartner .dot::after,
html[data-theme="dark"] .page-standortpartner .dot::after {
  content: none !important;
}

@media (max-width: 767px) {
  .page-standortpartner .list-item {
    gap: 14px !important;
  }

  .page-standortpartner .dot,
  html[data-theme="light"] .page-standortpartner .dot,
  html[data-theme="dark"] .page-standortpartner .dot {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px !important;
  }

  .page-standortpartner .dot::before,
  html[data-theme="light"] .page-standortpartner .dot::before,
  html[data-theme="dark"] .page-standortpartner .dot::before {
    width: 16px !important;
    height: 16px !important;
    background-size: 9px 9px !important;
  }
}


/* Werbepartner page bullets – final straight-check style */
.page-werbepartner .list-item {
  gap: 16px !important;
}

.page-werbepartner .dot,
html[data-theme="light"] .page-werbepartner .dot,
html[data-theme="dark"] .page-werbepartner .dot {
  position: relative !important;
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  margin-top: 0.02em !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
}

.page-werbepartner .dot::before,
html[data-theme="light"] .page-werbepartner .dot::before,
html[data-theme="dark"] .page-werbepartner .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  border: none !important;
}

.page-werbepartner .dot::after,
html[data-theme="light"] .page-werbepartner .dot::after,
html[data-theme="dark"] .page-werbepartner .dot::after {
  content: none !important;
}

.page-werbepartner ul.clean-list,
.page-werbepartner .partner-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.page-werbepartner ul.clean-list li,
.page-werbepartner .partner-list li {
  position: relative !important;
  padding-left: 44px !important;
  min-height: 28px !important;
}

.page-werbepartner ul.clean-list li::before,
.page-werbepartner .partner-list li::before,
html[data-theme="light"] .page-werbepartner ul.clean-list li::before,
html[data-theme="light"] .page-werbepartner .partner-list li::before,
html[data-theme="dark"] .page-werbepartner ul.clean-list li::before,
html[data-theme="dark"] .page-werbepartner .partner-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.05em !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  z-index: 1 !important;
}

.page-werbepartner ul.clean-list li::after,
.page-werbepartner .partner-list li::after,
html[data-theme="light"] .page-werbepartner ul.clean-list li::after,
html[data-theme="light"] .page-werbepartner .partner-list li::after,
html[data-theme="dark"] .page-werbepartner ul.clean-list li::after,
html[data-theme="dark"] .page-werbepartner .partner-list li::after {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: calc(0.05em + 5px) !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  z-index: 2 !important;
}

@media (max-width: 767px) {
  .page-werbepartner .dot,
  html[data-theme="light"] .page-werbepartner .dot,
  html[data-theme="dark"] .page-werbepartner .dot {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px !important;
  }

  .page-werbepartner .dot::before,
  html[data-theme="light"] .page-werbepartner .dot::before,
  html[data-theme="dark"] .page-werbepartner .dot::before {
    width: 16px !important;
    height: 16px !important;
    background-size: 9px 9px !important;
  }

  .page-werbepartner ul.clean-list li,
  .page-werbepartner .partner-list li {
    padding-left: 40px !important;
    min-height: 26px !important;
  }

  .page-werbepartner ul.clean-list li::before,
  .page-werbepartner .partner-list li::before,
  .page-werbepartner ul.clean-list li::after,
  .page-werbepartner .partner-list li::after {
    width: 26px !important;
    height: 26px !important;
  }

  .page-werbepartner ul.clean-list li::after,
  .page-werbepartner .partner-list li::after {
    left: 5px !important;
    width: 16px !important;
    height: 16px !important;
    background-size: 9px 9px !important;
  }
}

/* FINAL Standortpartner bullet alignment – identical optical style to Umsetzung page */
.page-standortpartner .list-item {
  gap: 16px !important;
  align-items: flex-start !important;
}

.page-standortpartner .dot,
html[data-theme="light"] .page-standortpartner .dot,
html[data-theme="dark"] .page-standortpartner .dot {
  position: relative !important;
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  flex: 0 0 28px !important;
  margin-top: 0.05em !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  opacity: 1 !important;
}

.page-standortpartner .dot::before,
html[data-theme="light"] .page-standortpartner .dot::before,
html[data-theme="dark"] .page-standortpartner .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
  z-index: 2 !important;
}

.page-standortpartner .dot::after,
html[data-theme="light"] .page-standortpartner .dot::after,
html[data-theme="dark"] .page-standortpartner .dot::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 767px) {
  .page-standortpartner .dot,
  html[data-theme="light"] .page-standortpartner .dot,
  html[data-theme="dark"] .page-standortpartner .dot {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    flex-basis: 28px !important;
  }

  .page-standortpartner .dot::before,
  html[data-theme="light"] .page-standortpartner .dot::before,
  html[data-theme="dark"] .page-standortpartner .dot::before {
    left: 5px !important;
    top: 5px !important;
    width: 18px !important;
    height: 18px !important;
    background-size: 10px 10px !important;
  }
}

/* Werbepartner bullets – same final style as Standortpartner and Umsetzung */
.page-werbepartner .list-item {
  gap: 16px !important;
  align-items: flex-start !important;
}

.page-werbepartner .dot,
html[data-theme="light"] .page-werbepartner .dot,
html[data-theme="dark"] .page-werbepartner .dot {
  position: relative !important;
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  flex: 0 0 28px !important;
  margin-top: 0.05em !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  opacity: 1 !important;
}

.page-werbepartner .dot::before,
html[data-theme="light"] .page-werbepartner .dot::before,
html[data-theme="dark"] .page-werbepartner .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
  z-index: 2 !important;
}

.page-werbepartner .dot::after,
html[data-theme="light"] .page-werbepartner .dot::after,
html[data-theme="dark"] .page-werbepartner .dot::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 767px) {
  .page-werbepartner .dot,
  html[data-theme="light"] .page-werbepartner .dot,
  html[data-theme="dark"] .page-werbepartner .dot {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    flex-basis: 28px !important;
  }

  .page-werbepartner .dot::before,
  html[data-theme="light"] .page-werbepartner .dot::before,
  html[data-theme="dark"] .page-werbepartner .dot::before {
    left: 5px !important;
    top: 5px !important;
    width: 18px !important;
    height: 18px !important;
    background-size: 10px 10px !important;
  }
}


/* ABSOLUTE FINAL: Standortpartner + Werbepartner bullets exactly like Umsetzung final style */
body.page-standortpartner .list-item,
body.page-werbepartner .list-item {
  gap: 16px !important;
  align-items: flex-start !important;
}

body.page-standortpartner .list-item > .dot,
body.page-werbepartner .list-item > .dot,
html[data-theme="light"] body.page-standortpartner .list-item > .dot,
html[data-theme="light"] body.page-werbepartner .list-item > .dot,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
  content: "" !important;
  position: relative !important;
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  flex: 0 0 28px !important;
  margin: 0.05em 0 0 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  opacity: 1 !important;
  overflow: visible !important;
}

body.page-standortpartner .list-item > .dot::before,
body.page-werbepartner .list-item > .dot::before,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.2 L6.2 11.4 L13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
  z-index: 2 !important;
  transform: none !important;
}

body.page-standortpartner .list-item > .dot::after,
body.page-werbepartner .list-item > .dot::after,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::after,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  body.page-standortpartner .list-item > .dot,
  body.page-werbepartner .list-item > .dot,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    flex-basis: 28px !important;
  }

  body.page-standortpartner .list-item > .dot::before,
  body.page-werbepartner .list-item > .dot::before,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
    left: 5px !important;
    top: 5px !important;
    width: 18px !important;
    height: 18px !important;
    background-size: 10px 10px !important;
  }
}

/* FINAL REAL FIX: Standortpartner + Werbepartner bullets exakt wie Umsetzung */
.page-standortpartner .list-item,
.page-werbepartner .list-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.page-standortpartner .list-item > .dot,
.page-werbepartner .list-item > .dot,
html[data-theme="light"] .page-standortpartner .list-item > .dot,
html[data-theme="light"] .page-werbepartner .list-item > .dot,
html[data-theme="dark"] .page-standortpartner .list-item > .dot,
html[data-theme="dark"] .page-werbepartner .list-item > .dot {
  position: relative !important;
  display: inline-block !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  flex: 0 0 28px !important;
  margin: 0.02em 0 0 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  opacity: 1 !important;
  overflow: visible !important;
}

.page-standortpartner .list-item > .dot::before,
.page-werbepartner .list-item > .dot::before,
html[data-theme="light"] .page-standortpartner .list-item > .dot::before,
html[data-theme="light"] .page-werbepartner .list-item > .dot::before,
html[data-theme="dark"] .page-standortpartner .list-item > .dot::before,
html[data-theme="dark"] .page-werbepartner .list-item > .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 999px !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.2 8.2 L6.35 11.35 L12.9 4.8' fill='none' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  z-index: 2 !important;
}

.page-standortpartner .list-item > .dot::after,
.page-werbepartner .list-item > .dot::after,
html[data-theme="light"] .page-standortpartner .list-item > .dot::after,
html[data-theme="light"] .page-werbepartner .list-item > .dot::after,
html[data-theme="dark"] .page-standortpartner .list-item > .dot::after,
html[data-theme="dark"] .page-werbepartner .list-item > .dot::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 767px) {
  .page-standortpartner .list-item,
  .page-werbepartner .list-item {
    gap: 14px !important;
  }

  .page-standortpartner .list-item > .dot,
  .page-werbepartner .list-item > .dot {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    flex-basis: 26px !important;
  }

  .page-standortpartner .list-item > .dot::before,
  .page-werbepartner .list-item > .dot::before {
    left: 5px !important;
    top: 5px !important;
    width: 16px !important;
    height: 16px !important;
    background-size: 9px 9px !important;
  }
}

/* FINAL VISUAL PROPORTION FIX: Standortpartner + Werbepartner bullets closer to Umsetzung */
body.page-standortpartner .list-item,
body.page-werbepartner .list-item {
  gap: 14px !important;
}

body.page-standortpartner .list-item > .dot,
body.page-werbepartner .list-item > .dot,
html[data-theme="light"] body.page-standortpartner .list-item > .dot,
html[data-theme="light"] body.page-werbepartner .list-item > .dot,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  flex: 0 0 28px !important;
  margin-top: 0.02em !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 5px 14px rgba(43,31,17,0.11) !important;
}

body.page-standortpartner .list-item > .dot::before,
body.page-werbepartner .list-item > .dot::before,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
  content: "" !important;
  left: 4px !important;
  top: 4px !important;
  width: 20px !important;
  height: 20px !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.2 8.2 L6.35 11.35 L12.9 4.8' fill='none' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 11px 11px !important;
  border-radius: 999px !important;
  display: block !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

body.page-standortpartner .list-item > .dot::after,
body.page-werbepartner .list-item > .dot::after,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::after,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 767px) {
  body.page-standortpartner .list-item,
  body.page-werbepartner .list-item {
    gap: 13px !important;
  }

  body.page-standortpartner .list-item > .dot,
  body.page-werbepartner .list-item > .dot,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    flex-basis: 26px !important;
  }

  body.page-standortpartner .list-item > .dot::before,
  body.page-werbepartner .list-item > .dot::before,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
    left: 4px !important;
    top: 4px !important;
    width: 18px !important;
    height: 18px !important;
    background-size: 10px 10px !important;
  }
}

/* FINAL CORRECTION: Standortpartner + Werbepartner exactly match Umsetzung bullet proportions */
body.page-standortpartner .list-item,
body.page-werbepartner .list-item,
html[data-theme="light"] body.page-standortpartner .list-item,
html[data-theme="light"] body.page-werbepartner .list-item,
html[data-theme="dark"] body.page-standortpartner .list-item,
html[data-theme="dark"] body.page-werbepartner .list-item {
  gap: 14px !important;
}

body.page-standortpartner .list-item > .dot,
body.page-werbepartner .list-item > .dot,
html[data-theme="light"] body.page-standortpartner .list-item > .dot,
html[data-theme="light"] body.page-werbepartner .list-item > .dot,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
  position: relative !important;
  display: inline-block !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  flex: 0 0 28px !important;
  margin: 0.05em 0 0 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 6px 16px rgba(43,31,17,0.12) !important;
  opacity: 1 !important;
  overflow: visible !important;
}

body.page-standortpartner .list-item > .dot::before,
body.page-werbepartner .list-item > .dot::before,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 5px !important;
  top: 5px !important;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.2 8.2 L6.35 11.35 L12.9 4.8' fill='none' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px 10px !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
  z-index: 2 !important;
  transform: none !important;
}

body.page-standortpartner .list-item > .dot::after,
body.page-werbepartner .list-item > .dot::after,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::after,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  body.page-standortpartner .list-item,
  body.page-werbepartner .list-item,
  html[data-theme="light"] body.page-standortpartner .list-item,
  html[data-theme="light"] body.page-werbepartner .list-item,
  html[data-theme="dark"] body.page-standortpartner .list-item,
  html[data-theme="dark"] body.page-werbepartner .list-item {
    gap: 14px !important;
  }

  body.page-standortpartner .list-item > .dot,
  body.page-werbepartner .list-item > .dot,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    flex-basis: 28px !important;
  }

  body.page-standortpartner .list-item > .dot::before,
  body.page-werbepartner .list-item > .dot::before,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
    left: 5px !important;
    top: 5px !important;
    width: 18px !important;
    height: 18px !important;
    background-size: 10px 10px !important;
  }
}

/* FINAL VISUAL HARMONIZATION: Standortpartner/Werbepartner bullets less dominant, same construction as Umsetzung */
body.page-standortpartner .list-item,
body.page-werbepartner .list-item,
html[data-theme="light"] body.page-standortpartner .list-item,
html[data-theme="light"] body.page-werbepartner .list-item,
html[data-theme="dark"] body.page-standortpartner .list-item,
html[data-theme="dark"] body.page-werbepartner .list-item {
  gap: 12px !important;
  align-items: flex-start !important;
}

body.page-standortpartner .list-item > .dot,
body.page-werbepartner .list-item > .dot,
html[data-theme="light"] body.page-standortpartner .list-item > .dot,
html[data-theme="light"] body.page-werbepartner .list-item > .dot,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
  position: relative !important;
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  flex: 0 0 24px !important;
  margin: 0.12em 0 0 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  background: #f6efe5 !important;
  border: 2px solid #c79b59 !important;
  box-shadow: 0 5px 13px rgba(43,31,17,0.11) !important;
  opacity: 1 !important;
  overflow: visible !important;
}

body.page-standortpartner .list-item > .dot::before,
body.page-werbepartner .list-item > .dot::before,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
  content: "" !important;
  position: absolute !important;
  left: 4px !important;
  top: 4px !important;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  display: block !important;
  background-color: #1b1b1b !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.2 8.2 L6.35 11.35 L12.9 4.8' fill='none' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='square' stroke-linejoin='miter'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 9px 9px !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  opacity: 1 !important;
  z-index: 2 !important;
  transform: none !important;
}

body.page-standortpartner .list-item > .dot::after,
body.page-werbepartner .list-item > .dot::after,
html[data-theme="light"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="light"] body.page-werbepartner .list-item > .dot::after,
html[data-theme="dark"] body.page-standortpartner .list-item > .dot::after,
html[data-theme="dark"] body.page-werbepartner .list-item > .dot::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  body.page-standortpartner .list-item,
  body.page-werbepartner .list-item,
  html[data-theme="light"] body.page-standortpartner .list-item,
  html[data-theme="light"] body.page-werbepartner .list-item,
  html[data-theme="dark"] body.page-standortpartner .list-item,
  html[data-theme="dark"] body.page-werbepartner .list-item {
    gap: 12px !important;
  }

  body.page-standortpartner .list-item > .dot,
  body.page-werbepartner .list-item > .dot,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    flex-basis: 24px !important;
  }

  body.page-standortpartner .list-item > .dot::before,
  body.page-werbepartner .list-item > .dot::before,
  html[data-theme="light"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="light"] body.page-werbepartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-standortpartner .list-item > .dot::before,
  html[data-theme="dark"] body.page-werbepartner .list-item > .dot::before {
    left: 4px !important;
    top: 4px !important;
    width: 16px !important;
    height: 16px !important;
    background-size: 9px 9px !important;
  }
}

/* =========================================================
   FINAL BULLET SYSTEM 2026-05-01
   Light mode: dezenter gerader goldener Check ohne Kreis.
   Dark mode: ursprüngliche schlichte Bullet-Darstellung wiederhergestellt.
   ========================================================= */

/* DARK MODE RESET: restore original simple white dots for span.dot bullets */
html[data-theme="dark"] body .list-item > span.dot,
html[data-theme="dark"] body.page-standortpartner .list-item > span.dot,
html[data-theme="dark"] body.page-werbepartner .list-item > span.dot,
html[data-theme="dark"] body.page-umsetzung .list-item > span.dot {
  position: static !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  min-width: 9px !important;
  flex: 0 0 9px !important;
  margin-top: 9px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}
html[data-theme="dark"] body .list-item > span.dot::before,
html[data-theme="dark"] body .list-item > span.dot::after,
html[data-theme="dark"] body.page-standortpartner .list-item > span.dot::before,
html[data-theme="dark"] body.page-standortpartner .list-item > span.dot::after,
html[data-theme="dark"] body.page-werbepartner .list-item > span.dot::before,
html[data-theme="dark"] body.page-werbepartner .list-item > span.dot::after,
html[data-theme="dark"] body.page-umsetzung .list-item > span.dot::before,
html[data-theme="dark"] body.page-umsetzung .list-item > span.dot::after {
  content: none !important;
  display: none !important;
}

/* DARK MODE RESET: classic list bullets for clean-list */
html[data-theme="dark"] body ul.clean-list {
  list-style: disc outside !important;
  padding-left: 20px !important;
  margin: 0 !important;
}
html[data-theme="dark"] body ul.clean-list li {
  position: static !important;
  padding-left: 0 !important;
  min-height: 0 !important;
  margin: 10px 0 !important;
}
html[data-theme="dark"] body ul.clean-list li::before,
html[data-theme="dark"] body ul.clean-list li::after {
  content: none !important;
  display: none !important;
}

/* DARK MODE RESET: storyboard check list back to original subtle circle checks */
html[data-theme="dark"] body .storyboard-conversion-list {
  list-style: none !important;
  padding: 0 !important;
}
html[data-theme="dark"] body .storyboard-conversion-list li {
  position: relative !important;
  padding-left: 28px !important;
  min-height: 0 !important;
}
html[data-theme="dark"] body .storyboard-conversion-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: none !important;
}
html[data-theme="dark"] body .storyboard-conversion-list li::after {
  content: none !important;
  display: none !important;
}

/* DARK MODE RESET: responsibility lists back to small text-color dot */
html[data-theme="dark"] body .responsibility-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
html[data-theme="dark"] body .responsibility-content li {
  position: relative !important;
  padding-left: 18px !important;
  min-height: 0 !important;
}
html[data-theme="dark"] body .responsibility-content li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.62em !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  border: none !important;
  opacity: 0.55 !important;
  box-shadow: none !important;
}
html[data-theme="dark"] body .responsibility-content li::after {
  content: none !important;
  display: none !important;
}

/* LIGHT MODE: simple premium gold check for span.dot bullet rows */
html[data-theme="light"] body .list-item,
html[data-theme="light"] body.page-standortpartner .list-item,
html[data-theme="light"] body.page-werbepartner .list-item,
html[data-theme="light"] body.page-umsetzung .list-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 13px !important;
}
html[data-theme="light"] body .list-item > span.dot,
html[data-theme="light"] body.page-standortpartner .list-item > span.dot,
html[data-theme="light"] body.page-werbepartner .list-item > span.dot,
html[data-theme="light"] body.page-umsetzung .list-item > span.dot {
  position: relative !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex: 0 0 18px !important;
  margin: 0.24em 0 0 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}
html[data-theme="light"] body .list-item > span.dot::before,
html[data-theme="light"] body.page-standortpartner .list-item > span.dot::before,
html[data-theme="light"] body.page-werbepartner .list-item > span.dot::before,
html[data-theme="light"] body.page-umsetzung .list-item > span.dot::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.2 8.2 L6.35 11.35 L12.9 4.8' fill='none' stroke='%23a67835' stroke-width='2.35' stroke-linecap='square' stroke-linejoin='miter'/></svg>") center/15px 15px no-repeat !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
html[data-theme="light"] body .list-item > span.dot::after,
html[data-theme="light"] body.page-standortpartner .list-item > span.dot::after,
html[data-theme="light"] body.page-werbepartner .list-item > span.dot::after,
html[data-theme="light"] body.page-umsetzung .list-item > span.dot::after {
  content: none !important;
  display: none !important;
}

/* LIGHT MODE: simple premium gold check for semantic lists */
html[data-theme="light"] body ul.clean-list,
html[data-theme="light"] body .storyboard-conversion-list,
html[data-theme="light"] body .responsibility-content ul {
  list-style: none !important;
  padding-left: 0 !important;
}
html[data-theme="light"] body ul.clean-list li,
html[data-theme="light"] body .storyboard-conversion-list li,
html[data-theme="light"] body .responsibility-content li {
  position: relative !important;
  padding-left: 28px !important;
  min-height: 0 !important;
}
html[data-theme="light"] body ul.clean-list li::before,
html[data-theme="light"] body .storyboard-conversion-list li::before,
html[data-theme="light"] body .responsibility-content li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.22em !important;
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.2 8.2 L6.35 11.35 L12.9 4.8' fill='none' stroke='%23a67835' stroke-width='2.35' stroke-linecap='square' stroke-linejoin='miter'/></svg>") center/15px 15px no-repeat !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}
html[data-theme="light"] body ul.clean-list li::after,
html[data-theme="light"] body .storyboard-conversion-list li::after,
html[data-theme="light"] body .responsibility-content li::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 767px) {
  html[data-theme="light"] body .list-item,
  html[data-theme="light"] body.page-standortpartner .list-item,
  html[data-theme="light"] body.page-werbepartner .list-item,
  html[data-theme="light"] body.page-umsetzung .list-item {
    gap: 12px !important;
  }
}

/* QA 2026-05-01: Remove light-mode contact icons from the "Über mich" / "About" text card.
   The pseudo icons are only intended for direct contact rows, not for narrative profile text. */
html[data-theme="light"] body .about-contact-card p,
html[data-theme="light"] body .about-contact-card p:not(.contact-note),
html[data-theme="light"] body .about-contact-card-single p,
html[data-theme="light"] body .about-contact-card-single p:not(.contact-note) {
  padding-left: 0 !important;
  min-height: 0 !important;
}
html[data-theme="light"] body .about-contact-card p::before,
html[data-theme="light"] body .about-contact-card p::after,
html[data-theme="light"] body .about-contact-card p:not(.contact-note)::before,
html[data-theme="light"] body .about-contact-card p:not(.contact-note)::after,
html[data-theme="light"] body .about-contact-card-single p::before,
html[data-theme="light"] body .about-contact-card-single p::after,
html[data-theme="light"] body .about-contact-card-single p:not(.contact-note)::before,
html[data-theme="light"] body .about-contact-card-single p:not(.contact-note)::after {
  content: none !important;
  display: none !important;
}

/* QA 2026-05-01: Final mobile fix for narrative "Über mich" / "About" cards.
   These paragraphs are running text, not contact rows. They must not inherit
   the light-mode icon/flex layout from the contact information cards. */
html[data-theme="light"] body .about-contact-card-single p,
html[data-theme="light"] body .about-contact-card-single p:not(.contact-note),
html[data-theme="light"] body .about-contact-card-single p:first-of-type,
html[data-theme="light"] body .about-contact-card-single p:nth-of-type(2),
html[data-theme="light"] body .about-contact-card-single p:nth-of-type(3) {
  display: block !important;
  width: auto !important;
  max-width: 760px !important;
  min-height: 0 !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  font-size: clamp(17px, 2.1vw, 20px) !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  color: #2f2b25 !important;
}

html[data-theme="light"] body .about-contact-card-single p::before,
html[data-theme="light"] body .about-contact-card-single p::after,
html[data-theme="light"] body .about-contact-card-single p:not(.contact-note)::before,
html[data-theme="light"] body .about-contact-card-single p:not(.contact-note)::after,
html[data-theme="light"] body .about-contact-card-single p:first-of-type::before,
html[data-theme="light"] body .about-contact-card-single p:nth-of-type(2)::before,
html[data-theme="light"] body .about-contact-card-single p:nth-of-type(3)::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  flex: 0 0 0 !important;
}

@media (max-width: 700px) {
  html[data-theme="light"] body .about-contact-card-single p,
  html[data-theme="light"] body .about-contact-card-single p:not(.contact-note) {
    max-width: none !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
    margin-top: 20px !important;
  }
}

/* QA 2026-05-01: Rollenmatrix / Projektverantwortung on Umsetzung page
   Back to simple bulletpoints. Removes the oversized gold check badges that overlap text on mobile. */
body.page-umsetzung .responsibility-content ul {
  list-style: disc !important;
  list-style-position: outside !important;
  padding-left: 1.15rem !important;
  margin: 24px 0 0 !important;
}

body.page-umsetzung .responsibility-content li,
html[data-theme="light"] body.page-umsetzung .responsibility-content li,
html[data-theme="dark"] body.page-umsetzung .responsibility-content li {
  position: static !important;
  display: list-item !important;
  padding-left: 0 !important;
  min-height: 0 !important;
}

body.page-umsetzung .responsibility-content li::before,
body.page-umsetzung .responsibility-content li::after,
html[data-theme="light"] body.page-umsetzung .responsibility-content li::before,
html[data-theme="light"] body.page-umsetzung .responsibility-content li::after,
html[data-theme="dark"] body.page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] body.page-umsetzung .responsibility-content li::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.page-umsetzung .responsibility-content li::marker,
html[data-theme="dark"] body.page-umsetzung .responsibility-content li::marker {
  color: rgba(255,255,255,0.92) !important;
  font-size: 0.78em !important;
}

html[data-theme="light"] body.page-umsetzung .responsibility-content li::marker {
  color: #2f2b25 !important;
}

@media (max-width: 767px) {
  body.page-umsetzung .responsibility-content ul {
    padding-left: 1.05rem !important;
    margin-top: 22px !important;
  }

  body.page-umsetzung .responsibility-content li,
  html[data-theme="light"] body.page-umsetzung .responsibility-content li,
  html[data-theme="dark"] body.page-umsetzung .responsibility-content li {
    padding-left: 0 !important;
    min-height: 0 !important;
  }
}

/* ===== 2026-05-01: QA fix - Startseite Orientierung-Container im Dark Mode vereinheitlichen =====
   Der Orientierungsblock wirkte mobil heller und runder als die übrigen dunklen Karten.
   Diese Regel gleicht den äußeren Container optisch an das bestehende Card-System an,
   ohne den Light Mode zu verändern. */
html:not([data-theme="light"]) .start-overview-shell {
  border-radius: var(--radius) !important;
  border-color: var(--line) !important;
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(3,3,3,0.99) 100%) !important;
  box-shadow: var(--shadow) !important;
}

html:not([data-theme="light"]) .start-overview-shell::before {
  background: none !important;
}

@media (max-width: 760px) {
  html:not([data-theme="light"]) .start-overview-shell {
    border-radius: var(--radius) !important;
  }
}

/* ===== Startseite: Hero-Badge zweizeilig sauber umbrechen ===== */
.home-intro-full .hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  padding: 14px 22px;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}

.home-intro-full .hero-badge span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .home-intro-full .hero-badge {
    width: 100%;
    padding: 14px 16px;
    gap: 10px;
    font-size: clamp(9.5px, 2.65vw, 12.5px);
    letter-spacing: clamp(0.065em, 0.24vw, 0.12em);
  }
}

@media (max-width: 360px) {
  .home-intro-full .hero-badge {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 9.3px;
    letter-spacing: 0.055em;
  }
}

/* ===== 2026-05-01: QA fix - Startseite CTA-Container im Dark Mode vereinheitlicht =====
   Der Container "Nächster Schritt" unter dem Storyboard wirkte im Dark Mode durch den
   violetten Verlauf anders als die übrigen dunklen Premium-Container. Deshalb wird er
   im Dark Mode bewusst neutralisiert und optisch an die restlichen schwarzen Karten angepasst. */
html[data-theme="dark"] body .storyboard-conversion-box {
  background:
    linear-gradient(180deg, rgba(12,12,12,0.98), rgba(5,5,5,0.99)) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22) !important;
}

html[data-theme="dark"] body .storyboard-conversion-box h3,
html[data-theme="dark"] body .storyboard-conversion-box p,
html[data-theme="dark"] body .storyboard-conversion-box li {
  color: inherit;
}

html[data-theme="dark"] body .storyboard-conversion-box .eyebrow {
  color: rgba(255,255,255,0.68) !important;
}

/* ===== 2026-05-01: Premium Scroll-Reveals für Sektionen und Kacheln =====
   Ruhige, hochwertige Einblendung beim Scrollen. Ohne JavaScript bleiben alle Inhalte sichtbar. */
.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.992);
  filter: blur(2px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 75ms);
  will-change: opacity, transform, filter;
}

.reveal-ready .scroll-reveal-section {
  transform: translate3d(0, 28px, 0) scale(0.996);
}

.reveal-ready .scroll-reveal-item {
  transform: translate3d(0, 20px, 0) scale(0.99);
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-ready .scroll-reveal.is-visible {
  will-change: auto;
}

@media (max-width: 760px) {
  .reveal-ready .scroll-reveal {
    transform: translate3d(0, 18px, 0) scale(0.996);
    filter: none;
    transition-duration: 680ms;
    transition-delay: calc(var(--reveal-delay, 0) * 45ms);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .reveal-ready .scroll-reveal,
  .reveal-ready .scroll-reveal-section,
  .reveal-ready .scroll-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ===== 2026-05-01: Premium-Hover-Effekte für Karten =====
   Dezente Desktop-Veredelung: leichte Anhebung, hochwertiger Schatten,
   feinere Border und ruhiger Lichtschimmer. Auf Touch-Geräten deaktiviert. */
@media (hover: hover) and (pointer: fine) {
  :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  ) {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
      background 260ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  ) > * {
    position: relative;
    z-index: 1;
  }

  :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  )::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    background:
      radial-gradient(circle at 18% 0%, rgba(255,255,255,0.14), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%, rgba(255,255,255,0.04));
    transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  ):hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(255,255,255,0.24);
    box-shadow: 0 22px 48px rgba(0,0,0,0.32);
  }

  :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  ):hover::after {
    opacity: 1;
  }

  html[data-theme="light"] :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  ):hover {
    border-color: rgba(20,20,20,0.18);
    box-shadow: 0 22px 46px rgba(20,20,20,0.14);
  }

  html[data-theme="light"] :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  )::after {
    background:
      radial-gradient(circle at 18% 0%, rgba(255,255,255,0.9), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,0.56), transparent 44%, rgba(0,0,0,0.025));
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .card,
    .kpi,
    .cta-box,
    .proof-box,
    .logo-panel,
    .logo-hero-box,
    .usecase-hub-card,
    .usecase-section-card,
    .profile-card,
    .contact-card-primary,
    .about-portrait-card,
    .about-contact-card
  ) {
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
  }
}

/* QA correction: Umsetzung page lists without decorative bullet icons.
   The numbered circles/kickers are sufficient as visual anchors. */
.page-umsetzung ul.clean-list,
.page-umsetzung .partner-list,
.page-umsetzung .responsibility-content ul,
.page-umsetzung .storyboard-conversion-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.page-umsetzung ul.clean-list li,
.page-umsetzung .partner-list li,
.page-umsetzung .responsibility-content li,
.page-umsetzung .storyboard-conversion-list li,
html[data-theme="light"] .page-umsetzung ul.clean-list li,
html[data-theme="light"] .page-umsetzung .partner-list li,
html[data-theme="light"] .page-umsetzung .responsibility-content li,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li,
html[data-theme="dark"] .page-umsetzung ul.clean-list li,
html[data-theme="dark"] .page-umsetzung .partner-list li,
html[data-theme="dark"] .page-umsetzung .responsibility-content li,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li {
  padding-left: 0 !important;
  min-height: 0 !important;
}

.page-umsetzung ul.clean-list li::before,
.page-umsetzung ul.clean-list li::after,
.page-umsetzung .partner-list li::before,
.page-umsetzung .partner-list li::after,
.page-umsetzung .responsibility-content li::before,
.page-umsetzung .responsibility-content li::after,
.page-umsetzung .storyboard-conversion-list li::before,
.page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="light"] .page-umsetzung ul.clean-list li::before,
html[data-theme="light"] .page-umsetzung ul.clean-list li::after,
html[data-theme="light"] .page-umsetzung .partner-list li::before,
html[data-theme="light"] .page-umsetzung .partner-list li::after,
html[data-theme="light"] .page-umsetzung .responsibility-content li::before,
html[data-theme="light"] .page-umsetzung .responsibility-content li::after,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="light"] .page-umsetzung .storyboard-conversion-list li::after,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::before,
html[data-theme="dark"] .page-umsetzung ul.clean-list li::after,
html[data-theme="dark"] .page-umsetzung .partner-list li::before,
html[data-theme="dark"] .page-umsetzung .partner-list li::after,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::before,
html[data-theme="dark"] .page-umsetzung .responsibility-content li::after,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::before,
html[data-theme="dark"] .page-umsetzung .storyboard-conversion-list li::after {
  content: none !important;
  display: none !important;
}


/* ===== PREMIUM EFFECT: STICKY GLASS NAVIGATION - DIRECT HEADER VERSION ===== */
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #000 !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22) !important;
  transition: background-color 260ms ease, box-shadow 260ms ease, border-color 260ms ease, padding 260ms ease !important;
}

header .site-header,
header .header-shell,
header .header-main,
header .header-top,
header .desktop-nav,
header .header-actions,
header .logo-mini,
header .menu-toggle,
header .header-actions .btn {
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, padding 260ms ease, gap 260ms ease, min-height 260ms ease, transform 260ms ease, border-radius 260ms ease, backdrop-filter 260ms ease, -webkit-backdrop-filter 260ms ease !important;
}

header.umg-glass-nav {
  isolation: isolate !important;
}

header.umg-glass-nav.is-scrolled {
  background: rgba(0,0,0,0.30) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.18) !important;
  backdrop-filter: blur(22px) saturate(1.18) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.34) !important;
}

header.umg-glass-nav.is-scrolled .site-header {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

header.umg-glass-nav.is-scrolled .header-shell {
  position: relative !important;
  overflow: hidden !important;
  padding: 15px 20px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055)) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), inset 0 -1px 0 rgba(255,255,255,0.055), 0 18px 42px rgba(0,0,0,0.26) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.16) !important;
  backdrop-filter: blur(20px) saturate(1.16) !important;
}

header.umg-glass-nav.is-scrolled .header-shell::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  top: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), transparent) !important;
  pointer-events: none !important;
}

header.umg-glass-nav.is-scrolled .header-main,
header.umg-glass-nav.is-scrolled .header-top,
header.umg-glass-nav.is-scrolled .desktop-nav,
header.umg-glass-nav.is-scrolled .header-actions,
header.umg-glass-nav.is-scrolled .brand-wrap {
  background: transparent !important;
}

header.umg-glass-nav.is-scrolled .logo-mini {
  transform: scale(0.93) !important;
  transform-origin: left center !important;
}

header.umg-glass-nav.is-scrolled .desktop-nav {
  gap: 18px !important;
}

header.umg-glass-nav.is-scrolled .header-actions .btn {
  min-height: 42px !important;
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}

html[data-theme="light"] header.umg-glass-nav.is-scrolled {
  background: rgba(246,244,239,0.38) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.12) !important;
  backdrop-filter: blur(22px) saturate(1.12) !important;
  border-bottom: 1px solid rgba(20,20,20,0.08) !important;
  box-shadow: 0 18px 38px rgba(28,24,18,0.12) !important;
}

html[data-theme="light"] header.umg-glass-nav.is-scrolled .header-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.56)) !important;
  border-color: rgba(20,20,20,0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), inset 0 -1px 0 rgba(255,255,255,0.38), 0 16px 34px rgba(28,24,18,0.12) !important;
}

html[data-theme="light"] header.umg-glass-nav.is-scrolled .header-shell::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent) !important;
}

@media (max-width: 700px) {
  header.umg-glass-nav.is-scrolled .site-header {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  header.umg-glass-nav.is-scrolled .header-shell {
    padding: 10px 12px !important;
    border-radius: 18px !important;
  }
  header.umg-glass-nav.is-scrolled .logo-mini {
    transform: scale(0.92) !important;
  }
  header.umg-glass-nav.is-scrolled .menu-toggle {
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.24) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  header,
  header .site-header,
  header .header-shell,
  header .header-main,
  header .header-top,
  header .desktop-nav,
  header .header-actions,
  header .logo-mini,
  header .menu-toggle,
  header .header-actions .btn {
    transition: none !important;
  }
}
