/* ============================================
   TYPOGRAPHY — Global Font Import
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/* ============================================
   GLOBAL TOKENS / RESET
============================================ */
/* ============================================================
   FLUID SCALING SYSTEM — wie Apple.de / Stripe.com
   Schriftgrößen & Abstände wachsen proportional mit dem
   Bildschirm. Funktioniert auf jedem Gerät automatisch.
   ============================================================ */
:root{
  /* Fluid Typografie — Basis 1470px → 1920px (Faktor 1.306×) */
  --fs-xs:   clamp(11px,  1.01vw,  19px);   /* ~15px bei 1470px */
  --fs-sm:   clamp(13px,  1.16vw,  22px);   /* ~17px bei 1470px */
  --fs-base: clamp(14px,  1.22vw,  24px);   /* ~18px bei 1470px */
  --fs-md:   clamp(16px,  1.45vw,  28px);   /* ~21px bei 1470px */
  --fs-lg:   clamp(18px,  1.88vw,  36px);   /* ~28px bei 1470px */
  --fs-xl:   clamp(22px,  2.46vw,  47px);   /* ~36px bei 1470px */
  --fs-2xl:  clamp(26px,  3.18vw,  61px);   /* ~47px bei 1470px */
  --fs-3xl:  clamp(32px,  4.05vw,  78px);   /* ~60px bei 1470px */
  --fs-4xl:  clamp(40px,  5.78vw, 111px);   /* ~85px bei 1470px */

  /* Fluid Abstände */
  --space-xs:  clamp(0.5rem,  0.4rem + 0.5vw,  0.75rem);
  --space-sm:  clamp(0.75rem, 0.6rem + 0.75vw, 1.125rem);
  --space-md:  clamp(1rem,    0.8rem + 1vw,    1.5rem);
  --space-lg:  clamp(1.5rem,  1rem   + 2.5vw,  3rem);
  --space-xl:  clamp(2.5rem,  1.5rem + 5vw,    6rem);
  --space-2xl: clamp(4rem,    2.5rem + 7.5vw,  10rem);

  color-scheme: light;
  color-scheme: only light;
  --max-w: 1240px;
  --pad-x: clamp(16px, 4vw, 40px);

  --text: #fff;
  --muted:#ffffffb3;
  --accent:#4a7fc1;          /* Adams Strategy Blau */
  --accent-teal:#7ab8c8;     /* Adams Strategy Türkis */
  --brand-navy:#252544;      /* Adams Strategy Marine */

  --glass:#0000004d;         
  --glass-strong:#00000080;   
  --radius: 14px;

  /* Hero readability (0..1) */
  --hero-scrim: 0;            /* increase to 0.2–0.35 if needed */

  /* Tall sticky hero height (only used when .hero.sticky is set) */
  --hero-tall: 180vh;
   --fx-distance: 16px;
  --fx-pad: 12px;
  --fx-duration: 520ms;
  --fx-ease: cubic-bezier(.2,.7,.2,1);
}




*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0 }
html{
  /* Fluid base — 14px auf kleinen, 17px bei 1470px, 22px bei 1920px */
  font-size: clamp(14px, 1.157vw, 22px);
}
html,body{
  color-scheme: light;
  color-scheme: only light;
  height:100% }
body{
  font-family: 'Questrial', ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial;
  font-size: var(--fs-base);
  color:var(--text); background:#040628;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img,svg,video,canvas{ display:block; max-width:100% }
a{ color:inherit; text-decoration:none }
.container{ margin-inline:auto; padding-inline:var(--pad-x) ; width:100%; align-items: center; justify-content: center;}

.hero{
  position:relative; isolation:isolate;
   height: max-content; /* safe mobile vh */
  overflow:hidden; touch-action:none;
}

.scroll-fx{
  opacity: 0.001;
  transform: translate3d(calc(var(--dir,1) * var(--fx-distance)), 8px, 0);
  padding-inline-start: var(--fx-pad);
  filter: blur(1.5px);
  transition:
    opacity var(--fx-duration) var(--fx-ease) var(--d,0ms),
    transform var(--fx-duration) var(--fx-ease) var(--d,0ms),
    padding-inline-start var(--fx-duration) var(--fx-ease) var(--d,0ms),
    filter var(--fx-duration) var(--fx-ease) var(--d,0ms);
  will-change: transform, opacity;
}

.scroll-fx.in{
  opacity: 1;
  transform: translate3d(0,0,0);
  padding-inline-start: 0;
  filter: none;
}

/* Opt-out for any element you don’t want animated */
.no-scroll-fx{ opacity: 1 !important; transform: none !important; filter: none !important; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .scroll-fx,
  .scroll-fx.in{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    padding-inline-start: 0 !important;
    filter: none !important;
  }
}
main{
  background: transparent;
  /* Kein z-index nötig — Aurora-Canvas (z=10, pointer-events:none) liegt darüber */
}
/* body liefert Basisfarbe — mp.css override verhindern */
body{ background: #040628 !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   DARK-MODE UNIFORMIERUNG — alle Seiten sehen aus wie die Startseite
   Überschreibt page-spezifische helle Hintergründe in industries/
   financial-industry/versicherungsmakler und anderen Unterseiten
   ═══════════════════════════════════════════════════════════════════════════ */

/* Bulby-Kreise: weiß → dunkles Navy */
.bulby .bulby-btn {
  background: rgba(4, 18, 47, 0.80) !important;
  color: #ffffff !important;
  border-color: rgba(74, 127, 193, 0.45) !important;
  box-shadow: 0 0 0 0 transparent, 0 12px 40px rgba(0,0,0,.35) !important;
}
.bulby.is-active .bulby-btn,
.bulby .bulby-btn:focus-visible {
  border-color: #4a7fc1 !important;
  box-shadow: 0 0 0 6px rgba(74,127,193,.25), 0 20px 60px rgba(74,127,193,.2) !important;
}

/* Bulby-Beschriftungs-Box */
.bulby-caption {
  background: rgba(4, 18, 47, 0.72) !important;
  border-color: rgba(122, 184, 200, 0.25) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
.bulby-caption * { color: #ffffff !important; }

/* Karten (cards-group .box) */
.cards-group .box {
  background: rgba(4, 18, 47, 0.65) !important;
  background-color: rgba(4, 18, 47, 0.65) !important;
  border-color: rgba(122, 184, 200, 0.20) !important;
  color: #ffffff !important;
}
.cards-group .box * { color: #ffffff !important; }

/* Content-box (glassmorphism cards) */
.cards-group .content-box {
  background: rgba(4, 18, 47, 0.60) !important;
  color: #ffffff !important;
}

/* Footer-Textfarbe auf Seiten ohne dunklen Hero korrigieren */
.dtrail-head .footer_link-label,
.dtrail-head .footer_sub-1,
.dtrail-head .footer-item_sub-wrap span {
  color: #ffffff !important;
}

/* Allgemeine section/div Weiss-Hintergründe auf Unterseiten */
section, .section, article {
  background-color: transparent;
}

/* Info-Grid und ähnliche Wrapper falls weiß */
.info-grid, .info-section, .content-section {
  background: transparent !important;
}

/* Knowledge-Seite: .bulb Orbs (weiß → dunkles Navy-Glühen) */
.bulb {
  background:
    radial-gradient(circle at 50% 50%, rgba(4,18,47,0.92) 0 55%, rgba(30,60,120,0.80) 68%, rgba(74,127,193,0.55) 78%, rgba(74,127,193,0.20) 88%, transparent 100%),
    radial-gradient(120% 120% at 30% 30%, rgba(46,91,255,.20), transparent 50%),
    radial-gradient(120% 120% at 70% 70%, rgba(122,166,255,.18), transparent 55%) !important;
  box-shadow: inset 0 0 0 1px rgba(74,127,193,.55), 0 16px 40px rgba(4,18,47,.5) !important;
}
.bulb-btn {
  color: #ffffff !important;
}
.bulb-caption {
  background: rgba(4, 18, 47, 0.72) !important;
  border-color: rgba(122, 184, 200, 0.25) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
.bulb-caption * { color: #ffffff !important; }

/* Blog-Karten (carousel-card) — weißer Hintergrund → dunkles Navy */
.carousel-card {
  background: rgba(4, 18, 47, 0.80) !important;
  border: 1px solid rgba(74, 127, 193, 0.25) !important;
  box-shadow: 0 13px 20px rgba(0,0,0,.35) !important;
}
.carousel-card__info {
  background: rgba(4, 18, 47, 0.90) !important;
  color: #ffffff !important;
}
.carousel-card__info * { color: #ffffff !important; }

/* Flip-Karten Rückseite */
.flip-card .details {
  background: rgba(4, 18, 47, 0.90) !important;
  color: #ffffff !important;
}
.flip-card .details * { color: #ffffff !important; }

/* Blog-Post related-articles Karten (.card class) */
.card {
  background-color: rgba(4, 18, 47, 0.80) !important;
  border: 1px solid rgba(74, 127, 193, 0.20) !important;
  box-shadow: 0 13px 20px rgba(0,0,0,.30) !important;
}
.card__info {
  background-color: rgba(4, 18, 47, 0.90) !important;
  color: #ffffff !important;
}
.card__info * { color: #ffffff !important; }

/* Service-Seite: Mast/Hero Bereich bereits dunkel — kein Eingriff nötig */

/* Verbindungsleiste (bulbys-row::before gradient) — bleibt blaues Gradient */
section{ padding:0 0 }
.section__title{
  font-size:clamp(22px, 3.5vw, 38px);
  font-weight:800; margin-bottom:20px
}
.muted{ color:#bfc4cf }

.grid{ display:grid; gap:22px; grid-template-columns:repeat(12, 1fr) }
.col-6{ grid-column:span 6 }
.col-4{ grid-column:span 4 }
@media (max-width: 900px){
  .grid{ grid-template-columns:1fr }
  .col-6,.col-4{ grid-column:span 1 }
}

/* For any spacer area you want after the hero (optional) */
.footer-spacer{ height:40vh }



:root{
  --glass: rgba(0,0,0,.28);
  --glass-strong: rgba(0,0,0,.45);
  --pill-h: clamp(44px, 4vw, 62px);     /* fluid: 44px klein → 62px groß */
  --header-h: clamp(54px, 5.5vw, 80px); /* fluid: exakt bis Pill-Unterkante */
  --brand-top: clamp(10px, 1.5vw, 18px);
  --brand-h:   clamp(44px, 4vw, 64px);
}

/* =========== Header =========== */
.header{
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 120;
  pointer-events: none; /* only chrome/brand/hamburger are interactive */
  background: #040628; /* selbe Farbe wie Seite — wirkt unsichtbar, maskiert Text */
}
.header .brand{
  position: absolute; left: clamp(40px, 5vw, 90px);
  top: var(--brand-top);
  height: var(--brand-h);
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700; letter-spacing: .12em;
  pointer-events: all; text-decoration: none;
}
.brand .mark{ position: relative; width: 32px; height: 32px; display: inline-block; }
.brand .mark::before,
.brand .mark::after{
  content:""; position:absolute; inset:0; border:2px solid #fff; transform: rotate(45deg);
  border-radius: 2px;
}
.brand__text{ font-size: 14px; }

/* Glass nav pill — kompakt, rechts-bündig, alle Elemente zusammen */
.header .chrome{
  pointer-events: all;
  position: absolute;
  left: clamp(318px, 22vw, 335px); /* ausbalanciert: DE nah an Beratung */
  right: clamp(6px, 0.5vw, 12px);
  top: var(--brand-top);
  height: var(--pill-h);
  display: flex; align-items: center; gap: 4px; padding: 0 12px;
  border-radius: 4px;
  border-left: 2px solid var(--accent-teal);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(10px);
  overflow: visible;
}
/* Püppchen — ganz rechts im Chrome-Flow */
.header .a11y-wrap {
  flex-shrink: 0;
  position: relative;
  top: auto;
  transform: none;
  z-index: 130;
  margin-left: auto;
}
.header.scrolled .chrome{ background: #040628; }

.nav{ list-style: none; display: flex; gap: clamp(2px, 0.5vw, 10px); height: 100%; align-items: center; flex-shrink: 0; }
/* Matching-Pioneers-Item nicht stauchen — enthält Text + Logo + Text */
.nav li:has(img) { flex-shrink: 0; }
.nav a{
  display: flex; align-items: center; height: calc(var(--pill-h) - 10px);
  padding: 0 clamp(6px, 0.7vw, 14px); border-radius: 4px;
  border-bottom: 2px solid rgba(74,127,193,.5);
  color: var(--text); text-decoration: none;
  font-size: clamp(13px, 1.15vw, 18px); white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.nav a:hover{
  color: #fff;
  background: rgba(74,127,193,.18);
  border-bottom: 2px solid #7ab8c8;
}
.nav a.is-active{ color: #fff; font-weight: 700; border-bottom: 2px solid #4a7fc1; }
/* Statische experience-blocks — konsistentes Layout */
.experience-block.no-scroll-fx{
  position: relative;
  z-index: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  padding: clamp(40px, 5vw, 64px) clamp(40px, 6vw, 120px) !important;
  margin-inline: 0 !important;
  text-align: center;
}
/* Innere Texte auf lesbare Breite begrenzen */
.experience-block.no-scroll-fx > h3,
.experience-block.no-scroll-fx > p{
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FLIESSTEXT — linksbündig, kein Blocksatz ===== */
.experience-block p,
.experience-block.no-scroll-fx > p,
.promise-text p,
.promise-item p,
.acc-body,
.acc-body p,
.info-copy,
.makeover-subtitle,
.why-kicker,
.step-box{
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
/* Fließtext global — einheitlich --fs-md */
.experience-block p,
.experience-block.no-scroll-fx > p,
.promise-item p {
  font-size: var(--fs-md) !important;
}

/* Überschrift: gleiche Größe wie info-title */
.experience-block.no-scroll-fx > h3{
  font-size: var(--fs-3xl) !important;
  font-weight: 800;
  margin-bottom: .8em;
}
/* Trennlinie — gleiche Breite wie info-row (nicht bis zum Rand) */
.experience-block.no-scroll-fx::before{
  content: "";
  position: absolute;
  top: 0;
  left: clamp(40px, 6vw, 120px);
  right: clamp(40px, 6vw, 120px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(122,184,200,.15) 0%,
    rgba(122,184,200,.55) 18%,
    rgba(122,184,200,.35) 65%,
    rgba(122,184,200,.08) 100%);
}

/* ===== ACCORDION — 6 Schritte ===== */
.accordion-steps{
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acc-item{
  border-radius: 14px;
  border: 1px solid rgba(122,184,200,.2);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.acc-item.acc-open,
.acc-item:hover{
  border-color: rgba(122,184,200,.5);
  background: rgba(18,28,80,.4);
}
.acc-btn{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1em 1.4em;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.acc-num{
  font-size: var(--fs-xl, clamp(1.375rem, 1.1rem + 1.4vw, 2.125rem));
  font-weight: 900;
  color: var(--accent-teal, #7ab8c8);
  min-width: 2.5rem;
  line-height: 1;
}
.acc-title{
  flex: 1;
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.3;
}
.acc-icon{
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent-teal, #7ab8c8);
  line-height: 1;
  transition: transform .3s ease;
  min-width: 1.5rem;
  text-align: center;
}
.acc-item.acc-open .acc-icon{
  transform: rotate(45deg);
}
.acc-body{
  padding: 0 1.4em 1.2em calc(2.5rem + 2.4em);
  color: rgba(255,255,255,.75);
  font-size: var(--fs-md);
  line-height: 1.65;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.acc-body p{ margin: 0 0 1em; }
.acc-link{ display: inline-flex; margin-top: .2em; }

/* ===== MAKEOVER Sektion (ersetzt why-smooth) ===== */
.makeover-section{
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 120px);
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.makeover-title{
  font-size: clamp(28px, 4.35vw, 84px);
  font-weight: 900;
  letter-spacing: .05em;
  margin: 0 0 1.2em;
  line-height: 1.1;
}
.makeover-kicker{
  font-size: clamp(16px, 1.5vw, 29px);
  color: rgba(255,255,255,.9);
  max-width: 700px;
  margin: 0.3em auto 2em;
  line-height: 1.5;
}
/* Kasten um Subtitle + Zahlen + Button */
.makeover-box{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(122,184,200,.3);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 4vw, 60px);
  max-width: 1100px;
  margin: 0 auto 3em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.makeover-subtitle{
  font-size: var(--fs-md);
  color: rgba(255,255,255,.7);
  max-width: 800px;
  margin: 0 auto 3em;
  line-height: 1.7;
  text-align: left;
}
.makeover-stats{
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  margin-bottom: 3em;
  flex-wrap: nowrap;
}
.makeover-stat h3{
  font-size: clamp(42px, 5.44vw, 105px);
  font-weight: 900;
  margin: 0 0 .15em;
  line-height: 1;
  color: #fff;
}
.makeover-stat p{
  font-size: clamp(13px, 1.09vw, 21px);
  color: rgba(255,255,255,.65);
  margin: 0;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.makeover-cta{
  margin: 0 auto;
  display: inline-flex;
  max-width: 340px;
}

/* Beratung CTA-Pill */
.nav-cta-pill{
  background: var(--accent-teal, #7ab8c8) !important;
  color: #040628 !important;
  border-radius: 999px !important;
  padding: 8px 24px !important;
  border-bottom: none !important;
  font-weight: 900 !important;
  transition: background .2s ease, box-shadow .2s ease;
}
.nav-cta-pill:hover{
  background: #9ed4e0 !important;
  box-shadow: 0 0 14px rgba(122,184,200,.6);
  border-bottom: none !important;
}

.only-desktop{ display: none; }

/* ── Nav Dropdown ──────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; user-select: none; }
.nav-dropdown-toggle .nav-arrow {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 3px;
  transition: transform .2s ease;
  vertical-align: middle;
}
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(4, 18, 47, 0.97);
  border: 1px solid rgba(122, 184, 200, .3);
  border-radius: 10px;
  padding: 6px 0;
  list-style: none;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

/* kleine Pfeilspitze oben */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 0;
  border-bottom: 6px solid rgba(122,184,200,.3);
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  height: auto !important;
  border-bottom: none !important;
  border-radius: 0 !important;
  font-size: clamp(13px, 1.1vw, 15px) !important;
  color: rgba(255,255,255,.85) !important;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-menu li a:hover {
  background: rgba(122,184,200,.12) !important;
  color: #fff !important;
  border-bottom: none !important;
}
.nav-dropdown-menu li a .dd-icon {
  font-size: 16px;
  color: rgba(122,184,200,.8);
  flex-shrink: 0;
}
.nav-dropdown-menu li:not(:last-child) a {
  border-bottom: 1px solid rgba(122,184,200,.08) !important;
}
/* Dropdown-Items aus Scroll-FX rausnehmen */
.nav-dropdown-menu,
.nav-dropdown-menu * {
  opacity: 1 !important;
  transform: none !important;
  transition: background .15s ease, color .15s ease !important;
}

/* ── Sprach-Switcher ─────────────────────────────────────────────── */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}
/* Desktop: im Chrome-Flow — 3px Abstand zur Beratung-Pill, a11y ganz rechts */
.header .lang-switch {
  position: relative;
  top: auto;
  right: auto;
  margin-left: 3px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: calc(var(--pill-h) - 10px);
  padding: 0 7px;
  border-radius: 4px;
  border: none;
  border-bottom: 2px solid rgba(74,127,193,.5);
  background: transparent;
  color: var(--text);
  font-size: clamp(12.5px, 0.9vw, 14px);
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s, border-color .2s;
  font-family: inherit;
}
.lang-btn:hover,
.lang-switch.open .lang-btn {
  color: #fff;
  background: rgba(74,127,193,.18);
  border-bottom-color: #7ab8c8;
}
.lang-btn svg { flex-shrink: 0; opacity: .75; }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  list-style: none;
  margin: 0; padding: 6px 0;
  background: rgba(4,18,47,0.97);
  border: 1px solid rgba(74,127,193,.40);
  border-radius: 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
  z-index: 500;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu li { list-style: none; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: clamp(12.5px, 1.05vw, 16px);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.lang-menu a:hover { background: rgba(74,127,193,.22); color: #fff; }
.lang-menu a.is-current {
  color: #fff;
  font-weight: 700;
  background: rgba(74,127,193,.15);
}
.lang-menu .lang-flag { font-size: clamp(14px, 1.1vw, 18px); line-height: 1; }

@media (max-width: 860px) {
  .lang-switch,
  .header .lang-switch { display: none; } /* Mobile: via hamburger menu */
}
/* ── Ende Sprach-Switcher ─────────────────────────────────────────── */

/* ===== Anchor + Bubble (unchanged look) ========================== */

.hamburger{
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 21px; background: rgba(0,0,0,.35); color:#fff;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
}
.brand{
  position: relative;
  display: inline-block;
  filter: none;
  transition: filter .35s ease;
}
.brand:hover{
  filter:
    drop-shadow(0 0 3px rgba(122,184,200,0.95))
    drop-shadow(0 0 8px rgba(122,184,200,0.65))
    drop-shadow(0 0 18px rgba(122,184,200,0.35))
    drop-shadow(0 2px 3px rgba(0,0,0,0.55));
}


.hamburger span{
  width: 18px; height: 2px; background: #fff; display:block;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(4px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-4px) rotate(-45deg); }

/* =========== Mobile menu =========== */
.mobile-menu{
  position: fixed; inset: 0; background: rgba(0,0,0,.48);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 110;
}
.mobile-menu.open{ opacity: 1; pointer-events: auto; }
.mobile-panel{
  position: absolute; left: 0; right: 0; bottom: 0;
  background: #111; color:#fff; border-top-left-radius: 16px; border-top-right-radius: 16px;
  padding: 7vh 6vw 9vh; transform: translateY(100%); transition: transform .28s ease;
}
.mobile-menu.open .mobile-panel{ transform: translateY(0); }
.mobile-panel nav ul{ list-style: none; display: grid; gap: 16px; font-size: 22px; }
.mobile-lang{ margin-top: 24px; display:flex; gap:10px; font-size: 16px; }

.icon-button{
  background: none; border: none; cursor: pointer;
}

#brandLogo{
  display: block;
  width: auto;
  height: 60px;
  max-width: min(260px, 100%);
  object-fit: contain;
}

html[lang="de"] .de-wordfit-target{
  min-width: 0;
  max-width: 100%;
  max-inline-size: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  line-break: auto;
}

html[lang="de"] .info-title.de-wordfit-target,
html[lang="de"] .why-title.de-wordfit-target,
html[lang="de"] .why-kicker.de-wordfit-target,
html[lang="de"] .service-heading.de-wordfit-target,
html[lang="de"] .industry-card h3.de-wordfit-target,
html[lang="de"] .step-box h2.de-wordfit-target,
html[lang="de"] .step-box h3.de-wordfit-target,
html[lang="de"] .content-box h2.de-wordfit-target,
html[lang="de"] .content-box h3.de-wordfit-target,
html[lang="de"] .bc-btn.de-wordfit-target,
html[lang="de"] .bc-time.de-wordfit-target,
html[lang="de"] .bulb-btn.de-wordfit-target,
html[lang="de"] .btn-chip.de-wordfit-target,
html[lang="de"] .eyebrow-link.de-wordfit-target,
html[lang="de"] .header .nav a.de-wordfit-target,
html[lang="de"] .mobile-panel a.de-wordfit-target{
  text-wrap: balance;
}

html[lang="de"] .de-wordfit-reduced{
  text-wrap: pretty;
}

html[lang="de"] .de-wordfit-tight{
  letter-spacing: -0.015em;
}
@media (min-width: 1024px){
  .only-desktop{ display: list-item; }
  .hamburger{ display: none; }
}

@media (max-width: 900px){
  .header{
    overflow: clip;
  }
  .header .chrome{
    left: 10px; right: auto; height: 42px; width: 42px;
    margin: 0;
    padding: 0; gap: 8px; border-radius: 12px;
    background: none;
  }
  .header .brand{
    position: absolute;
    left: auto;
    right: 14px;
    top: 12px;
    height: 40px;
    width: min(220px, calc(100vw - 72px));
    max-width: calc(100vw - 72px);
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: .12em;
    pointer-events: all;
    text-decoration: none;
  }
  .header .brand .icon-button{
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    text-align: right;
  }
  .header .brand #brandLogo{
    width: auto;
    height: 40px;
    max-width: 100%;
    max-height: 40px;
  }

  .nav{ display: none; }          /* hide links inside pill on mobile */
  .lang{ display: none; }         /* language moved into mobile panel */
}

/* =========== Footer =========== */
.site-footer{
  color: #fff; background: radial-gradient(1200px 400px at 80% -20%, rgba(255,255,255,.05), transparent 60%) , #040628;
  padding: 0px; border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner{ max-width: 1200px; margin-inline: auto; padding: 10px 32px; }
.brand--footer{ display:inline-flex; align-items:center; gap:10px; color:#fff; text-decoration:none; opacity:.95; }
.cols{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 32px; margin-top: 28px; }
.cols h4{ font-size: 14px; letter-spacing:.12em; text-transform: uppercase; opacity:.8; margin-bottom: 12px; }
.cols ul{ list-style:none; display:grid; gap:10px; }
.cols a{ padding-left: 5px; color:aliceblue; text-decoration:none; opacity:.9; border-left: solid 1px aliceblue; }
.cols a:hover{ color: var(--accent); opacity: .5;}

.footer-lang{ margin-top: 14px; display:flex; align-items:center; gap:10px; }
.footer-lang .sep{ opacity:.5; }
.footer-lang button{ background:none; border:none; color:#fff; cursor:pointer; padding:2px 4px; border-bottom:1px solid transparent; }
.footer-lang button.active{ border-color:#fff; }

.legal{
  margin-top: 28px; padding-top: 18px;
  display:flex; flex-wrap:wrap; gap:16px; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08); opacity:.8; font-size: 13px;
}
.legal-right{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}
.footer-socials{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-social{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  transition:transform .18s ease, border-color .18s ease, color .18s ease, background-color .18s ease;
}
.footer-social svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.footer-social:hover,
.footer-social:focus-visible{
  color:var(--accent);
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.08);
  transform:translateY(-2px);
}
.footer-social:focus-visible{
  outline:2px solid rgba(255,255,255,.4);
  outline-offset:3px;
}
.site-footer {
  color: #fff;

  padding: 0px;

  /* Add logo */
  background-image: url('/uns_img/logo (1).svg'),
    radial-gradient(1200px 400px at 80% -20%, rgba(255,255,255,.08), transparent 60%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 430px bottom 100px, center top;
  background-size: 100px auto, auto;
}

@media (max-width: 800px){
  .cols{ grid-template-columns: 1fr; gap: 20px; }
 .legal-right{
  width:100%;
  justify-content:flex-end;
 }
 .site-footer {
  color: #fff;

  padding: 0px;

  /* Add logo */
  background-image: url(),
    radial-gradient(1200px 400px at 80% -20%, rgba(255,255,255,.08), transparent 60%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 600px top 100px, center top;
  background-size: 100px auto, auto;
}


}

/* Header height token so hero can pad under it neatly */
:root{
  --header-h: 80px;       /* match your header's real height */
  --hero-tall: 100vh;     /* default: just one screen */
}

/* Never add an implicit gap before the first section */
main{ margin-top: 0; }

/* Headings can collapse margins with the section.
   Keep a tidy, predictable top spacing instead. */
#hero h1{ margin-block: 0.08em 0.25em; }

/* ===== HERO ===== */
.hero{
  position: relative;
  isolation: isolate;
  min-height: var(--hero-tall);        /* was 180vh inline – remove that */
  overflow: hidden;
  touch-action: none;
}

/* Media covers the viewport and stays pinned while you scroll the hero */
.hero.sticky video,
.hero.sticky canvas{
  position: sticky;     /* pin to viewport within the hero only */
  top: 0;
  width: 100%;
 height: max-content;  inset-inline: 0;
  z-index: 0;
}
.hero video{ object-fit: cover; display:none; }   /* your JS unhides on fallback */
.hero canvas{ pointer-events: none; }

/* ── Kein Overlay, kein Effekt — reines Dunkelblau ──────────────────────────
   Canvas deaktiviert (Session 5). Hintergrund: solides #040628 überall.
─────────────────────────────────────────────────────────────────────────────*/
.hero::before { content: ''; display: none; }
.hero::after  { content: ''; display: none; }

/* If you previously had this, remove/override it so the text doesn't wait
   until the 2nd scroll to appear: */
.hero.sticky .hero__inner{
  position: relative !important;
  top: auto !important;
  inset: auto !important;
}

/* --- HERO FIX (place at end of stylesheet) --------------------------- */
/* 1) Let the hero be as tall as its content (no static 180vh) */
.hero.sticky{ min-height:auto; }

/* 2) Media stays pinned to the viewport while you scroll the hero */
.hero.sticky video,
.hero.sticky canvas{
  position: sticky;
  top: 0;
  width: 100%;
 height: max-content;  inset-inline: 0;
  z-index: 0;
}

/* === HERO FIX (place last) ========================================= */
:root{ --header-h: 80px; } /* match your real header height */

.hero{
  /* Transparent — body #040628 liefert Basisfarbe, Aurora-Canvas scheint durch */
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: transparent;
  overflow: clip;
}

/* Canvas + Video komplett ausgeblendet (alle Seiten) */
.hero video,
.hero canvas,
.hero.sticky video,
.hero.sticky canvas{
  display: none !important;
}

/* Mobile: no video/WebGL background, use lightweight static split background */
@media (max-width: 960px){
  .hero#hero{
    background:
      radial-gradient(72vmax 68vmax at 18% 20%, rgba(20, 78, 185, 0.42), rgba(20, 78, 185, 0) 58%),
      radial-gradient(78vmax 72vmax at 82% 72%, rgba(13, 50, 140, 0.34), rgba(13, 50, 140, 0) 60%),
      linear-gradient(145deg, #020818 0%, #040628 34%, #07235a 66%, #031020 100%);
    background-color: #040628;
  }

  .hero#hero video,
  .hero#hero canvas{
    display: none !important;
  }
}


/* force copy to the top and above media (undo any old absolute/inset rules) */
/* --- Left positioning for hero copy + callout --------------------- */
:root{ --pad-x: clamp(16px, 4vw, 40px); }

.hero__inner{
  position: relative !important;
  inset: auto !important;
  top: 20px !important;
  left: var(--pad-x);        /* <-- left offset */
  right: auto;               /* avoid stretching */
  z-index: 2;

  /* keep a sane readable line length when we shove it left */
  max-width: min(var(--max-w), calc(100% - 2*var(--pad-x)));
  padding-top: calc(var(--header-h) + clamp(12px, 3vw, 36px));
  padding-bottom: clamp(56px, 12vh, 160px);
}

/* If you want the callout on the LEFT too, use left and unset right */
.callout{
  position: absolute;
  left: var(--pad-x);        /* <-- left offset */
  right: auto !important;    /* stop right anchoring */
  top: var(--header-h); /* fluid: immer unter dem Header */
  z-index: 2;
  width: max-content;
  height: max-content;
}

/* Mobile: nudge things neatly and avoid edge hugging */
@media (max-width: 900px){
  .hero__inner{
    left: var(--pad-x);
    max-width: calc(100% - 2*var(--pad-x));
  }
  .callout{
    left: var(--pad-x);
    right: var(--pad-x);   /* make it a nice full-width card on small screens */
    top: 16px;
  }
}

/* make sure section anchors don't hide under the fixed header 
section[id]{ scroll-margin-top: calc(var(--header-h) + 12px); }
 ===== HERO layout like the screenshot ===== */

/* 2-column grid: left copy, right CTA */
.hero__inner{
  position: relative !important;
  inset: auto !important;
  top: 20px !important;
  left: var(--pad-x);
  right: auto;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr min(38vw, 420px);
  grid-template-areas:
    "title cta"
    "desc  cta";
  align-items: center;
  column-gap: clamp(24px, 6vw, 64px);
  row-gap: clamp(8px, 2vw, 18px);

  max-width: min(var(--max-w), calc(100% - 2*var(--pad-x)));
  padding-top: calc(var(--header-h) + clamp(12px, 3vw, 36px));
  padding-bottom: clamp(56px, 12vh, 160px);
}

/* place children into the grid areas */
.hero__inner > h1{ grid-area: title; }
.hero__inner > p { grid-area: desc; max-width: 56ch; color: var(--muted); }

/* Right-side CTA block */
.hero__inner .actions{
  grid-area: cta;
  justify-self: end;
  align-self: center;
  position: relative;        /* anchor the orb */
  display: flex;
  gap: 12px;
}

/* pill button styling (keeps your class names) */
.hero .btn--pill{
  height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 64px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 10px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.hero .btn--pill:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.1),
    0 14px 36px rgba(0,0,0,.45);
}

/* glossy orb behind the CTA */
.hero__inner .actions::after{
  content:"";
  position:absolute;
  right:-72px;               /* pushes orb behind/right of the pill */
  top:50%;
  transform: translateY(-50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  z-index: -1;
  pointer-events:none;
  background:
    radial-gradient(60% 60% at 35% 35%, rgba(255,255,255,.28), rgba(120,150,255,.35) 45%, rgba(30,55,160,.95) 100%);
  box-shadow: inset 0 10px 30px rgba(255,255,255,.15), 0 10px 40px rgba(0,0,0,.45);
  filter: saturate(1.1);
}

/* headline sizing similar to reference */
#hero h1{
  font-size: clamp(32px, 4.9vw, 95px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-shadow: 0 1px 0 #0006, 0 8px 40px #000a;
}

/* info-title headings (Leistungen/Branchen cards) use a smaller scale —
   #hero h1 would otherwise win on specificity and push them to 72px */
#hero h1.info-title{
  font-size: clamp(22px, 2.59vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: none;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

/* paragraph spacing */
#hero p{ margin-top: 10px; }

/* Mobile: stack vertically and keep CTA under the copy */
@media (max-width: 900px){
  .hero__inner{
    left: var(--pad-x);
    right: var(--pad-x);
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "cta";
    justify-items: start;
  }
  .hero__inner .actions{
    justify-self: start;
    margin-top: 8px;
  }
  .hero__inner .actions::after{
    right: -24px;
    width: 108px; height: 108px; opacity: .9;
  }
}
/* ================== BIGGER, LEFT-LEANING HERO ================== */
.hero__inner{
  /* wider readable block, left aligned */
  max-width: min(1200px, 92vw);
  text-align: left;
}
.hero__inner h1{
  font-size: clamp(40px, 8.2vw, 96px);
  letter-spacing: -0.015em;
  line-height: 1.03;
}
.hero__inner p{
  margin-top: 16px;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 62ch;
}
.actions{ gap: 16px; }
.btn--pill{
  padding: 16px 22px;
  font-size: 16px;
  border-radius: 999px;
}


.hero-hotspots{
  height: clamp(420px, 56vw, 620px);
}

/* glass “chips” */
.hs-chip{
  min-height: 64px;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 16px;
}
.hs-consult{ top: 5%;  right: 6%;  width: 360px; }
.hs-advisor{ top: 44%; left: 10%; width: 300px; }

/* calculator panel */
.hs-panel{
  width: min(360px, 50%);
  padding: 20px 18px 14px;
  border-radius: 18px;
}
.hs-panel h4{ font-size: 20px; margin: 0 0 10px 0; line-height: 1.1; }
.hs-panel p{ font-size: 14px; margin: 0 0 14px 0; }
.hs-btn{ padding: 10px 16px; font-size: 13px; }

/* glossy orbs bigger too */
.hs-orb{ filter: saturate(1.1) brightness(1.02); }
.orb-1{ width: 120px; height: 120px; }
.orb-2{ width: 96px;  height: 96px;  }
.orb-3{ width: 140px; height: 140px; }
.orb-4{ width: 108px; height: 108px; }

/* ================== MOBILE TWEAKS (still bigger) ================== */
@media (max-width: 900px){
  .hero__inner h1{ font-size: clamp(34px, 8.8vw, 64px); }
  .hero__inner p{ font-size: clamp(15px, 3.6vw, 18px); }

  .callout{ left: var(--pad-x); right: var(--pad-x); width: auto; }
  .hero-hotspots{ height: 520px; }

  .hs-chip{ font-size: 15px; min-height: 60px; }
  .hs-consult{ top: 4%; right: 0; left: 0; margin-inline: auto; width: min(86vw, 460px); }
  .hs-advisor{ top: 40%; left: 0; width: min(70vw, 360px); }

  .hs-panel{ right: 0; left: auto; bottom: 4%; width: min(82vw, 420px); }
  .hs-panel h4{ font-size: 18px; }
  .hs-panel p{ font-size: 13px; }

  .orb-1{ width: 110px; height: 110px; }
  .orb-2{ width: 90px;  height: 90px;  }
  .orb-3{ width: 120px; height: 120px; }
  .orb-4{ width: 100px; height: 100px; }
}
/* ------------ Info Grid (About / Industry Focus) ------------ */
.info-grid{ color:#fff;
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  width: auto;
  align-items: center; justify-content: center;
  top: var(--header-h); /* fluid: folgt Header-Höhe */
  z-index: 2;
  height: max-content; }
.container{ margin-inline:auto; padding-inline:var(--pad-x) ; width:100%; align-items: center; justify-content: center;
margin-bottom: 5rem;}
.main-row{
  align-items: center; justify-content: center;
  position:relative;
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 5vw, 64px);
  padding: clamp(22px, 3vw, 34px) 0;
  min-height: 85vh; /* Linie bleibt immer fix — unabhängig von Texthöhe */
}
.info-row{
  position:relative;
  display:grid;
  grid-template-columns: max(220px, calc(33.7vw - clamp(40px, 5vw, 90px) - clamp(20px, 5vw, 64px))) 1fr;
  gap: clamp(20px, 5vw, 64px);
  padding: clamp(22px, 3vw, 34px) 0;
}

/* ── Intent-Choice Widget (Kaufen / Verkaufen) ───────────────── */
.intent-choice {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(14px, 1.6vw, 22px);
}
.intent-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122,184,200,.3);
  background: rgba(122,184,200,.06);
  color: rgba(255,255,255,.75);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .15s ease;
  width: fit-content;
}
.intent-btn:hover {
  background: rgba(122,184,200,.18);
  border-color: rgba(122,184,200,.65);
  color: #fff;
  transform: translateX(3px);
}
.intent-btn i {
  font-size: 15px;
  color: #7ab8c8;
  flex-shrink: 0;
}
.intent-btn.intent-sell {
  border-color: rgba(57,85,255,.35);
  background: rgba(57,85,255,.07);
}
.intent-btn.intent-sell:hover {
  background: rgba(57,85,255,.18);
  border-color: rgba(100,130,255,.65);
}
.intent-btn.intent-sell i { color: #7a9bf8; }

@media (max-width: 700px) {
  .intent-choice { flex-direction: row; flex-wrap: wrap; }
}

/* top & (for the last item) bottom rules */
.info-row::before,
.info-row:last-child::after{
  content:"";
  position:absolute; left:0; right:0; height:1px;
  background: linear-gradient(90deg,
    rgba(122,184,200,.15) 0%,
    rgba(122,184,200,.55) 18%,
    rgba(122,184,200,.35) 65%,
    rgba(122,184,200,.08) 100%);
}
.info-row::before{ top:0; }
.info-row:last-child::after{ bottom:0; }
/* ---------- Hoverable bubbly card ---------- */
.info-right{
  position: relative;
  overflow: hidden;                /* clip glow */
  border-radius: 14px;
  padding: clamp(16px, 1.6vw, 22px) clamp(18px, 2vw, 26px);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition:
    background .35s ease,
    box-shadow .35s ease,
    color .35s ease;
}

/* Background + text color fade on hover/focus */
/* Universeller Hover-Effekt für ALLE Kästchen */
.info-right,
.industry-card,
.makeover-box,
.content-box,
.promise-item,
.step-item{
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.info-right:hover,
.info-right:focus-within,
.industry-card:hover,
.makeover-box:hover,
.content-box:hover,
.promise-item:hover,
.step-item:hover{
  background: rgba(18, 28, 80, .55) !important;
  box-shadow:
    inset 0 0 0 1px rgba(122,184,200,.45),
    0 0 24px rgba(122,184,200,.15),
    0 12px 32px rgba(0,0,0,.3) !important;
  border-color: rgba(122,184,200,.45) !important;
  color: #fff;
}
.info-right:hover .info-copy,
.info-right:focus-within .info-copy{ color:#fff; }

.info-right:hover .eyebrow-link,
.info-right:focus-within .eyebrow-link{
  color:#fff;
  border-color: rgba(255,255,255,.35);
}

/* Bubbly glow layer — auf ALLEN Kästchen */
.info-right::before,
.info-right::after,
.industry-card::before,
.industry-card::after,
.makeover-box::before,
.makeover-box::after,
.content-box::before,
.content-box::after{
  content:"";
  position:absolute;
  inset:-20%;                       /* bleed past the edges for smoothness */
  border-radius: inherit;
  pointer-events:none;
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.92) translate3d(0,0,0);
  transition: opacity .35s ease;
}

/* Front layer – soft blue/white “bubbles” */
.info-right::before,
.industry-card::before,
.makeover-box::before,
.content-box::before{
  background:
    radial-gradient(180px 180px at 20% 35%, rgba(122,166,255,.28), transparent 60%),
    radial-gradient(120px 120px at 70% 65%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(90px 90px   at 40% 80%, rgba(122,166,255,.18), transparent 60%);
  animation: bubbleShift 2.2s ease-out both paused;
}

/* Back layer – second pass for depth */
.info-right::after,
.industry-card::after,
.makeover-box::after,
.content-box::after{
  background:
    radial-gradient(140px 140px at 80% 25%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(100px 100px at 25% 75%, rgba(122,166,255,.22), transparent 60%);
  animation: bubbleShift2 2.4s ease-out both paused;
}

.info-right:hover::before,
.info-right:hover::after,
.info-right:focus-within::before,
.info-right:focus-within::after,
.industry-card:hover::before,
.industry-card:hover::after,
.makeover-box:hover::before,
.makeover-box:hover::after,
.content-box:hover::before,
.content-box:hover::after{
  opacity: .9;
  animation-play-state: running;
}

/* Gentle “bubbly” motion */
@keyframes bubbleShift{
  0%   { transform: scale(.95) translate3d(-10px, 10px,0); }
  60%  { transform: scale(1.05) translate3d(  6px, -6px,0); }
  100% { transform: scale(1.00) translate3d(  0px,  0px,0); }
}
@keyframes bubbleShift2{
  0%   { transform: scale(.92) translate3d( 10px, -6px,0); }
  60%  { transform: scale(1.06) translate3d( -6px,  8px,0); }
  100% { transform: scale(1.00) translate3d(  0px,  0px,0); }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .info-right::before,
  .info-right::after{ animation: none !important; }
}

/* small glowing dot on the rule (right edge) */
.rule-dot{
  display: none !important; /* blaue Kugel entfernt */
}

/* left column */
.info-title{
  font-weight: 800;
  font-size: var(--fs-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px 0;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.btn-chip{
  display:inline-flex; align-items:center; gap:8px;
  height: 36px; padding: 0 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff; text-decoration:none; font-size:14px;
  transition: background .2s ease, transform .12s ease;
}
.btn-chip:hover{ background: rgba(255,255,255,.12); transform: translateY(-1px); }

/* right column */
.eyebrow-link{
  display:inline-block;
  margin-bottom: 10px;
  margin-top: 1.2em;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  text-decoration:none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.eyebrow-link:hover{
  color:#fff; border-color: rgba(255,255,255,.35);
}
.info-copy{
  color: var(--muted, #c9c9cf);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 72ch;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* responsive: stack on small screens */
@media (max-width: 900px){
  .info-row{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .info-title{ margin-bottom: 8px; }
  .btn-chip{ margin-bottom: 4px; }
  .info-copy{ max-width: none; }
  .main-row{
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding: clamp(32px, 5vw, 56px) 0;
  }
  .main-item{ width: 100%; }
  .slide-main{ min-height: auto; }
}
/* ===== CTA pill with moving bubble ===== */
.cta-wrap{
  --sz: 96px;                 /* bubble size */
  --shift-x: 36%;             /* bubble sits a bit to the right of the pill */
  --lift: -50%;               /* vertical centering */
  --bubble: radial-gradient(circle at 30% 30%,
              #a7baff 0 18%, #6b8cff 35%, #2c48c6 55%, #0b1130 78%, #090d26 100%);
  position: relative;
  display: inline-block;
  padding-right: 6px;         /* visual balance to the bubble */
  isolation: isolate;         /* keep bubble below the pill */
}

/* the bubble — entfernt */
.cta-wrap::after{
  display: none !important;
}
.cta-wrap{
  pointer-events: none; /* blockiert keine Klicks mehr */
}
.button-bubble{
  background: none;
  margin: 0;
  border: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: x-large;
  letter-spacing: .01em;
  cursor: pointer;
  pointer-events: all;
}

/* the pill */
.cta-bubble{
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 22px 44px;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .04em;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  border: 1.5px solid rgba(255,255,255,.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 6px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

/* hover focus states */
.cta-wrap:hover::after{ animation-duration: 3.5s; }
.cta-bubble:hover,
.cta-bubble:focus-visible{
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  box-shadow:
    0 10px 34px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.35);
  transform: translateY(-1px);
  outline: none;
}

/* gentle float */
@keyframes bubbleFloat{
  0%   { transform: translate(var(--shift-x), var(--lift)) translate(calc(var(--mx,0px) - 2px), calc(var(--my,0px) + 1px)) scale(1); }
  50%  { transform: translate(calc(var(--shift-x) + 6px), calc(var(--lift) - 2px)) translate(var(--mx,0px), var(--my,0px)) scale(1.03); }
  100% { transform: translate(var(--shift-x), var(--lift)) translate(calc(var(--mx,0px) + 2px), calc(var(--my,0px) - 1px)) scale(1); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .cta-wrap::after{ animation: none; }
  .cta-bubble{ transition: none; }
}
/* keep the whole button on one line */
.button-bubble{
  cursor: pointer;
  display: inline-flex;   /* was flex + width:100% */
  width: auto;            /* pill fits its content */
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* the pill + its label never wraps */
.cta-bubble{
  white-space: nowrap;
  width: max-content;     /* size to the text */
  line-height: 1;         /* tidy vertical rhythm */
}

/* OPTIONAL: if you put the label inside a span, add ellipsis on overflow */
.cta-bubble .label{
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;  /* full black preloader background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;

  transition: opacity 1.2s ease;
}

/* When hidden */
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

/* Keep the image in original size centered */
#preloader img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
}
#desktop, #mobile, #desktop2, #mobile2 {
  display: none;
}
/* --- sizing tokens (safe to tweak) ------------------------------- */
:root{
  --u: clamp(10px, 1.2vw, 16px);          /* base unit */
  --radius: clamp(16px, 2vw, 22px);
  --cardW: clamp(260px, 32vw, 520px);     /* right side card width */
  --glass: rgba(255,255,255,.10);
  --glass-2: rgba(255,255,255,.14);
  --stroke: rgba(255,255,255,.22);
  --ink: #fff;
  --ink-2: #e7ebf4;
  --ink-dim: #cfd6e6;
  --accent: #6ea4ff;
}

/* --- layout: make callout act as the two-column container -------- */
.callout.mp-deck{
  position: absolute;         /* in your hero */
  left: var(--pad-x, 4vw);
  right: auto;
  top: clamp(9vh, 16vh, 22vh);
  z-index: 2;

  /* look/feel like a lightweight container */
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;

  /* two columns: logo / cards */
  display: grid;
  grid-template-columns: minmax(260px, 34vw) minmax(320px, 45vw);
  align-items: center;
  gap: clamp(20px, 6vw, 80px);
}

/* ---------------- left column (your logo form) ------------------- */
.slide-main{
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: clamp(-50px, -3.5vw, 0px);
  min-height: 52vh;
  text-align: left;
  cursor: pointer;
}
.main-item{
  position: relative;     /* anchoring area for stacked cards */
  width: 20%;
  background: transparent;
  border: 0;
  margin: 0;
  right: 0;
  padding: 0;
  isolation: isolate;
}
.slide-text{
  height: 80dvh;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
}
.slide-title img{
  width: min(30vw, 420px);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.slide-desc{
  margin-top: .4em;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(22px, 3.5vw, 36px);
  white-space: nowrap;
}
.slide-main .slide-title,
.slide-main .info-copy { transition: opacity 1s ease; }
.slide-main { cursor: pointer; }
.slide-main .line > * { transition: opacity 1s ease; }
.slide-main.is-swapping .line > * { opacity: 1.25; }
.line .alt[hidden] { display: none !important; }


/* ---------------- right column (your mp-item stack) -------------- */
.mp-item{
  position: relative;     /* anchoring area for stacked cards */
  width: 80%;
  background: transparent;
  border: 0;
  margin: 0;
  right: 0;
  padding: 0;
  isolation: isolate;
}

/* shared glass card look */
.content-box{
  position: absolute;
  width: clamp(240px, 60%, var(--cardW));
  border-radius: var(--radius);
  padding: calc(1.1*var(--u)) calc(1.4*var(--u));
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px rgba(20, 18, 60, .25),
    0 0 1px rgba(255,255,255,.25) inset;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.content-box:hover{
  transform: translateY(-4px);
  background: var(--glass-2);
  box-shadow:
    0 16px 44px rgba(20, 18, 60, .35),
    0 0 1px rgba(255,255,255,.3) inset;
}

/* title + copy sizes */
.content-box h3{
  margin: 0 0 .35em 0;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.3;
}
.content-box p{
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
}

/* CTA on the bottom card */
.content-box.bottom button{
  margin-top: .8em;
  margin-left: auto;
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: .55em 1.1em;
  font-size: clamp(12px, 1.1vw, 14px);
  color: #fff;
  background: linear-gradient(90deg, #1a195a 0%, #5f6dff 100%);
  box-shadow: 0 8px 24px rgba(55, 70, 180, .45);
  cursor: pointer;
}

/* hover → Panel öffnet sich nach RECHTS neben dem Kästchen */
.content-box{ overflow: visible; }

.content-box .primary-text{
  display: block;
  opacity: 1;
  transition: opacity .2s ease;
}
.content-box:hover .primary-text{ opacity: 0.3; }

.content-box:hover{
  z-index: 50;
}
.content-box .hover-text h2{
  font-size: 1.2rem;
  margin: 0 0 .5em 0;
  white-space: nowrap;
}
.content-box .hover-text{
  display: block;
  position: absolute;
  left: calc(100% + 14px);
  top: 0;
  width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
  background: rgba(20, 28, 70, 0.96);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: 1.2em 1.5em;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  z-index: 50;
}
.content-box:hover .hover-text{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* --------- Treppeneffekt: oben-links → mitte → unten-rechts -------------- */
.content-box.top{
  top: 8%;
  left: 0;
  right: auto;
  transform: none;
}
.content-box.middle{
  top: 30%;
  left: 22%;
  width: auto;
}
.content-box.bottom{
  top: 55%;
  left: 44%;
  width: auto;
  transform: none;
}
/* unterste Box: Panel öffnet nach LINKS da rechts kein Platz */
.content-box.bottom .hover-text{
  left: auto;
  right: calc(100% + 14px);
  transform: translateX(8px);
}
.content-box.bottom:hover .hover-text{
  transform: translateX(0);
}

/* ---------------- decorative orbs (bubbles) ---------------------- */
.bubble,
.bubble.small{
  display: none !important; /* CSS-Kugeln entfernt */
}
@keyframes bubbleFloat{
  0%   { transform: translateY(0);    }
  50%  { transform: translateY(-14px);}
  100% { transform: translateY(0);    }
}

/* ------------------- mobile adjustments -------------------------- */
@media (max-width: 860px){
  .button-bubble{
  cursor: pointer;
  display: flex;
  flex-direction: column;      /* stack vertically */
  align-items: center;         /* center items horizontally */
  justify-content: center;     /* center items vertically */
  gap: .1rem;

  width: 60%;
  margin: 2%;
  border: none;
  border-radius: 12px;

  color: #fff;
  font-weight: 700;
  font-size: medium;
  letter-spacing: .01em;

  white-space: normal;         /* allow text to wrap */
  /* flex-wrap not needed when using column; remove/unset */
}

.cta-bubble{
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: left;
  justify-content: left;
  gap: .1rem;
  padding: 1px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 6px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

  .callout.mp-deck{
    position: static;
    grid-template-columns: 1fr;
    gap: clamp(16px, 5vw, 28px);
    padding: 0 var(--pad-x, 4vw);
  }
  .slide-title img{ width: min(62vw, 420px); }
  .mp-item{ max-width: 560px; }
  .content-box{ position: relative; left:auto; right:auto; top:auto; bottom:auto; width: 100%; transform:none; margin-bottom: 14px; }
  .bubble, .bubble.small{ display:none; }
}
/* ===== Sticky side / changing content ===== */
:root{
  --header-h: 80px;            /* match your fixed header height */
  --why-pad: clamp(18px, 4vw, 48px);
  --why-accent: var(--accent-teal, #7ab8c8);
  --why-ink: #fff;
  --why-muted: #e8e8ee;
  --why-bg: transparent;
}

.why-smooth{
  background: radial-gradient(1200px 600px at 70% -10%, rgba(255,120,120,.07), transparent 60%), var(--why-bg);
  color: var(--why-ink);
  padding: clamp(40px, 8vh, 84px) 0;
}

.why-wrap{
  margin-inline: auto;
  padding-inline: var(--why-pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 5vw, 72px);
}

/* Left: sticky */
.why-left{
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;
}

.why-bar{
  display: block;
  width: 4px;
  height: clamp(60px, 14vh, 120px);
  background: linear-gradient(var(--why-accent), transparent);
  border-radius: 2px;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.why-bar3{
  display: block;
  width: 4px;
  height: clamp(60px, 14vh, 120px);
  background: linear-gradient(transparent, var(--why-accent) );
  border-radius: 2px;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.why-bar-2{
  display: block;
  height: 4px;  /* thickness of divider */
  width: clamp(60px, 14vh, 120px); /* now width instead of height */
  background: linear-gradient(to right, var(--why-accent), transparent);
  border-radius: 2px;
  align-self: center; /* center it vertically between cards */
  margin: 0 clamp(12px, 2vw, 24px); /* horizontal gap */
}

.why-title{
  display: grid;
  gap: clamp(2px, .6vw, 6px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .02em;
  font-size: clamp(33px, 9vw, 100px);
  text-transform: uppercase;
}
.why-title span{ display: block; }

.why-kicker{
  margin-top: clamp(12px, 2vw, 18px);
  color: var(--why-muted);
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 36ch;
}

/* Right: stack of panels */
.why-right{ display: grid; gap: clamp(60px, 22vh, 32vh); 
align-items: center;
  justify-content: center;}
.why-panel{
  min-height: clamp(420px, 76vh, 860px);
  display: grid;
  align-content: end;
  gap: 10px;
  padding-bottom: clamp(24px, 6vh, 56px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.why-panel h3{
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: .02em;
}
.why-panel p{
  max-width: 64ch;
  color: var(--why-muted);
  font-size: clamp(14px, 1.6vw, 18px);
}

/* Fade of the left content when switching */
.why-left.fade{
  transition: opacity .28s ease, transform .28s ease;
  opacity: .2;
  transform: translateY(6px);
}

/* Restore desktop sticky behavior for the why split layout without
   changing other hero sections. */
.hero.hero--why-sticky{
  overflow: visible;
}

.hero.hero--why-sticky .why-wrap{
  align-items: start;
}

.hero.hero--why-sticky .why-left{
  position: relative;
  top: auto;
  align-self: start;
  min-width: 0;
  padding-inline-end: clamp(12px, 2vw, 28px);
  container-type: inline-size;
  container-name: why-left;
  z-index: 3;
}

.hero.hero--why-sticky .why-left-pin{
  position: relative;
  width: 100%;
  max-width: 100%;
  backface-visibility: hidden;
  transform-origin: top left;
}

.hero.hero--why-sticky .why-right{
  min-width: 0;
}

.hero.hero--why-sticky .why-title,
.hero.hero--why-sticky .why-kicker{
  inline-size: 100%;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  white-space: normal;
}

.hero.hero--why-sticky .why-title span{
  min-width: 0;
  max-width: 100%;
}

.hero.hero--why-sticky .why-title{
  font-size: clamp(28px, 6vw, 74px);
  font-size: clamp(28px, 15.2cqi, 80px);
  line-height: .94;
  letter-spacing: .015em;
  text-wrap: balance;
}

.hero.hero--why-sticky .why-kicker{
  max-width: min(100%, 36ch);
  font-size: clamp(13px, 1.45vw, 17px);
  font-size: clamp(13px, 4cqi, 17px);
  line-height: 1.5;
  text-wrap: pretty;
}

@container why-left (max-width: 520px){
  .hero.hero--why-sticky .why-title{
    font-size: clamp(27px, 14.2cqi, 68px);
    line-height: .96;
    letter-spacing: .01em;
  }

  .hero.hero--why-sticky .why-kicker{
    font-size: clamp(13px, 3.8cqi, 16px);
    max-width: 100%;
  }
}

@container why-left (max-width: 430px){
  .hero.hero--why-sticky .why-title{
    font-size: clamp(25px, 13cqi, 58px);
    line-height: .98;
    letter-spacing: 0;
  }

  .hero.hero--why-sticky .why-kicker{
    font-size: clamp(12.5px, 3.4cqi, 15px);
    line-height: 1.56;
  }
}

@container why-left (max-width: 360px){
  .hero.hero--why-sticky .why-title{
    font-size: clamp(23px, 12.2cqi, 50px);
    line-height: 1;
  }

  .hero.hero--why-sticky .why-kicker{
    font-size: 13px;
  }
}

/* Mobile: stack columns */
@media (max-width: 960px){
  .why-wrap{ grid-template-columns: 1fr; }
  .why-left{ position: static; }
  .why-kicker{ max-width: 60ch; }

  .hero.hero--why-sticky{
    overflow: clip;
  }

  .hero.hero--why-sticky .why-left{
    position: static;
    top: auto;
    height: auto;
  }

  .hero.hero--why-sticky .why-left-pin{
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
  }
}
/* ===== Experience block: bigger & centered ======================= */
/* Türkis-Glow nur auf den Zahlen während Countup */
.countup.counting{
  text-shadow:
    0 0 8px rgba(122,184,200,1),
    0 0 24px rgba(122,184,200,0.7),
    0 0 50px rgba(122,184,200,0.4);
  transition: text-shadow 0.4s ease;
}
.countup.count-done{
  text-shadow: none;
  transition: text-shadow 1.5s ease;
}

.experience-block{
  position: relative; isolation: isolate; z-index: 99999 !important;
  display: flex;                     /* was inline-block; let flex props work */
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-sizing: border-box;
  width: min(100%, 980px);           /* wider */
  height: auto;                      /* no forced shrink */
  margin-inline: auto;
  padding: clamp(28px, 4vw, 56px);   /* more breathing room */
  border-radius: 18px;
  background: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  flex-shrink: 0;
}

/* sequence anim (unchanged) */
.seq{ opacity:0; transform:translateY(20px); animation:fadeUp .8s ease-out forwards; }
.seq-1{ animation-delay:.2s; } .seq-2{ animation-delay:.6s; } .seq-3{ animation-delay:1s; }
@keyframes fadeUp{ to{ opacity:1; transform:translateY(0); } }

/* ===== Typography – larger ====================================== */
.experience-block h2{
  margin: 0 0 .5rem;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}
.experience-block p{
  margin-top: 12px;
  font-size: var(--fs-md);
  line-height: 1.6;
}

/* ===== Industry list – bigger cards ============================== */
.industry-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.industry-card{
  text-align: center;
  background: transparent;
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 28px);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.industry-card:hover{
  background: rgba(18,28,58,.32);
  border-color: rgba(122,184,200,.4);
  box-shadow:
    inset 0 0 0 1px rgba(122,184,200,.3),
    0 8px 28px rgba(0,0,0,.25);
}
.industry-card.full-width{ grid-column: 1 / -1; }
.industry-card h3{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 26px);
}
.industry-card ul{
  list-style: none; padding: 0; margin: 0;
}
.industry-card li{
  margin-bottom: 6px;
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,.8);
}

/* ===== Process flow – larger steps =============================== */
.process-flow{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 28px) clamp(14px, 2vw, 22px);
  margin-bottom: clamp(10px, 2vw, 18px);
}
.step-item{ position: relative; padding-left: clamp(18px, 2.4vw, 28px); }
.step-number{
  position: absolute; left: 0; top: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800; line-height: 1;
}
.step-number::after{ content:"."; color:#007BFF; }
.step-item h4{
  margin: 0 0 8px;
  font-size: clamp(16px, 2vw, 20px);
}
.step-box{
  background: rgba(2,3,24,.08);
  border-radius: 10px;
  padding: clamp(10px, 2vw, 16px);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
}

/* ===== Promise block – roomier layout ============================ */
.promise-block{ display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(16px, 3vw, 28px); }
.promise-text h3{ margin: clamp(10px, 2vw, 20px) 0; font-size: clamp(24px, 3vw, 38px); }
.promise-text p{ font-size: clamp(16px, 1.7vw, 18px); line-height: 1.65; }

.promise-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  width: 100%;
}
.promise-item{
  position: relative;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 30px);
  border-radius: 14px;
  border: 1px solid rgba(122,184,200,.2);
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
/* Bubbly glow — selbe Animation wie info-right */
.promise-item::before,
.promise-item::after{
  content:"";
  position:absolute;
  inset:-20%;
  border-radius: inherit;
  pointer-events:none;
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.92) translate3d(0,0,0);
  transition: opacity .35s ease;
}
.promise-item::before{
  background:
    radial-gradient(180px 180px at 20% 35%, rgba(122,166,255,.28), transparent 60%),
    radial-gradient(120px 120px at 70% 65%, rgba(255,255,255,.20), transparent 60%),
    radial-gradient(90px 90px at 40% 80%, rgba(122,166,255,.18), transparent 60%);
  animation: bubbleShift 2.2s ease-out both paused;
}
.promise-item::after{
  background:
    radial-gradient(140px 140px at 80% 25%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(100px 100px at 25% 75%, rgba(122,166,255,.22), transparent 60%);
  animation: bubbleShift2 2.4s ease-out both paused;
}
.promise-item:hover::before,
.promise-item:hover::after{
  opacity: .9;
  animation-play-state: running;
}
/* Toggle Button */
.promise-toggle{
  align-self: flex-start;
  margin-top: auto;
  background: none;
  border: 1px solid rgba(122,184,200,.4);
  border-radius: 999px;
  color: var(--accent-teal, #7ab8c8);
  padding: .3em .9em;
  font-size: var(--fs-xs);
  cursor: pointer;
  transition: background .2s ease;
}
.promise-toggle:hover{ background: rgba(122,184,200,.15); }
.promise-body{ margin-top: .4em; }
.promise-body p{ margin: 0 0 .8em; font-size: var(--fs-md); }
.promise-number{
  font-size: var(--fs-3xl, clamp(2rem, 1.4rem + 3vw, 3.5rem));
  font-weight: 900;
  color: var(--accent-teal, #7ab8c8);
  line-height: 1;
}
.promise-number::after{ content:""; }
.promise-item h4{
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.25;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}
.promise-item p{
  margin: 0;
  font-size: var(--fs-md);
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* dotted header helper */
.with-dot::after{ content:""; }

/* ===== Responsive tweaks ======================================== */
@media (max-width: 1024px){
  .industry-list{ grid-template-columns: repeat(2, 1fr); }
  .promise-block{ grid-template-columns: 1fr; }
  .promise-steps{ grid-template-columns: 1fr; }
}
@media (max-width: 680px){
  .industry-list{ grid-template-columns: 1fr; }
  .process-flow{ grid-template-columns: 1fr; }
}
:root{
  --bg-dark:transparent;
  --ink-dim:#cfd2da;
  --ink:#fff;
  --accent:#1922ff;
}

/* ===== Sticky container ===== */
.partners-section{
  position: relative;
  /* Taller than a screen so we have scroll room while the inner stays stuck */
  height: 180vh;                 /* tune: 150–220vh */
  background: var(--bg-dark);
}
.partners-sticky{
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
}

/* Layout wrapper so content doesn’t hug edges */
.partners-wrap{
  width: min(1200px, 92vw);
  margin-inline: auto;
  text-align: center;
}

/* Big headings */
.partners-label{
  margin: 0.3em 0;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  font-size: clamp(32px, 8vw, 96px);
  color: var(--ink-dim);
}

/* The lower “PARTNERS” word gets the moving glow toward the T */
.partners-word{
  position: relative;
  color: var(--ink-dim);
  color: color-mix(in srgb, var(--ink-dim) 72%, var(--ink) 28%);
}
.partners-word::after{
  /* soft spotlight that moves horizontally as you scroll */
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(220px 120px at var(--spot-x,50%) 50%,
      rgba(255,255,255,.85), rgba(255,255,255,.25) 40%, transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: var(--spot-a, .35);
}
/* Keep the T white even when the spotlight isn’t on it */
.partners-word .spot{ color:#fff; }

/* Flipping strip */
#partnerFlipContainer{ text-transform:uppercase; padding-top: 10px; }
#partnerFlip{
  height: 70px;
  padding-top: 14px;
  overflow: hidden;
}
#partnerFlip > div > div{
  color:#fff; height:90px; display:inline-block; width:100%;
  text-align:center; background:#4ec7f3;
  font-size: clamp(18px, 3vw, 36px); font-weight:700;
}
#partnerFlip div:first-child div{ background:#1922ff; }
#partnerFlip div:last-child  div{ background:#2a244e; }

@keyframes partnerFlipAnimation{
  0% {margin-top:-180px;} 5% {margin-top:-130px;}
  33%{margin-top:-130px;} 38%{margin-top:-60px;}
  66%{margin-top:-60px;}  71%{margin-top:0px;}
  99.99%{margin-top:0px;} 100%{margin-top:-180px;}
}
#partnerFlip div:first-child{ animation: partnerFlipAnimation 5s linear infinite; }

/* Logos row */
.partners-static{
  margin-top: clamp(20px, 4vw, 48px);
  display:flex; flex-wrap:wrap; gap: clamp(12px, 3vw, 28px);
  justify-content:center; align-items:center;
}
.partner-logo img{
  width: clamp(160px, 22vw, 360px);
  height: clamp(70px, 8vw, 140px);
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
}

/* ===== Next white section ===== */
.hall{
  background: transparent;
  color: #ffffff;
  padding: clamp(48px, 6vw, 100px) 4vw;
}
.hall-inner{
  max-width: 1100px; margin-inline:auto;
}
.hall h2{
  font-size: clamp(32px, 6vw, 64px);
  margin: 0 0 .4em;
  color: #ffffff;
}
.hall p{
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* Slight mobile tightening */
@media (max-width: 700px){
  .partners-label{ font-size: clamp(28px, 12vw, 64px); }
}
/* ===================================================
   cards-container — sauber & klar
   =================================================== */
.cards-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(24px, 4vw, 40px) 0;
  margin-top: 0.4rem;
  align-items: stretch;
}

/* Trennleisten ausblenden — Grid übernimmt die Struktur */
.cards-container > .why-bar,
.cards-container .why-bar-2 {
  display: none !important;
}

/* Formular als direktes Grid-Element */
.cards-container > form {
  display: flex;
  flex-direction: column;
}

/* Karte — clean & klar */
.cards-container .box {
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: clamp(200px, 20vw, 260px);
  margin: 0 !important;
  padding: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(122,184,200,.25);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: border-color .25s ease, background .25s ease;
}

.cards-container .box:hover {
  border-color: rgba(122,184,200,.55);
  background: rgba(255,255,255,.07);
}

/* Alle dekorativen Effekte entfernen */
.cards-container .box::before,
.cards-container .box::after {
  display: none !important;
}
.cards-container .box > span {
  display: none !important;
}

/* Inhalt */
.cards-container .box .content {
  position: static !important;
  left: auto !important;
  padding: clamp(20px, 2.5vw, 36px) !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none;
  color: #fff;
  display: flex !important;
  flex-direction: column;
  gap: clamp(8px, 1vw, 12px);
  flex: 1;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.cards-container .box:hover .content {
  left: 0 !important;
  padding: clamp(20px, 2.5vw, 36px) !important;
}

/* Kartenüberschrift */
.cards-container .box .content h2 {
  font-size: var(--fs-lg) !important;
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 .15em;
  line-height: 1.2;
  letter-spacing: -0.015em;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  overflow-wrap: break-word;
}

/* Beschreibungstext */
.cards-container .box .content p {
  font-size: var(--fs-md) !important;
  color: rgba(255,255,255,.75) !important;
  margin: 0;
  line-height: 1.6;
  text-align: left;
  flex: 1;
}

/* CTA — im Stil der Seite */
.cards-container .box .content a {
  display: inline-block;
  margin-top: clamp(14px, 1.5vw, 20px);
  padding: 10px 18px;
  font-size: var(--fs-sm) !important;
  font-weight: 700;
  color: #fff !important;
  background: rgba(122,184,200,.18) !important;
  border: 1px solid rgba(122,184,200,.45) !important;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  align-self: flex-start;
}

.cards-container .box .content a:hover {
  background: rgba(122,184,200,.32) !important;
  border-color: rgba(122,184,200,.7) !important;
  box-shadow: none !important;
  color: #fff !important;
}

/* Responsive — Spalten anpassen */
@media (max-width: 800px){
  .cards-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px){
  .cards-container { grid-template-columns: 1fr; gap: 12px; }
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  background: linear-gradient(to right, blue, #00ffff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}
.cursor-circle {
  display: none;
}
.cursor-circle.active {
  transform: translate(-50%, -50%) scale(1.5);
}
/* Section shell */
/* one-line, centered, black background */
.dtrail{
  --bg: #000;                 /* pure black */
  padding: 0;                 /* remove vertical padding */
  min-height: 48vh;           /* enough height for the ribbon */
  display: flex;              /* center the strip in the viewport */
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
}

/* Bild-Strip versteckt — ersetzt durch .ind-accordion */
/* keep the cards on a single row and center the row */
.dtrail-stage{ height: auto; }  /* not sticky; just a container */
.dtrail-viewer { display: none !important; }

/* Trenn-Strich zwischen dtrail-head und dtrail-strip */
.dtrail-stage .dtrail-head {
  position: relative;
}
.dtrail-stage .dtrail-head::after {
  content: "";
  display: block;
  height: 1px;
  margin: clamp(28px, 3.5vw, 48px) 0 0;
  background: linear-gradient(90deg,
    rgba(122,184,200,.15) 0%,
    rgba(122,184,200,.55) 18%,
    rgba(122,184,200,.35) 65%,
    rgba(122,184,200,.08) 100%);
}

/* ===================================================
   Bild-Strip — Option B: lesbare Kacheln, klarer CTA
   =================================================== */
.dtrail-strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  padding: clamp(28px, 3.5vw, 48px) clamp(8px, 1.5vw, 20px) clamp(16px, 2vw, 28px);
  list-style: none;
  margin: 0 auto;
  overflow: visible;
}

.dcard {
  width: 100%;
  height: clamp(260px, 26vw, 340px);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(122,184,200,.2);
  transition: border-color .22s, transform .22s;
}
.dcard:hover {
  border-color: rgba(122,184,200,.6);
  transform: translateY(-4px);
}

.dcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.55);
  transition: filter .3s;
  display: block;
}
.dcard:hover img {
  filter: grayscale(60%) brightness(0.45);
}

/* Starker dunkler Gradient — Text immer lesbar */
.glass-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(14px, 1.8vw, 22px);
  padding-top: clamp(40px, 8vw, 80px);
  background: linear-gradient(to top,
    rgba(2,8,30,.95) 0%,
    rgba(2,8,30,.75) 55%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.glass-overlay h3 {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

/* CTA — erscheint beim Hover */
.glass-overlay::after {
  content: “→ Mehr erfahren”;
  display: block;
  margin-top: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: rgba(122,184,200,1);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .22s, transform .22s;
}
.dcard:hover .glass-overlay::after {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
/* Alte flex-Regeln deaktivieren — Grid übernimmt */
.dcard:hover { flex-basis: auto !important; }

/* Glass overlay — starker Gradient für Lesbarkeit */
.glass-overlay{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(14px, 1.8vw, 22px);
  padding-top: clamp(50px, 8vw, 90px);
  background: linear-gradient(to top,
    rgba(2,8,30,.95) 0%,
    rgba(2,8,30,.72) 55%,
    transparent 100%);
  color: #fff;
}
.glass-overlay h3 {
  margin: 3px 0 0;
  font-size: var(--fs-sm) !important;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

/* Viewer overlay */
.dtrail-viewer{
  position:fixed; inset:0;
  display:grid; place-items:center;
  background: rgba(0,0,0,.65);
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
  z-index:90;
}
.dtrail-viewer.open{ opacity:1; pointer-events:auto; }

.viewer-card{
  margin:0;
  max-width:min(92vw, 1200px);
  max-height:min(82vh, 900px);
  display:grid; gap:12px;
}
.viewer-card img{
  width:100%; height:auto; max-height:inherit; object-fit:cover;
  border-radius:18px; box-shadow:0 24px 80px rgba(0,0,0,.55);
}
#viewerCaption{
  color:#e9eaec; font:600 clamp(14px, 1.6vw, 18px)/1.35 ui-sans-serif,system-ui;
}

/* Close */
.viewer-close{
  position:absolute; top:5rem; right:28px;
  width:42px; height:42px; border-radius:50%;
  border:1px solid blue;
  background:rgba(0,0,0,.55); color:blue; cursor:pointer;
  display:grid; place-items:center; font-size:20px;
}
.viewer-close:hover{ background:rgba(0,0,0,.75) }

/* Perf helpers */
.dtrail, .dcard { content-visibility:auto; contain-intrinsic-size: 800px 400px; }

@media (max-width: 760px){
  .dtrail-strip{ overflow-x:auto; padding:0 12px }
  .dcard{ flex: 0 0 clamp(84px, 26vw, 160px) } /* wider base on mobile */
  .dcard:hover{ flex-basis: clamp(84px, 26vw, 160px) } /* no hover grow on touch */
}
/* Turn off blurs & animations only while scrolling */
html.scrolling .header .chrome{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(0,0,0,.35) !important;
}
html.scrolling .cta-wrap::after{ animation-play-state: paused; } /* bubble */
/* Allow normal vertical scrolling through the hero */
.hero{ touch-action: pan-y !important; }
/* Contain paints for sticky stages */
.partners-sticky{ contain: paint; }

/* Trim shadow radii on frequently animating cards/buttons */
.dcard{ box-shadow: 0 6px 18px rgba(0,0,0,.30); }
.hero .btn--pill{ box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.35); }
.viewer-card{
  grid-template-columns: 1fr min(34ch, 38%);
  align-items: center;
}
.viewer-card img{ grid-column: 1; }
#viewerCaption{
  grid-column: 2;
  align-self: center;
  background: rgba(0,0,0,.35);
  padding: 16px 18px;
  border-radius: 14px;
}
#viewerCaption h3{ margin: .25em 0; }

@media (max-width: 760px){
  .viewer-card{ grid-template-columns: 1fr; }
  #viewerCaption{ grid-column: 1; }
}
/* Modal overlay should sit above everything */
.dtrail-viewer{
  z-index: 1400 !important;    /* was 90 */
  isolation: isolate;          /* new stacking context (Safari-safe) */
}

/* Make sure the image can't cover the button */
.viewer-card{ position: relative; z-index: 1; }

/* Keep the ✕ on top of the image */
.viewer-close{ z-index: 2; }
.glass-overlay h3{
  font-size: .5rem;
}
.dtrail-head{
  text-align: center;   /* für h2/p im dtrail-head */
  color: #fff;
  margin: 0 0 clamp(16px, 2vw, 24px);
  padding: clamp(16px, 2vw, 28px) 0 0;
}
/* Karten-Inhalte immer linksbündig */
.dtrail-head .footer-item,
.dtrail-head .footer-item_row,
.dtrail-head .footer_sub-1,
.dtrail-head .footer_link-label {
  text-align: left;
}
.dtrail-head h2{
  font-size: clamp(24px, 4.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.dtrail-head p{
  margin: 8px auto 6px;
  max-width: 70ch;
  color: #cfd2da;
  line-height: 1.45;
}

/* === Branchen-Navigation im dtrail-head — sauber & klar === */
.dtrail-head .footer_list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(16px, 2vw, 24px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
}

/* Karte auf footer-item ebene (enthält sub-wrap + button) */
.dtrail-head .footer-item {
  flex: 1 1 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(122,184,200,.3) !important;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .22s, background .22s;
  cursor: pointer;
}
.dtrail-head .footer-item:hover {
  border-color: rgba(122,184,200,.6) !important;
  background: rgba(255,255,255,.08) !important;
}

/* Beschreibungs-Span — sichtbar, grau, oben in der Karte */
.dtrail-head .footer-item_sub-wrap {
  display: block;
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.5vw, 30px) 0;
}
.dtrail-head .footer-item_sub-wrap .footer_sub-1 {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
  text-align: left;
  line-height: 1.4;
}

/* Button transparent — Kachel ist das footer-item */
.dtrail-head .footer-item_row {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  padding: 10px clamp(20px, 2.5vw, 30px) clamp(18px, 2vw, 26px) !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  width: 100%;
  text-align: left;
  transition: none;
}
.dtrail-head .footer-item_row:hover {
  transform: none;
  filter: none;
  background: transparent !important;
  border: none !important;
}

/* Subtitle — kleine turquoise Zeile */
.dtrail-head .footer_sub-1 {
  font-size: var(--fs-xs);
  color: rgba(122,184,200,.7);
  display: block;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 6px;
}

.dtrail-head .footer_link {
  min-height: auto;
}

/* Hauptlabel — fett, weiß */
.dtrail-head .footer_link-label {
  font-size: var(--fs-md) !important;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  line-height: 1.25;
  text-shadow: none !important;
  display: block;
}
.dtrail-head .footer-item_row:hover .footer_link-label {
  color: #fff !important;
  text-shadow: none !important;
}

/* Klick-Indikator am unteren Rand */
.dtrail-head .footer-item_row::after {
  content: "→ Mehr erfahren";
  display: block;
  margin-top: auto;
  padding-top: clamp(14px, 1.5vw, 20px);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(122,184,200,.75);
  letter-spacing: 0.02em;
}
.dtrail-head .footer-item:hover .footer-item_row::after {
  color: rgba(122,184,200,1);
}

/* Unterstrich-Dekoration weg */
.dtrail-head .footer_link-bg {
  display: none !important;
}
.dtrail-tags{
  display:flex; flex-wrap:wrap; justify-content:center; gap:8px 12px;
  list-style:none; padding:0; margin:10px 0 0;
}
.dtrail-tags li{
  padding:6px 12px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  font-size: clamp(12px, 1.6vw, 14px);
  color:#e9eaec;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* === Cards title block (scoped) === */
#cardsTitle{
  margin: auto;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 60px);
}
/* Gleicher Gradient-Strich wie .info-row — oben und unten, gleiche Breite */
#cardsTitle::before,
#cardsTitle::after {
  content: "";
  position: absolute; left: -9%; right: -9%; height: 1px;
  background: linear-gradient(90deg,
    rgba(122,184,200,.15) 0%,
    rgba(122,184,200,.55) 18%,
    rgba(122,184,200,.35) 65%,
    rgba(122,184,200,.08) 100%);
}
#cardsTitle::before { top: 0; }
#cardsTitle::after  { bottom: 0; }

#cardsTitle h2{
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

#cardsTitle h4{
  margin-top: clamp(6px, 0.8vw, 12px);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

#cardsTitle p{
  margin: clamp(12px, 1.5vw, 20px) auto 0;
  max-width: 70ch;
  color: #ffffff;
  line-height: 1.6;
}

/* Fix the global .hover-underline just for this block */
#cardsTitle .hover-underline{
  position: relative !important;
  right: auto !important;
  display: inline-block !important;
  line-height: inherit !important;
  padding-inline: 2px;
}
#cardsTitle .hover-underline::after,
#cardsTitle .hover-underline::before{
  height: 2px;
  bottom: -6px;
}
#cardsTitle h4.hover-underline::after,
#cardsTitle h4.hover-underline::before{
  bottom: -4px; /* tighter for the smaller line */
}

/* Small-screen spacing tweak */
@media (max-width: 700px){
  #cardsTitle{ margin-top: clamp(8px, 3vw, 16px); }
}
/* === BIGGER + VISIBLE HOVER EFFECT (paste AFTER your current footer CSS) === */

/* clickable row - bigger, with room for the underline */
.footer-item_row{
  position: relative;
  isolation: isolate;                 /* keeps underline behind text */
  cursor: pointer;
  gap: .36rem;                         /* more spacing */
  padding:0;       /* taller row */
  border-radius: .14rem;
  transition: transform .22s ease, filter .22s ease;
}
.footer-item_row:hover{
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
}

/* subtitle - bigger */
.footer_sub-1{
  font-size: 2;                   /* was smaller */
  opacity: .8;
}

/* main link text - BIG */
.footer_link{
  min-height: 2rem;                  /* was .26–.36 */
  align-items: center;
}
.footer_link-label{
  font-size: 2rem;                   /* make it big-big */
  font-weight: 800;
  position: relative;
  z-index: 1;                          /* above the underline */
  transition: color .22s ease, text-shadow .22s ease;
}
.footer-item_row:hover .footer_link-label{
  color: #3d4bdb;
  text-shadow: 0 2px 14px rgba(61,75,219,.45);
}

/* underline “reveal” - make sure it shows on hover */
.footer_link-bg{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: .10rem;                      /* thicker so it’s obvious */
  background: linear-gradient(90deg, #00d4ff 0%, #3d4bdb 60%, #000 100%);
  transform-origin: left center;
  transform: scaleX(0);                /* hidden by default */
  transition: transform .28s ease;
  z-index: 0;                          /* behind the text */
  box-shadow: 0 6px 18px rgba(61,75,219,.45);
}
.footer-item_row:hover .footer_link-bg,
.footer-item_row:focus-visible .footer_link-bg{
  transform: scaleX(1);                /* reveal on hover/focus */
}

/* keyboard focus - visible ring for accessibility */
.footer-item_row:focus-visible{
  outline: 3px solid #3d4bdb;
  outline-offset: 3px;
  border-radius: .16rem;
}

/* Mobile/touch: show a subtle underline by default (no hover there) */
@media (hover:none){
  .footer_link-bg{
    transform: scaleX(.85);
    opacity: .85;
  }
}

/* Optional: scale down slightly on narrow screens but keep it big */
@media (max-width: 720px){
  .footer_link-label{ font-size: .7rem; line-height: .5rem; }
  .footer_sub-1{ font-size: .9rem; line-height: .30rem; }
  .footer-item_row{ gap: .22rem; padding: .22rem .24rem .28rem; }
  .footer_link-bg{ height: .08rem; }
}
/* === Footer single-line marquee === */
.footer-marquee-line{
  overflow: hidden;
  padding:2px 0px;
}

.footer-marquee-line .marquee-track{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: footer-line-left var(--dur, 42s) linear infinite;
}

/* Pause on hover */

/* Group spacing so halves line up for the seamless loop */
.footer-marquee-line .marquee-content{
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  padding-right: clamp(18px, 2.4vw, 28px);
}

/* Chips */
.footer-marquee-line .marquee-item{
  margin: 0;
  padding: .5em 1em;
  border-radius: 4px;
  color: aliceblue;
  border-right: solid 1px aliceblue;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
  font-size: clamp(14px, 2vw, 18px);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}


/* Animation: first half (EN+DE) + duplicate half = 200% width → translate -50% */
@keyframes footer-line-left{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .footer-marquee-line .marquee-track{ animation: none; }
}
/* Bulbs: blue horizontal line background (6px) */
.bulbs-strip{
  /* your tokens */
  --bulb-brand:#2e5bff;
  --bulb-brand-2:#7aa6ff;
  --bulb-ink:#0b0f24;
  --bulb-panel:#eef2ff;
  --bulb-gap:clamp(12px,2.4vw,24px);
  --bulb-min:clamp(160px,22vw,280px);
  --bulb-max:clamp(220px,28vw,360px);

  position: relative;
  background: transparent;                 /* remove block fill */
  padding: clamp(24px,4vw,48px) 4vw;
  display: grid;
  gap: clamp(18px,2.6vw,28px);
  justify-items: center;
}

/* the line — background on .bulbs-row so it's centered to the circles,
   not to the full strip (which also contains the caption below) */
.bulbs-strip::before{ display: none; }
.bulbs-strip{ background-image: none; }

.bulbs-row{
  display:flex; align-items:center; gap:var(--bulb-gap);
  background-image: linear-gradient(90deg, var(--bulb-brand), var(--bulb-brand-2));
  background-size: 100% 6px;
  background-position: center;
  background-repeat: no-repeat;
}
/* keep all bulbs sitting above the line */
.bulbs-strip > *{ position: relative; z-index: 1; }
  .bulbs-row .bulb + .bulb{ margin-left:calc(var(--bulb-gap)*-0.35); }

  .bulb{
    width:var(--bulb-min); height:var(--bulb-min); border-radius:50%;
    display:grid; place-items:center; position:relative;
    transition:transform .25s ease, filter .25s ease;
    background:
      radial-gradient(circle at 50% 50%, #fff 0 58%, #dfe6ff 66%, #c7d2fe 74%, #b9c6ff 82%, transparent 100%),
      radial-gradient(120% 120% at 30% 30%, rgba(46,91,255,.14), transparent 50%),
      radial-gradient(120% 120% at 70% 70%, rgba(122,166,255,.18), transparent 55%);
    box-shadow: inset 0 0 0 1px rgba(46,91,255,.35), 0 16px 40px rgba(29,44,140,.15);
  }
  .bulb:is(:hover,:focus-within){ transform:translateY(-4px) scale(1.03); }
  .bulb.is-active{ width:var(--bulb-max); height:var(--bulb-max); }

  .bulb-btn{
    cursor:pointer; text-align:center;
    font:700 clamp(18px,2.6vw,38px)/1.08 ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
    color:var(--bulb-ink);
    padding:8px 14px; border-radius:10px; outline:none;
  }
  .bulb.is-active .bulb-btn{ color:var(--bulb-brand); }
  .bulb:hover .bulb-btn{ color:var(--bulb-brand); }
  .bulb-btn:focus-visible{ outline:2px solid var(--bulb-brand); outline-offset:6px; border-radius:14px; }

  .bulb-caption{
    background:var(--bulb-panel); color:#0b153a;
    border:1px solid rgba(46,91,255,.25);
    border-radius:14px;
    padding:clamp(10px,1.8vw,16px) clamp(16px,2.6vw,24px);
    font:600 clamp(13px,1.6vw,18px)/1.45 ui-sans-serif,system-ui;
    box-shadow:0 10px 28px rgba(12,22,70,.08);
    text-align:center;
  }

  @media (max-width:860px){
    .bulbs-row{ gap:14px; flex-wrap:nowrap; overflow:auto; padding-bottom:6px; }
    .bulbs-row .bulb + .bulb{ margin-left:0; }
    .bulbs-strip{
    padding: 20px 16px;
    background: transparent !important;      /* kill the horizontal bg line */
    display: block;                           /* simpler flow for stacking */
  }
  .bulbs-strip::before{
    top: 0;
    bottom: 0;                 /* full height */
    left: 50%;
    right: auto;
    width: 6px;                /* vertical line thickness */
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--bulb-brand), var(--bulb-brand-2));
    border-radius: 3px;
  }

  /* stack bulbs vertically along the line */
  .bulbs-row{
    display: flex;
    flex-direction: column;
    align-items: center;        /* center on the vertical line */
    gap: 18px;
    overflow: visible;          /* no horizontal scroll on phones */
    padding-bottom: 0;
  }
  .bulbs-row .bulb + .bulb{ margin-left: 0; } /* remove desktop overlap */

  /* tighter bulb sizing for phones */
  .bulb{
    width: clamp(96px, 26vw, 128px);
    height: clamp(96px, 26vw, 128px);
    margin-inline: auto;        /* center dot over the line */
    transform: none;            /* calmer on touch */
  }
  .bulb:is(:hover,:focus-within){ transform: translateY(-2px) scale(1.01); }

  .bulb.is-active{
    width: clamp(120px, 30vw, 160px);
    height: clamp(120px, 30vw, 160px);
  }

  /* label inside the bulb */
  .bulb-btn{
    font-size: clamp(16px, 4.2vw, 20px);
    padding: 6px 10px;
    text-align: center;
  }

  /* caption under each bulb */
  .bulb-caption{
    max-width: 40ch;
    margin: 8px auto 18px;      /* space below each “step” */
    font-size: clamp(13px, 3.6vw, 16px);
    text-align: center;
  }
  }
  /* === Bulbs: smaller variant (global override) === */
.bulbs-strip{
  --bulb-gap: clamp(8px, 1.6vw, 16px);
  --bulb-min: clamp(110px, 16vw, 180px);   /* was ~160–280 */
  --bulb-max: clamp(150px, 20vw, 230px);   /* was ~220–360 */
}

/* shrink label text */
.bulb-btn{
  font: 700 clamp(14px, 1.6vw, 24px)/1.06
        ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}

/* caption — gleiche Größe wie Fließtext */
.bulb-caption{
  font-size: var(--fs-md);
  padding: clamp(12px, 1.5vw, 20px) clamp(20px, 2.5vw, 32px);
}
/* ====== Tokens ====== */
:root{
  --imp-bg:   white 80%;                   /* card background */
  --imp-ink: #1934ba;                  /* main text */
  --imp-muted: #183579;                /* labels */
  --imp-line: rgba(255,255,255,.08);   /* subtle divider */
  --imp-rad: 16px;                     /* radius */
  --imp-pad: clamp(16px, 4vw, 40px);   /* inner padding */
}

/* ====== Square container ====== */
.impact-square{
  position: relative;
  width: min(92vw, 650px);      
  aspect-ratio: 3 / 2;                 
  margin: 16px auto;
  border-radius: var(--imp-rad);
  overflow: hidden;
  background:
    var(--imp-bg);
}

/* Fallback for very old browsers without aspect-ratio */
@supports not (aspect-ratio: 1 / 1){
  .impact-square{ height: 0; padding-top: 100%; }
  .impact-card{ position: absolute; inset: 0; }
}

/* ====== Layout inside ====== */
.impact-card{
  height: 100%;
  padding: var(--imp-pad);
  color: var(--imp-ink);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(12px, 2vw, 24px);
}

/* Title */
.impact-title{
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.1;
  font-size: clamp(22px, 3.4vw, 42px);
  color: #040628;
}

/* Stats list */
.impact-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  grid-auto-rows: 1fr;
  align-content: start;
  gap: clamp(16px, 3.2vh, 28px);
}

/* Each stat */
.impact-item{
  display: grid;
  align-content: start;
  gap: .25rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--imp-line);
}
.impact-item:last-child{ border-bottom: 0; }

.impact-label{
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--imp-muted);
  letter-spacing: .02em;
}

.impact-value{
  font-weight: 800;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  color: var(--imp-ink);
}

/* Optional: larger squares can split stats in two columns */
@media (min-width: 540px){
  .impact-grid{
    grid-template-columns: 1fr;
  }
}


/* Main card */
.contact-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;

  width:min(1200px, 96vw);
  margin:24px auto;
  padding:48px clamp(24px, 6vw, 56px);

  color:var(--ink);
  text-decoration:none;
  border-radius:14px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  position:relative;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Metallic / grain background overlay */
.contact-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(120% 120% at 20% 0%, #ffffff40 0%, #ffffff00 55%),
    radial-gradient(120% 120% at 80% 100%, #0000000a 0%, #00000000 60%),
    repeating-conic-gradient(from 45deg,
      rgba(255,255,255,.06) 0 2deg,
      rgba(0,0,0,.04) 2deg 4deg
    );
  mix-blend-mode: overlay;
  opacity:.5;
  border-radius:inherit;
  pointer-events:none;
  filter: saturate(0.9) contrast(0.95);
}

/* Text */
.contact-text h2{
  font: 700 clamp(28px, 6vw, 56px)/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin:0 0 .25em 0;
}
.contact-text p{
  margin:0;
  font: 500 clamp(14px, 2.5vw, 20px)/1.35 system-ui, sans-serif;
  color: var(--ink-60);
}

/* Circle arrow button */
.contact-cta{
  flex:0 0 auto;
  width:110px; height:110px;
  border-radius:50%;
  background:#fff;
  color:#111;
  display:grid; place-items:center;
  box-shadow: 0 6px 22px rgba(33, 26, 61, 0.1), inset 0 -18px 28px rgba(99, 149, 165, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover states */
.contact-card:hover,
.contact-card:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(74, 92, 146, 0.642);
  outline: none;
}
.contact-card:hover .contact-cta,
.contact-card:focus-visible .contact-cta{
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(71, 51, 90, 0.16), inset 0 -22px 34px rgba(23, 1, 72, 0.05);
}

/* Mobile */
@media (max-width: 700px){
  .contact-card{ padding:28px 22px; }
  .contact-cta{ width:76px; height:76px; }
}
/* ===== Webinar Banner (Awwwards-style) ===== */
/* ================== WEBINAR BAND - SOLID DARK, RESPONSIVE ================== */
:root{
  --wb-accent: #6ea4ff;
  --wb-accent-2: #2e5bff;
  --wb-ink: #ffffff;
  --wb-shadow: 0 10px 30px rgba(0,0,0,.35);
  --wb-z: 100; /* stays below the header/a11y controls, above page content */
}

/* fixed vertical pill left side */
.wb-banner{
  position: fixed;
  left: 0;
  top: calc(var(--header-h, 88px) + 10vh); /* respects your header token */
  width: 56px;
  height: 280px;
  display: grid;
  place-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: var(--wb-ink);
  z-index: var(--wb-z);
  cursor: pointer;

  /* glassy body with right-rounded corners like a ribbon */
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-right: 1px solid rgba(255,255,255,.35);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: var(--wb-shadow);

  /* tuck in a bit like a badge on the edge */
  transform: translateX(-6px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  isolation: isolate; /* keep glows inside */
}

/* slim illuminated rail on the right edge */
.wb-rail{
  position: absolute; inset: 8px 0 8px auto; width: 4px; border-radius: 3px;
  background: linear-gradient(var(--wb-accent), transparent);
  opacity: .9;
}

/* soft moving glow behind */
.wb-glow{
  position:absolute; inset:-20% -10% -20% -30%;
  z-index:-1; pointer-events:none; mix-blend-mode: screen; opacity:.7;
  background:
    radial-gradient(140px 160px at 60% 20%, rgba(110,164,255,.32), transparent 60%),
    radial-gradient(180px 140px at 40% 80%, rgba(46,91,255,.22), transparent 60%),
    radial-gradient(220px 160px at 80% 50%, rgba(255,255,255,.18), transparent 60%);
  animation: wbFloat 6s ease-in-out infinite;
  filter: saturate(1.05);
}

@keyframes wbFloat{
  0%   { transform: translate(-2px, 1px) scale(1); }
  50%  { transform: translate(6px, -2px) scale(1.03); }
  100% { transform: translate(2px, -1px) scale(1); }
}

/* vertical label (reads top→bottom) */
.wb-text{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

/* small pulse “LIVE” label near the bottom */
.wb-badge{
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font: 700 10px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: #d5e2ff;
  opacity: .9;
}
.wb-badge::before{
  content:"";
  position:absolute; left:50%; top:-8px; transform:translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, var(--wb-accent) 0 60%, transparent 70%);
  box-shadow: 0 0 18px 6px rgba(110,164,255,.45);
  animation: wbPulse 1.6s ease-in-out infinite;
}
@keyframes wbPulse{
  0%,100%{ transform: translateX(-50%) scale(1); opacity: .95; }
  50%    { transform: translateX(-50%) scale(1.25); opacity: .7; }
}

/* hover = slide out slightly + brighter */
.wb-banner:hover{
  transform: translateX(0);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  box-shadow: 0 16px 44px rgba(0,0,0,.45);
}

/* focus ring for keyboard users */
.wb-banner:focus-visible{
  outline: 3px solid #8ea0ff;
  outline: 3px solid color-mix(in srgb, var(--wb-accent) 70%, #fff 30%);
  outline-offset: 4px;
}

/* mobile: shrink to a compact chip near the bottom-left */
@media (max-width: 900px){
  .wb-banner{
    top: auto; bottom: 24px;
    height: 56px; width: 140px;
    padding: 0 12px;
    transform: translateX(6px); /* slight tuck */
    border-top-right-radius: 999px; border-bottom-right-radius: 999px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .wb-text{ writing-mode: initial; font-size: 13px; letter-spacing: .12em; }
  .wb-rail{ inset: auto 8px auto auto; height: 24px; }
  .wb-badge{ position: static; transform: none; font-size: 10px; }
  .wb-badge::before{ left: -10px; top: 50%; transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .wb-glow{ animation: none; }
  .wb-badge::before{ animation: none; }
  .wb-banner{ transition: none; }
}
#chain16{
  --ch16-left:260px; --ch16-right:220px;
  --ch16-bg:#d0e1ee; --ch16-ink:#111; --ch16-muted:#595959; --ch16-line:#d0e1ee;
  --ch16-cta:#6a58ff; --ch16-cta-ink:#fff;
  --ch16-top-pad: 56px;        /* <- space for your other header (padding, not margin) */
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--ch16-ink); background:transparent;
}
#chain16 *{ box-sizing:border-box; }
#chain16 a{ color:inherit; text-decoration:none; }

/* ===================== GRID SHELL ===================== */
#chain16 .ch16-shell{
  display:grid; grid-template-columns: var(--ch16-left) 1fr var(--ch16-right);
  min-height:100vh; background:#d0e1ee; isolation:isolate;
}

/* ===================== LEFT RAIL ===================== */
#chain16 .ch16-rail-left{
  position:relative; padding:24px 18px; border-right:1px solid var(--ch16-line); overflow:hidden;
  background:
    radial-gradient(160px 160px at 35% 78%, rgba(86,64,255,.45) 0%, rgba(86,64,255,0) 60%),
    radial-gradient(230px 230px at 0% 0%, #69879b 0%, rgba(255,132,80,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,0) 40%);
}
#chain16 .ch16-brand{ color:#fff; font-weight:800; letter-spacing:.2px; }
#chain16 .ch16-brand::before{ content:"✳"; margin-right:10px; filter:drop-shadow(0 4px 18px rgba(0,0,0,.25)); }

#chain16 .ch16-vert{ position:absolute; left:18px; top:90px; writing-mode:vertical-rl; transform:rotate(180deg); display:flex; gap:6px; align-items:flex-start; }
#chain16 .ch16-num{ font-size:72px; line-height:1; font-weight:900; letter-spacing:-2px; }
#chain16 .ch16-cap{ font-size:12px; letter-spacing:.25em; opacity:.8; } /* month label */

#chain16 .ch16-square{ position:absolute; left:90px; top:172px; width:32px;height:32px; border:2px solid #111; border-radius:4px; display:grid;place-items:center; background:#fff3; }
#chain16 .ch16-square::after{ content:""; width:8px;height:8px;border-right:2px solid #111;border-bottom:2px solid #111; transform:rotate(-45deg) translate(1px,-1px); }

#chain16 .ch16-dots{ position:absolute; left:28px; bottom:28px; display:grid; grid-template-columns:repeat(3,16px); gap:14px; padding:16px; border-radius:12px; background:linear-gradient(180deg,#ffffff26,#ffffff08); box-shadow:0 10px 30px rgba(88,66,255,.15); }
#chain16 .ch16-dot{ width:16px;height:16px;border-radius:50%; background:#fff; box-shadow:inset 0 0 0 1px rgba(0,0,0,.05); }
#chain16 .ch16-dot--dark{ background:#111; }

/* ===================== CENTER ===================== */
#chain16 .ch16-main{ display:grid; grid-template-rows:auto 1fr; }

/* top nav (padding at top, no margin) */
#chain16 .ch16-topbar{
  display:flex; align-items:center; gap:28px;
  padding: calc(18px + var(--ch16-top-pad)) 26px 18px;   /* <- padding instead of margin */
  background:#d0e1ee; border-bottom:1px solid var(--ch16-line);
}
#chain16 .ch16-menu{ display:flex; gap:22px; align-items:center; color:#222; font-weight:600; }
#chain16 .ch16-link{ padding:10px 0; position:relative; }
#chain16 .ch16-link + .ch16-link{ padding-left:22px; }
#chain16 .ch16-link + .ch16-link::before{ content:""; position:absolute; left:-12px; top:50%; transform:translateY(-50%); height:20px; width:1px; background:var(--ch16-line); }
#chain16 .ch16-top-actions{ margin-left:auto; display:flex; gap:16px; align-items:center; }
#chain16 .ch16-btn{ display:inline-block; background:var(--ch16-cta); color:var(--ch16-cta-ink); padding:10px 16px; border-radius:10px; font-weight:800; box-shadow:0 6px 16px rgba(106,88,255,.25); }

/* hero */
#chain16 .ch16-hero{ padding:40px 56px 28px; border-bottom:1px solid var(--ch16-line); }
#chain16 .ch16-title{ font-size:44px; line-height:1.1; letter-spacing:-.02em; max-width:820px; margin:0 0 14px; }
#chain16 .ch16-sub{ max-width:680px; color:var(--ch16-muted); font-size:16px; line-height:1.65; margin:8px 0 22px; }
#chain16 .ch16-cta-join{ display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:12px; background:var(--ch16-cta); color:#fff; font-weight:800; cursor:pointer; border:0; box-shadow:0 10px 26px rgba(106,88,255,.28); }
#chain16 .ch16-cta-join:hover{ transform:translateY(-1px); }

/* rich content blocks */
#chain16 .ch16-section{ padding:28px 56px; color:#333; }
#chain16 .ch16-grid{ display:grid; grid-template-columns:1.2fr 1fr; gap:32px; }
#chain16 .ch16-card{ background:#a2d5df6b; border:1px solid var(--ch16-line); border-radius:14px; padding:18px 20px; box-shadow:0 6px 18px rgba(0,0,0,.04); }
#chain16 .ch16-card h4{ margin:0 0 8px; }

/* ===================== RIGHT RAIL ===================== */
#chain16 .ch16-rail-right{ border-left:1px solid var(--ch16-line); padding:18px; background:linear-gradient(180deg, #ffffffaa, #ffffff40); overflow-y:auto; }
#chain16 .ch16-action{ display:flex; align-items:center; gap:12px; width:100%; padding:14px 10px; border-radius:12px; cursor:pointer; font-weight:700; color:#222; background:transparent; border:0; transition:background .2s, transform .12s; text-align:left; }
#chain16 .ch16-action + .ch16-action{ margin-top:8px; }
#chain16 .ch16-action:hover{ background:#efede9; transform:translateY(-1px); }

/* tiny icon glyphs */
#chain16 .ch16-ico{ width:36px; height:36px; border-radius:12px; display:grid; place-items:center; position:relative; box-shadow:inset 0 0 0 1px #dfd8ff; background:#efeaf9; }
#chain16 .ch16-ico--folder::before{ content:""; width:18px; height:12px; background:#222; clip-path:polygon(0 20%,20% 0,100% 0,100% 100%,0 100%); }
#chain16 .ch16-ico--vote::before{ content:""; width:14px; height:14px; border-left:2px solid #222; border-bottom:2px solid #222; transform:rotate(-45deg); }
#chain16 .ch16-ico--replay::before{ content:""; width:16px;height:16px;border:2px solid #222;border-radius:50%; }
#chain16 .ch16-ico--replay::after{ content:""; position:absolute; left:5px; top:6px; width:0;height:0; border-left:7px solid #222;border-top:5px solid transparent;border-bottom:5px solid transparent; }
#chain16 .ch16-ico--qa::before{ content:"?"; font-weight:900; }

/* ===================== SLIDE PANELS w/ Three.js canvas ===================== */
#chain16 .ch16-panel{ position:fixed; top:0; right:-420px; width:420px; height:100vh; border-left:1px solid var(--ch16-line); box-shadow:-14px 0 30px rgba(0,0,0,.08); overflow:hidden; transition:right .36s ease; z-index:4000; background:#0d0f1a; }
#chain16 .ch16-panel.is-open{ right:0; }
#chain16 .ch16-panel-inner{ position:relative; height:100%; padding:22px; color:#e9ecff; }
#chain16 .ch16-gl{ position:absolute; inset:0; z-index:0; }
#chain16 .ch16-panel-content{ position:relative; z-index:1; overflow:auto; height:100%; padding-right:8px; }
#chain16 .ch16-close{ position:absolute; top:12px; right:14px; width:36px; height:36px; border-radius:10px; border:0; background:#ffffff26; color:#fff; font-size:18px; font-weight:900; cursor:pointer; z-index:2; }
#chain16 .ch16-panel h3{ margin:8px 0 16px; font-size:20px; }
#chain16 .ch16-sep{ border:0; border-top:1px solid rgba(255,255,255,.12); margin:16px 0; }

/* ===================== JOIN MODAL (popup form) ===================== */
#chain16 .ch16-modal{ position:fixed; inset:0; background:rgba(0,0,0,.55); display:none; place-items:center; z-index:3600; }
#chain16 .ch16-modal.is-open{ display:grid; }
#chain16 .ch16-dialog{ width:min(620px, 92vw); background:#fff; border-radius:16px; padding:22px 22px 16px; box-shadow:0 18px 60px rgba(0,0,0,.35); position:relative; }
#chain16 .ch16-dialog h3{ margin:2px 0 10px; }
#chain16 .ch16-x{ position:absolute; right:14px; top:12px; width:36px;height:36px;border-radius:10px;border:0;background:#69879b; font-weight:900; cursor:pointer; }
#chain16 .ch16-form{ display:grid; gap:12px; margin-top:6px; }
#chain16 .ch16-row{ display:grid; gap:10px; grid-template-columns:1fr 1fr; }
#chain16 .ch16-form label{ font-size:13px; font-weight:700; color:#333; }
#chain16 .ch16-input, #chain16 .ch16-select{ width:100%; padding:10px 12px; border-radius:10px; border:1px solid #69879b; font-size:14px; }
#chain16 .ch16-submit{ margin-top:6px; background:var(--ch16-cta); color:#fff; border:0; padding:12px 16px; border-radius:12px; font-weight:800; cursor:pointer; }
#chain16 .ch16-note{ color:#666; font-size:12px; }
#chain16 .ch16-ok{ display:none; color:#0a7a2f; font-weight:700; margin-top:8px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width:1024px){
  #chain16{ --ch16-left:200px; --ch16-right:200px; }
  #chain16 .ch16-title{ font-size:36px; }
  #chain16 .ch16-grid{ grid-template-columns:1fr; }
}
@media (max-width:860px){
  #chain16 .ch16-shell{ grid-template-columns: 0 1fr 0; }
  #chain16 .ch16-rail-left, #chain16 .ch16-rail-right{ display:none; }
  #chain16 .ch16-topbar{ position:sticky; top:0; z-index:5; }
  #chain16 .ch16-row{ grid-template-columns:1fr; }
  #chain16 .ch16-panel{ width:90vw; }
}
#chain16 .ch16-rail-right{
  min-height: 100vh;               /* fill column */
  display: flex;
  flex-direction: column;
  align-items: center;              /* horizontal center */
  justify-content: center;          /* vertical center */
  gap: 14px;
  overflow-y: visible;              /* avoid shifting when centered */
}

#chain16 .ch16-action{
  width: auto;
  padding: 12px 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;           /* icon above label */
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

/* ===== CENTER the panel contents (both axes) ===== */
#chain16 .ch16-panel-inner{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;              /* vertical center */
  justify-content: center;          /* horizontal center */
}

#chain16 .ch16-panel-content{
  width: min(380px, 88%);
  max-height: calc(100% - 44px);    /* leave room for the close button */
  overflow: auto;                    /* if content is taller, it scrolls */
  text-align: center;
}

#chain16 .ch16-panel h3{ text-align: center; }
#chain16 .ch16-ico{ margin: 0 auto; } 
/* Popups use the same modal look; give them a comfy max-height + internal scroll */
#chain16 .ch16-pop .ch16-dialog{
  max-height: 82vh;
  overflow:auto;
}
/* === Dotted background behind .ch16-main ======================= */
#chain16 .ch16-main{ position: relative; overflow: clip; } /* host */
#chain16 .ch16-bg{               /* container for the canvas + subtle scrim */
  position:absolute; inset:0; z-index:0; pointer-events:none;
}
#chain16 .ch16-bg::after{        /* soft fade so dots never overpower text */
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(106,88,255,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 22%);
  mix-blend-mode: multiply; opacity:.85;
}
#chain16 .ch16-bg-dots{          /* the WebGL canvas */
  position:absolute; inset:0; width:100%; height:100%; display:block;
}
/* keep content above the dots */
#chain16 .ch16-topbar,
#chain16 .ch16-hero,
#chain16 .ch16-section{ position: relative; z-index: 1; }

/* reduced motion = render static dots */
@media (prefers-reduced-motion: reduce){
  #chain16 .ch16-bg::after{ opacity:.95; }
}
@media (max-width: 860px){

  /* 1) One-column layout: main → aside (stacked) */
  #chain16 .ch16-shell{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "main"
      "asideR" !important;
  }
  #chain16 .ch16-main{ grid-area: main !important; padding-top: 4rem; overflow: hidden; }
  #chain16 .ch16-rail-left{ display: none !important; }
  #chain16 .ch16-rail-right{
    grid-area: asideR !important;
    display: flex !important;
    position: static !important;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    border-left: 0 !important;
    border-top: 1px solid var(--ch16-line);
    padding: 16px !important;
    background: transparent !important;
  }
  #chain16 .ch16-rail-right .ch16-action{
    width: 100%; max-width: 520px;
    display: flex; flex-direction: row;
    align-items: center; justify-content: center;
    gap: 10px; text-align: center;
    padding: 12px 14px; border-radius: 14px;
    background: #fff; border: 1px solid var(--ch16-line);
  }

  /* 2) Hide the nav/topbar on mobile only */
  #chain16 .ch16-topbar,
  #chain16 .ch16-menu{ display: none !important; }

  /* 3) Panels: remove from layout when closed (fix “blank” overlay) */
  #chain16 .ch16-panel{
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: translate3d(100%,0,0);
    opacity: 0; pointer-events: none;
    z-index: 4000;
    display: block !important; /* exists, but off-canvas */
  }
  #chain16 .ch16-panel.is-open{
    transform: translate3d(0,0,0);
    opacity: 1; pointer-events: auto;
  }
  #chain16 .ch16-panel-inner{
    height: 100%; padding: 16px;
    display: flex; align-items: center; justify-content: center;
  }
  #chain16 .ch16-panel-content{
    width: 92%; max-height: calc(90vh - 48px);
    margin: 0 auto; overflow: auto; text-align: center;
  }

  /* Dots always behind content on mobile */
  #chain16 .ch16-bg{ z-index: 0 !important; }
}

/* =========================
   DESKTOP SAFETY RESET (≥ 861px)
   ========================= */
@media (min-width: 861px){
  /* restore your 3-column shell & nav on large screens */
  #chain16 .ch16-shell{
    grid-template-columns: var(--ch16-left) 1fr var(--ch16-right) !important;
    grid-template-areas: none !important;
  }
  #chain16 .ch16-topbar{ display: flex !important; }
  #chain16 .ch16-rail-right{ display: block !important; }
  /* desktop panels use the original right-drawer behaviour */
  #chain16 .ch16-panel{
    position: fixed; right: -420px; width: 420px; height: 100vh;
    border-left: 1px solid var(--ch16-line); box-shadow:-14px 0 30px rgba(0,0,0,.08);
    transform: none; opacity: 1; pointer-events: auto; display: block !important;
  }
  #chain16 .ch16-panel.is-open{ right: 0; }
}
/* ===== Center the RIGHT rail (desktop & mobile) ===== */
#chain16 .ch16-rail-right{
  /* center the whole column in both axes */
  display: grid !important;
  place-content: center !important;   /* vertical + horizontal */
  place-items: center !important;
  padding: 16px;
  min-height: 100vh;                  /* keep it centered in the viewport */
}

/* keep each action tight and centered */
#chain16 .ch16-rail-right .ch16-action{
  width: fit-content !important;      /* no full-width buttons */
  margin-inline: auto !important;
  display: inline-flex !important;
  flex-direction: column;             /* icon over label */
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 12px 16px;
}

/* icon container centered too */
#chain16 .ch16-rail-right .ch16-ico{ margin: 0 auto; }

/* ===== Ensure slide panels are perfectly centered ===== */
#chain16 .ch16-panel-inner{
  display: flex !important;
  align-items: center !important;     /* vertical center */
  justify-content: center !important; /* horizontal center */
  padding: 16px;
  height: 100%;
}
#chain16 .ch16-panel-content{
  width: min(420px, 92%);
  max-height: calc(100% - 48px);
  margin: 0 auto;
  overflow: auto;
  text-align: center;
}

/* ===== Mobile tweaks (≤ 860px): stack & keep center ===== */
@media (max-width: 860px){
  #chain16 .ch16-rail-right{
    grid-area: asideR !important;
    min-height: auto;                 /* let content size the block */
    padding: 18px;
  }
  #chain16 .ch16-rail-right .ch16-action{
    width: min(92vw, 480px) !important;
    flex-direction: row;              /* icon + label inline on phones */
    gap: 10px;
  }
}
  @media (max-width: 768px){
  .content-box{
    max-width: 90%;
    padding: 14px 16px;
  }

  .content-box h2{
    font-size: 20px;
    line-height: 1.15;
  }

  .content-box p{
    font-size: 13px;
    line-height: 1.45;
  }

  .content-box.top,
  .content-box.middle,
  .content-box.bottom{
    transform: translateX(0) !important;
  }
}
@media (max-width: 480px){
  .content-box{
    max-width: 92%;
    padding: 12px 14px;
  }

  .content-box h2{
    font-size: 17px;
    line-height: 1.1;
  }

  .content-box p{
    font-size: 12px;
    line-height: 1.35;
  }
}
@media (max-width: 768px){

  .why-wrap{
    display:flex;
    flex-direction:column;
    gap:20px;
    padding:20px 16px;
  }

  .why-left{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    width:100%;
    min-width:0;
    padding:0;
    margin:0;
  }

  .why-bar{
    display:block;
    width:56px;
    height:3px;
    margin:0 0 14px 0;
  }

  .why-title{
    display:block;
    white-space:normal;
    font-size:28px;
    line-height:0.95;
    letter-spacing:-0.02em;
    margin:0 0 14px;
    max-width:100%;
  }

  .why-kicker{
    font-size:14px;
    line-height:1.5;
    margin:0;
    max-width:100%;
  }

  .why-kicker br{
    display:none;
  }

  .why-right{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .why-panel{
    width:100%;
    min-height:auto;
    padding:18px 16px;
    border-radius:18px;
  }

  .experience-block{
    width:100%;
  }

  .experience-block h2{
    font-size:22px;
    line-height:1.15;
    margin:0 0 10px;
  }

  .experience-block h3{
    font-size:24px;
    line-height:1.1;
    margin:0 0 8px;
  }

  .experience-block p,
  .experience-block li,
  .step-box,
  .promise-item p{
    font-size:14px;
    line-height:1.5;
  }

  .industry-list{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .industry-card,
  .industry-card.full-width{
    width:100%;
    padding:14px;
  }

  .industry-card h3{
    font-size:18px;
    line-height:1.2;
    margin-bottom:10px;
  }

  .industry-card ul{
    padding-left:18px;
    margin:0;
  }

  .process-flow{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .step-item{
    width:100%;
    padding:14px;
    border-radius:16px;
  }

  .step-number{
    width:34px;
    height:34px;
    font-size:15px;
    margin-bottom:10px;
  }

  .step-item h4{
    font-size:16px !important;
    line-height:1.3;
    margin:0 0 8px;
  }

  .step-item h4 br,
  .step-box br{
    display:none;
  }

  .promise-block{
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .promise-text,
  .promise-steps{
    width:100%;
  }

  .promise-steps{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .promise-item{
    width:100%;
    padding:14px;
    border-radius:16px;
  }

  .promise-number{
    width:34px;
    height:34px;
    font-size:15px;
    margin-bottom:10px;
  }

  .cta-bubble{
    width:100%;
    margin-top:16px;
  }


  .seq{
    transform:none !important;
    opacity:1 !important;
  }
}

@media (max-width: 480px){

  .why-wrap{
    padding:16px 12px;
    gap:16px;
  }

  .why-title{
    font-size:22px;
    line-height:0.98;
  }

  .why-kicker{
    font-size:13px;
  }

  .why-panel{
    padding:16px 14px;
    border-radius:16px;
  }

  .experience-block h2{
    font-size:19px;
  }

  .experience-block h3{
    font-size:20px;
  }

  .experience-block p,
  .experience-block li,
  .step-box,
  .promise-item p{
    font-size:13px;
    line-height:1.45;
  }

  .industry-card h3,
  .step-item h4,
  .promise-item h4{
    font-size:15px !important;
  }
}
@media (max-width: 768px){
  .why-right{
    position: relative;
    left: -10px;
    width: calc(100% + 24px);
    margin-left: 0;
    padding-left: 0;
  }

  .why-panel{
    margin-left: 0;
  }
}
.why-wrap{
  overflow-x: hidden;
}
@media (max-width: 768px){
  .why-right{
    position: relative;
    left: -10px;
    width: calc(100% + 30px);
  }
}
@media (max-width: 768px){
  .why-right{
    translate: -10px 0;
  }
}
@media (max-width: 768px){
  .why-right{
    position: relative;
    left: -10px;
    transform: none;
  }
}
@media (max-width: 768px){
  .why-right{
    position: relative;
    left: -10px;
    transform: none;
  }
}
@media (max-width: 768px){
  .why-right{
    position: relative;
    transform: translateX(-10px); /* move left */
  }
}
@media (max-width: 768px){
  .partners-wrap{
    font-size: 42px;
    line-height: 0.95;
  }

  .partners-label{
    font-size: inherit;
    line-height: inherit;
    margin: 0;
  }
}
@media (max-width: 768px){
  .find-consultant{
    padding: 18px 14px;
  }

  .fc-header h2{
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 10px;
  }

  .fc-text{
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .fc-row{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fc-form input[type="text"],
  .fc-form input[type="email"]{
    width: 100%;
    min-width: 0;
    font-size: 14px;
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .fc-form label{
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 12px !important;
    line-height: 1.45;
  }

  .fc-form input[type="checkbox"]{
    margin-top: 3px;
    flex: 0 0 auto;
  }

  .fc-form .button-bubble{
    width: 100%;
    min-height: 46px;
    font-size: 14px;
    margin-top: 14px !important;
  }
}
@media (max-width: 480px){
  .find-consultant{
    padding: 16px 12px;
  }

  .fc-header h2{
    font-size: 19px;
  }

  .fc-text{
    font-size: 12px;
  }

  .fc-form input[type="text"],
  .fc-form input[type="email"]{
    font-size: 13px;
    padding: 11px 12px;
  }

  .fc-form .button-bubble{
    font-size: 13px;
    min-height: 44px;
  }
}
.find-consultant,
.fc-form{
  width: 90%;
  max-width: 90%;
  min-width: 0;
  box-sizing: border-box;
}
.find-consultant,
.fc-form,
.fc-row,
.fc-form input,
.fc-form button{
  box-sizing: border-box;
}
@media (max-width: 768px){
  .pin-grid{
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
  }

  .pin-grid__sticky{
    position: relative !important;
    top: auto !important;
    width: 100%;
    max-width: 100%;
  }

  .pin-grid__title{
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 16px;
  }

  .pin-grid__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .pin-grid__grid .card{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 14px 16px;
    box-sizing: border-box;

    font-size: 14px;
    line-height: 1.5;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pin-grid__stages{
    display: none;
  }
}
@media (max-width: 480px){
  .pin-grid{
    padding: 0 12px;
  }

  .pin-grid__title{
    font-size: 20px;
  }

  .pin-grid__grid .card{
    font-size: 13px;
    padding: 2px 4px;
  }
}
@media (max-width: 768px){
  .pin-grid__grid .card{
    min-width: 0 !important;
    height: auto !important;
    transform: none !important;
    margin: 0 !important;
  }
}

/* Final overflow guard for the full-width why section */
.hero.hero--why-sticky .why-smooth{
  width: calc(100% + (var(--pad-x) * 2));
  max-width: none;
  margin-inline: calc(var(--pad-x) * -1);
  padding-inline: 0;
  overflow-x: clip;
}

.hero.hero--why-sticky .why-wrap{
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
  overflow-x: clip;
}

.hero.hero--why-sticky .why-right{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  justify-items: stretch;
}

.hero.hero--why-sticky .why-panel,
.hero.hero--why-sticky .experience-block{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 960px){
  .hero.hero--why-sticky .why-smooth{
    width: calc(100% + (var(--pad-x) * 2));
    margin-inline: calc(var(--pad-x) * -1);
  }

  .hero.hero--why-sticky .why-wrap{
    padding-inline: 16px;
  }

  .hero.hero--why-sticky .why-right{
    position: relative;
    left: auto !important;
    width: 100% !important;
    max-width: 100%;
    margin-left: 0 !important;
    padding-left: 0 !important;
    transform: none !important;
    translate: none !important;
  }

  .hero.hero--why-sticky .why-panel{
    margin-left: 0 !important;
  }
}

/* Browser compatibility fallbacks: keep layout stable when newer CSS is missing. */
@supports not (overflow: clip){
  .header,
  .hero:not(.hero--why-sticky),
  #chain16 .ch16-main{
    overflow: hidden;
  }

  .hero.hero--why-sticky .why-smooth,
  .hero.hero--why-sticky .why-wrap{
    overflow-x: hidden;
  }
}

@supports not (container-type: inline-size){
  .hero.hero--why-sticky .why-title{
    font-size: clamp(28px, 6vw, 74px);
  }

  .hero.hero--why-sticky .why-kicker{
    font-size: clamp(13px, 1.45vw, 17px);
  }
}

@supports not (text-wrap: balance){
  .hero.hero--why-sticky .why-title,
  .hero.hero--why-sticky .why-kicker,
  html[lang="de"] .de-wordfit-target{
    text-wrap: wrap;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .header .chrome,
  .mobile-menu,
  .experience-block,
  .info-right,
  .cta-wrap,
  .bubble,
  .wb-banner{
    background-color: rgba(8, 12, 32, .88);
  }
}

/* ═══════════════════════════════════════════════════════════════
   APPLE POLISH — Premium UX Layer
   Subtile Verbesserungen: Lesbarkeit, 3D-Tiefe, Smooth-Hover
   ═══════════════════════════════════════════════════════════════ */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Sharp Apple-style headings */
h1, h2, h3, h4 {
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
}

/* Großzügigere Lesbarkeit für ältere Nutzer */
.info-copy,
.about-info-section p {
  line-height: 1.78;
  font-size: clamp(15px, 1.3vw, 21px);
}

/* Nav underline — Apple-Stil */
.nav > li > a:not(.nav-cta-pill),
.nav > li > a:not(.nav-cta-pill):visited {
  position: relative;
}
.nav > li > a:not(.nav-cta-pill)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--accent-teal);
  transition: width 0.22s ease;
  pointer-events: none;
}
.nav > li > a:not(.nav-cta-pill):hover::after { width: 100%; }

/* Primärer CTA — subtiler Puls */
@keyframes _ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,127,193,.4); }
  55%     { box-shadow: 0 0 0 9px rgba(74,127,193,0); }
}
.nav-cta-pill { animation: _ctaPulse 3.8s ease-in-out infinite; }

/* Buttons — Smooth lift on hover */
.button-bubble,
.intent-btn {
  transition: transform 0.22s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.22s ease,
              background 0.22s ease !important;
}
.button-bubble:hover,
.intent-btn:hover {
  transform: translateY(-2px) scale(1.025) !important;
  box-shadow: 0 10px 32px rgba(74,127,193,.3) !important;
}

/* 3D-Tiefe auf Branchen-Kästchen (Footer-Items) */
.footer-item {
  transition: transform 0.32s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.32s ease;
  transform-origin: center 110%;
  will-change: transform;
}
.footer-item:hover {
  transform: translateY(-5px) rotateX(4deg) scale(1.018);
  box-shadow: 0 18px 50px rgba(74,127,193,.22),
              0 2px 0 rgba(122,184,200,.12) inset;
}

/* Blog/Carousel-Karten — sanftes 3D-Lift */
.carousel-card,
.card {
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.28s ease !important;
  transform-origin: center bottom;
}
.carousel-card:hover,
.card:hover {
  transform: translateY(-7px) rotateX(2deg) !important;
  box-shadow: 0 22px 60px rgba(74,127,193,.2) !important;
}

/* Intent-Buttons — abgerundete Ecken wie Apple */
.intent-btn { border-radius: 8px !important; }

/* Accessibility: sichtbare Focus-Ringe für ältere Nutzer */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Divider zwischen Info-Rows — Apple-Haarlinie */
.about-info-section .info-row + .info-row {
  border-top: 1px solid rgba(255,255,255,.05);
}

/* Chrome-Nav Schatten für mehr Tiefe */
.header .chrome {
  box-shadow: 0 1px 0 rgba(255,255,255,.05),
              0 8px 28px rgba(0,0,0,.28) !important;
}

/* Scroll-FX: etwas weicherer Übergang */
:root {
  --fx-duration: 560ms;
  --fx-ease: cubic-bezier(.16,1,.3,1);
}

/* ═══════════════════════════════════════════════════════════════
   APPLE HOMEPAGE REDESIGN — Sektion-Rhythmus, Scroll-Reveal, Tiefe
   ═══════════════════════════════════════════════════════════════ */

/* SCROLL REVEAL — initialer Zustand (unsichtbar + leicht nach unten) */
.sr-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s cubic-bezier(.16,1,.3,1),
              transform 0.72s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.sr-reveal.sr-visible {
  opacity: 1;
  transform: translateY(0);
}
.sr-reveal.sr-d1 { transition-delay: 0.10s; }
.sr-reveal.sr-d2 { transition-delay: 0.20s; }
.sr-reveal.sr-d3 { transition-delay: 0.32s; }

/* Respektiert System-Einstellung für reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  .sr-reveal { transition: opacity 0.4s ease; transform: none; }
}

/* SECTION RHYTHMUS — glass cards, kein alternating-navy */
.experience-block {
  position: relative;
}

/* Makeover section */
.makeover-section {
  background: #040628 !important;
  border-top: 1px solid rgba(74,127,193,.14);
  border-bottom: 1px solid rgba(74,127,193,.14);
}

/* Makeover-Zahlen — Apple-Gradient-Text */
.makeover-stat h3 {
  font-size: clamp(44px, 5.5vw, 78px) !important;
  letter-spacing: -0.05em !important;
  background: linear-gradient(135deg, #fff 55%, rgba(122,184,200,.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.makeover-stat p {
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 0.35em;
}

/* Hall-Section — subtile Trennung */
#hall, .hall {
  border-top: 1px solid rgba(122,184,200,.07);
}

/* Box-Karten im Hall — 3D lift */
.box {
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.3s ease !important;
  transform-origin: center bottom;
  will-change: transform;
}
.box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(74,127,193,.2) !important;
}

/* Accordion-Items — cleaneres Apple-Feeling */
.acc-item {
  border-radius: 12px !important;
  margin-bottom: 6px;
  overflow: hidden;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.acc-item.acc-open {
  background: rgba(74,127,193,.07) !important;
  border-color: rgba(74,127,193,.28) !important;
}
.acc-btn {
  transition: color 0.15s ease;
}
.acc-item.acc-open .acc-btn .acc-title {
  color: rgba(122,184,200,.95);
}

/* Promise-Zahlen — Akzent-Gradient */
.promise-number {
  background: linear-gradient(135deg, var(--accent) 30%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800 !important;
}

/* Info-Row Breathing room */
.info-row {
  padding-top: clamp(2rem, 3.5vw, 5rem) !important;
  padding-bottom: clamp(2rem, 3.5vw, 5rem) !important;
}

/* Experience-Block Headings — größer, schärfer */
.experience-block > h3:first-of-type {
  font-size: clamp(22px, 2.6vw, 38px) !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 1.4em;
}

/* Branchen-Karten — 3D tilt ready + border */
.industry-card {
  transition: transform 0.32s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.32s ease,
              border-color 0.22s ease;
  transform-origin: center bottom;
  will-change: transform;
}
.industry-card:hover {
  transform: translateY(-6px) rotateX(2deg) !important;
  border-color: rgba(74,127,193,.35) !important;
  box-shadow: 0 20px 50px rgba(74,127,193,.16) !important;
}

/* Section-Divider zwischen content-Blöcken */
.experience-block + .experience-block {
  border-top: 1px solid rgba(255,255,255,.04);
}

/* ═══════════════════════════════════════════════════════════════
   WEISSE ZWISCHENSEKTIONEN — Benchmarking-Rhythmus
   #about-us, #service-portfolio, #adams-strategy-promise
   ═══════════════════════════════════════════════════════════════ */

article.info-row#about-us,
article.info-row#service-portfolio,
article.info-row#adams-strategy-promise {
  background: #f7f8fb;
  /* info-grid: left/right: var(--pad-x) + container padding-inline: var(--pad-x) = 2x */
  margin-left: calc(-2 * var(--pad-x));
  margin-right: calc(-2 * var(--pad-x));
  padding-left: calc(2 * var(--pad-x));
  padding-right: calc(2 * var(--pad-x));
  padding-top: clamp(40px, 5.5vw, 80px);
  padding-bottom: clamp(40px, 5.5vw, 80px);
  position: relative;
  z-index: 1;
  border-radius: 0 !important;
}

/* Trennlinie auf weißen Sektionen: navy statt teal */
article.info-row#about-us::before,
article.info-row#service-portfolio::before,
article.info-row#adams-strategy-promise::before {
  background: linear-gradient(90deg,
    rgba(4,6,40,.06) 0%,
    rgba(4,6,40,.18) 18%,
    rgba(4,6,40,.10) 65%,
    rgba(4,6,40,.02) 100%) !important;
}

/* Überschriften auf weißen Sektionen */
article.info-row#about-us .info-title,
article.info-row#service-portfolio .info-title,
article.info-row#adams-strategy-promise .info-title {
  color: #040628 !important;
}

/* Fließtext auf weißen Sektionen */
article.info-row#about-us .info-copy,
article.info-row#service-portfolio .info-copy,
article.info-row#adams-strategy-promise .info-copy {
  color: rgba(4,6,40,.62) !important;
}

/* Links auf weißen Sektionen */
article.info-row#about-us .eyebrow-link,
article.info-row#service-portfolio .eyebrow-link,
article.info-row#adams-strategy-promise .eyebrow-link {
  color: rgba(4,6,40,.55) !important;
}
article.info-row#about-us .eyebrow-link:hover,
article.info-row#service-portfolio .eyebrow-link:hover,
article.info-row#adams-strategy-promise .eyebrow-link:hover {
  color: #040628 !important;
  border-color: rgba(4,6,40,.3) !important;
}

/* Chip-Button auf weißen Sektionen */
article.info-row#about-us .btn-chip,
article.info-row#service-portfolio .btn-chip,
article.info-row#adams-strategy-promise .btn-chip {
  border-color: rgba(4,6,40,.2) !important;
  background: rgba(4,6,40,.04) !important;
  color: #040628 !important;
}
article.info-row#about-us .btn-chip:hover,
article.info-row#service-portfolio .btn-chip:hover,
article.info-row#adams-strategy-promise .btn-chip:hover {
  background: #040628 !important;
  color: #ffffff !important;
}

/* info-right Karte auf weißen Sektionen — dezenter Schatten statt Glow */
article.info-row#about-us .info-right,
article.info-row#service-portfolio .info-right,
article.info-row#adams-strategy-promise .info-right {
  box-shadow: inset 0 0 0 1px rgba(4,6,40,.08) !important;
  background: transparent !important;
}
article.info-row#about-us .info-right:hover,
article.info-row#service-portfolio .info-right:hover,
article.info-row#adams-strategy-promise .info-right:hover {
  background: rgba(4,6,40,.03) !important;
  box-shadow: inset 0 0 0 1px rgba(4,6,40,.14), 0 8px 32px rgba(4,6,40,.06) !important;
}

article.info-row#about-us .info-right:hover .info-copy,
article.info-row#service-portfolio .info-right:hover .info-copy,
article.info-row#adams-strategy-promise .info-right:hover .info-copy {
  color: rgba(4,6,40,.8) !important;
}

/* CTA in promise block — Apple button */
.promise-item .btn-chip,
.experience-block .btn-chip {
  transition: transform 0.22s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.22s ease,
              background 0.22s ease !important;
}
.promise-item .btn-chip:hover,
.experience-block .btn-chip:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(74,127,193,.28) !important;
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SEKTIONEN — individuell gestaltet
   ═══════════════════════════════════════════════════════════════ */

/* Gemeinsame Eyebrow-Labels */
.hp-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 14px;
}
.hp-eyebrow--light { color: rgba(255,255,255,.45); }

/* Einleitungstext unter Sektions-Überschriften */
.hp-section-intro {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 760px;
  margin: 16px 0 0;
}
.hp-section-intro--dark {
  color: rgba(4,6,40,.62);
}
.hp-meaning-text {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  text-align: center;
}

/* ── 1. ÜBER UNS — zentriert, Pillbox ───────────────────────── */
article.info-row.hp-about {
  display: block !important;
  text-align: center;
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
}
.hp-about-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hp-about-title {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #040628;
  margin: 0 0 20px;
}
.hp-about-text {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(4,6,40,.6);
  line-height: 1.7;
  margin: 0 0 28px;
}
.hp-about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.hp-pill {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(4,6,40,.15);
  background: rgba(4,6,40,.05);
  color: rgba(4,6,40,.7);
  font-size: 13px;
  font-weight: 600;
}
.hp-about-cta {
  margin: 0 auto;
}

/* ── 2. BRANCHENFOKUS — 3 Karten auf dunkel ─────────────────── */
article.info-row.hp-industries {
  display: block !important;
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
}
.hp-section-head {
  margin-bottom: clamp(32px, 4vw, 52px);
}
.hp-section-title {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}
.hp-section-title--dark { color: #040628 !important; }
.hp-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hp-ind-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 2.8vw, 36px);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hp-ind-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(122,184,200,.35);
  transform: translateY(-4px);
}
.hp-ind-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-teal);
}
.hp-ind-name {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.hp-ind-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.hp-ind-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}

/* ── 3. SERVICE-PORTFOLIO — 3 Schritte mit Pfeilen ──────────── */
article.info-row.hp-services {
  display: block !important;
  background: #edf2f8 !important;
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
}
.hp-section-head--dark .hp-eyebrow { color: var(--accent); }
.hp-svc-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: clamp(28px, 3.5vw, 44px) 0 32px;
}
.hp-svc-step {
  flex: 1;
  padding: clamp(20px, 2.5vw, 32px);
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(4,6,40,.07);
}
.hp-svc-arrow {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  font-size: 22px;
  color: rgba(4,6,40,.2);
  padding-top: 28px;
  align-self: center;
}
.hp-svc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
}
.hp-svc-name {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
  color: #040628;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.hp-svc-desc {
  font-size: 14px;
  color: rgba(4,6,40,.58);
  line-height: 1.6;
  margin: 0;
}
.hp-svc-cta { margin-top: 0; }

/* ── 4. WAS ADAMS BEDEUTET — Zitat + 3 Werte ────────────────── */
article.info-row.hp-meaning {
  display: block !important;
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
  text-align: center;
}
.hp-meaning-quote {
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.02em;
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 860px;
  border: none;
  padding: 0;
  font-style: italic;
}
.hp-meaning-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: left;
}
.hp-val {
  padding: clamp(20px, 2vw, 28px);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
}
.hp-val-num {
  display: block;
  font-size: 20px;
  color: var(--accent-teal);
  margin-bottom: 10px;
}
.hp-val-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.hp-val-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
}
.hp-meaning-cta { margin: 0 auto; }

/* ── 5. VERSPRECHEN — nummerierte Punkte ─────────────────────── */
article.info-row.hp-promise {
  display: block !important;
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
}
.hp-promise-header { margin-bottom: clamp(32px, 4vw, 48px); }
.hp-promise-title { color: #040628; }
.hp-promise-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-bottom: 36px;
}
.hp-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: clamp(22px, 2.5vw, 32px) 0;
  border-bottom: 1px solid rgba(4,6,40,.08);
}
.hp-promise-item:first-child { border-top: 1px solid rgba(4,6,40,.08); }
.hp-promise-n {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -0.04em;
}
.hp-promise-name {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  color: #040628;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.hp-promise-desc {
  font-size: 14px;
  color: rgba(4,6,40,.58);
  line-height: 1.6;
  margin: 0;
}

/* ── 6. WISSEN — große Zahl links, Text rechts ───────────────── */
article.info-row.hp-knowledge {
  display: grid !important;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
}
.hp-know-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.hp-know-bignum {
  font-size: clamp(88px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #fff 40%, rgba(122,184,200,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-know-bignum sup {
  font-size: 0.4em;
  vertical-align: super;
  -webkit-text-fill-color: rgba(122,184,200,.8);
}
.hp-know-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.hp-know-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.hp-know-text {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Responsive — Sektionen unter 768px stacken */
@media (max-width: 768px) {
  .hp-ind-grid,
  .hp-meaning-values { grid-template-columns: 1fr; }
  .hp-svc-steps { flex-direction: column; }
  .hp-svc-arrow { display: none; }
  article.info-row.hp-knowledge { grid-template-columns: 1fr !important; }
  .hp-know-bignum { font-size: 80px; }
}
