/* ============================================================
   Lift Your Brand — shared design system
   Tokens + components per 01-design-system.md
   ============================================================ */

:root {
  /* Brand accent — violet ("Lila") */
  --accent:        #7C3AED;
  --accent-strong: #6D28D9;
  --accent-soft:   #2A2342;
  --accent-text:   #C4B5FD;

  /* Ink & surfaces — dark theme */
  --ink:      #0B0D13;
  --ink-2:    #11141C;
  --bg:       #12141C;
  --surface:  #181B25;
  --surface-2:#242837;
  --card:     linear-gradient(180deg, #1E222E 0%, #151823 100%);

  /* Text */
  --text:     #F2F4F8;
  --text-on-dark: #FFFFFF;
  --muted:    #9BA1AF;
  --muted-on-dark: #AEB4BE;

  /* Lines & feedback */
  --border:   rgba(255,255,255,.12);
  --border-dark: rgba(255,255,255,.12);
  --success:  #2ECC85;
  --warning:  #E8A33D;

  /* Shape & depth */
  --radius:   16px;
  --radius-sm:10px;
  --radius-pill: 999px;
  --shadow:   0 12px 40px rgba(0,0,0,.45);
  --shadow-sm:0 4px 16px rgba(0,0,0,.3);

  /* Rhythm */
  --section-y: 96px;
  --container: 1200px;
  --gutter:   24px;

  --font: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #A78BFA; text-decoration: none; }
a:hover { color: #C4B5FD; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; text-wrap: pretty; }
p { margin: 0 0 1em 0; text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--dark .muted { color: var(--muted-on-dark); }
.muted { color: var(--muted); }

/* ---------- Type ---------- */
.display { font-size: clamp(34px, 5vw, 64px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.h1 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; }
.h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.12; }
.h3 { font-size: clamp(20px, 1.6vw, 23px); font-weight: 700; }
.lead { font-size: clamp(17px, 1.4vw, 19px); }
.eyebrow {
  display: block; font-size: 13.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #B69CF5; margin-bottom: 16px;
}
.section--dark .eyebrow { color: #B69CF5; }
.accent { color: #A78BFA; }
.section--dark .accent { color: #A78BFA; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p { color: var(--muted); margin-top: 16px; margin-bottom: 0; }
.section--dark .section-head p { color: var(--muted-on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 16px; font-weight: 700; cursor: pointer;
  border-radius: var(--radius-pill); padding: 16px 28px; line-height: 1.2;
  border: 1.5px solid transparent; transition: background .15s, border-color .15s, color .15s, transform .1s;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-strong); color: #fff; }
.btn--ghost-dark { background: transparent; color: #fff; border-color: var(--border-dark); }
.btn--ghost-dark:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: rgba(255,255,255,.45); color: var(--text); }
.btn--sm { padding: 10px 20px; font-size: 14.5px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn[disabled]:active { transform: none; }

.link-arrow { font-weight: 700; color: #A78BFA; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: "→"; transition: transform .15s; }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow:hover { color: #C4B5FD; }

/* ---------- Chips & badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  background: var(--accent-soft); color: var(--accent-text);
}
.chip--outline { background: transparent; border: 1.5px solid var(--border); color: var(--muted); }
.chip--dark { background: rgba(255,255,255,.08); color: #fff; border: 1px solid var(--border-dark); }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--muted);
  background: rgba(255,255,255,.04);
}
.badge small { font-weight: 500; letter-spacing: 0; color: var(--muted); }
.section--dark .badge { background: rgba(255,255,255,.06); border-color: var(--border-dark); color: var(--muted-on-dark); }

/* ---------- Placeholders (assets to be swapped in) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, #1A1E28 0 14px, #151820 14px 28px);
  display: flex; align-items: center; justify-content: center; min-height: 180px;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12.5px; color: #7C8290; background: rgba(10,12,18,.8);
  padding: 6px 12px; border-radius: 6px; letter-spacing: .02em;
  max-width: 80%; text-align: center;
}
.ph--dark {
  background: repeating-linear-gradient(135deg, #181C24 0 14px, #131720 14px 28px);
}
.ph--dark::after { background: rgba(14,17,22,.8); color: #7C8290; }
.ph--video::before {
  content: "▶"; position: absolute; font-size: 22px; color: #7C8290;
  top: 18px; left: 22px; opacity: .7;
}
/* When a .ph holds a real image, the image fills the sized box and the label/scaffold are hidden */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph:has(img) { background: none; }
.ph:has(img)::after, .ph:has(img)::before { display: none; }

/* Real partner logos in the marquee */
.logo-wall__logo {
  height: 88px; width: auto; max-width: 300px; object-fit: contain; flex: none;
  filter: grayscale(1); opacity: .55; transition: opacity .2s, filter .2s;
}
.logo-wall__logo:hover { filter: grayscale(0); opacity: 1; }

/* Accreditation badge images (BAFA · go-digital · Google) */
.badge-img-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.badge-img-row img { height: 56px; width: auto; object-fit: contain; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .25s, box-shadow .25s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-header__logo img { height: 22px; width: auto; }
.site-header--solid { background: rgba(13,15,22,.92); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,.06); }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav__item { position: relative; }
.site-nav__link {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px;
  font-size: 15.5px; font-weight: 600; color: #fff; border-radius: var(--radius-pill);
  background: none; border: none; font-family: inherit; cursor: pointer;
}
.site-nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-header--solid .site-nav__link { color: var(--text); }
.site-header--solid .site-nav__link:hover { background: var(--surface); color: var(--text); }
.site-nav__link .caret { font-size: 10px; opacity: .7; transition: transform .15s; }
.site-nav__item.open .caret { transform: rotate(180deg); }
.site-nav__cta { margin-left: 12px; }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #171B25; color: var(--text); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; width: 380px; display: none;
  border: 1px solid rgba(255,255,255,.1);
}
/* invisible bridge so the pointer can cross the gap without closing the menu */
.dropdown::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.site-nav__item.open .dropdown { display: block; }
.dropdown__intro { font-size: 13.5px; color: var(--muted); margin: 0 0 14px 4px; }
.dropdown__card {
  display: block; padding: 13px 14px; border-radius: var(--radius-sm); text-decoration: none;
}
.dropdown__card:hover { background: rgba(124,58,237,.14); }
.dropdown__card strong { display: block; color: var(--text); font-size: 15.5px; }
.dropdown__card span { font-size: 13.5px; color: var(--muted); }
.dropdown__hotline {
  margin-top: 14px; padding: 12px 14px 2px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; color: var(--muted);
}
.dropdown__hotline a { font-weight: 700; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: background .25s; }
.site-header--solid .burger span { background: var(--text); }

/* Mobile off-canvas */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--ink); color: #fff;
  padding: 90px 28px 28px; display: none; flex-direction: column; gap: 4px; overflow: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 22px; font-weight: 700; padding: 12px 0; border-bottom: 1px solid var(--border-dark); }
.mobile-menu a.sub { font-size: 17px; font-weight: 500; color: var(--muted-on-dark); padding-left: 16px; }
.mobile-menu .btn { margin-top: 24px; }
.mobile-menu__close { position: absolute; top: 22px; right: 22px; background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; padding: 8px; }

/* Slim header (Karriere) */
.slim-header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; }
.slim-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.slim-header a.back { color: #fff; font-weight: 600; font-size: 15px; }
.slim-header img { height: 26px; }
.slim-header--light a.back { color: var(--text); }
.slim-header--light img { }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  padding: 180px 0 110px; min-height: 560px; display: flex; align-items: center;
}
.hero__media { position: absolute; inset: 0; border-radius: 0; min-height: 0; }
.hero__media::after { position: absolute; bottom: 24px; right: 24px; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,17,22,.72), rgba(14,17,22,.88)); }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted-on-dark); max-width: 640px; margin: 24px 0 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero--split .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero__checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.hero__checklist li { display: flex; gap: 12px; align-items: flex-start; color: #E7E9EE; font-size: 16px; }
.hero__checklist li::before { content: "✓"; color: var(--success); font-weight: 800; flex: none; }

/* ---------- Logo wall ---------- */
.logo-wall { padding: 48px 0; border-bottom: 1px solid var(--border); }
.logo-wall__caption { text-align: center; font-size: 14.5px; color: var(--muted); margin: 0 0 26px; }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 38s linear infinite; align-items: center; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }
.wordmark {
  font-weight: 800; font-size: 19px; letter-spacing: .04em; color: #9CA3AF;
  white-space: nowrap; text-transform: uppercase; filter: grayscale(1); user-select: none;
}
.wordmark--serif { font-family: Georgia, serif; text-transform: none; font-weight: 700; }
.wordmark--light { font-weight: 500; letter-spacing: .18em; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.section--surface .card { border-color: rgba(255,255,255,.07); }
.card .h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card--hover { transition: transform .18s, box-shadow .18s; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Pain cards */
.pain-card .h3 { color: var(--text); }
.pain-card p { color: var(--muted); font-size: 15.5px; }

/* Value grid */
.value-grid { display: grid; gap: 8px 40px; grid-template-columns: 1fr 1fr; }
.value-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.value-item strong { display: block; font-size: 18px; font-weight: 700; }
.value-item span { color: var(--muted); font-size: 15.5px; }

/* Service cards */
.service-card { display: block; text-decoration: none; color: var(--text); overflow: hidden; padding: 0; }
.service-card .ph { border-radius: 0; min-height: 220px; }
.service-card__body { padding: 26px 28px 30px; }
.service-card__body .h3 { margin-bottom: 8px; }
.service-card__body p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }

/* ---------- Case slider ---------- */
.case-slider { position: relative; }
.case-slider__viewport { overflow: hidden; }
.case-slider__track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.case-slide { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.case-slide__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.case-slide__visual .ph { min-height: 300px; }
.case-slide .eyebrow { margin-bottom: 10px; }
.case-slide__result { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.case-slide__result li { display: flex; gap: 12px; font-size: 16px; }
.case-slide__result li::before { content: "✓"; color: var(--success); font-weight: 800; flex: none; }
.case-slide__result-label { font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 22px 0 0; }
.case-slider__nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; align-items: center; }
.case-slider__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border);
  background: transparent; cursor: pointer; font-size: 18px; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
}
.case-slider__btn:hover { border-color: #A78BFA; color: #A78BFA; }
.case-slider__dots { display: flex; gap: 8px; margin-left: 10px; }
.case-slider__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--surface-2); border: none; padding: 0; cursor: pointer; }
.case-slider__dot.active { background: var(--accent); }

/* ---------- Stats band ---------- */
.stats-band { display: flex; flex-wrap: wrap; gap: 40px 64px; justify-content: space-between; }
.stat { min-width: 140px; }
.stat__num { font-size: clamp(40px, 5vw, 76px); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.stat__num .accent { color: #A78BFA; }
.stat__label { color: var(--muted-on-dark); font-size: 15px; margin-top: 10px; }

/* ---------- Process steps ---------- */
.ribbon {
  display: inline-flex; padding: 9px 22px; border-radius: var(--radius-pill);
  background: var(--accent-soft); color: var(--accent-text); font-weight: 700; font-size: 14.5px;
  margin-bottom: 28px;
}
.process-step { position: relative; padding-top: 26px; }
.process-step__num {
  position: absolute; top: -2px; left: 24px; background: var(--accent); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 21px; box-shadow: var(--shadow-sm);
  z-index: 2;
}
.process-step .card { padding-top: 44px; height: 100%; }
.process-step .ph { min-height: 150px; margin-bottom: 20px; border-radius: var(--radius-sm); }
.process-step__kicker { font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.process-step p { font-size: 15px; color: var(--muted); margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 18px; font-weight: 700; color: var(--text);
  padding: 22px 44px 22px 0; position: relative;
}
.faq__q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: #A78BFA; transition: transform .2s;
}
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { color: var(--muted); padding: 0 40px 22px 0; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; }
.cta-band__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.cta-band__intro .h2 { margin-bottom: 18px; }
.cta-band__intro p { color: var(--muted-on-dark); }
.cta-band__intro .ph { margin-top: 30px; min-height: 260px; }

/* ---------- Brand check card ---------- */
.brand-check {
  border-radius: var(--radius); background: var(--accent); color: #fff;
  padding: 48px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow);
}
.brand-check .h2 { color: #fff; }
.brand-check p { color: rgba(255,255,255,.85); margin: 14px 0 0; }
.brand-check form { display: grid; gap: 12px; }
.brand-check input {
  border: none; border-radius: var(--radius-sm); padding: 14px 16px; font-family: inherit;
  font-size: 15.5px; width: 100%; background: rgba(255,255,255,.95); color: #1A1D23;
}
.brand-check .btn { background: var(--ink); color: #fff; justify-content: center; }
.brand-check .btn:hover { background: #000; }
.brand-check .chip { background: rgba(255,255,255,.16); color: #fff; margin-bottom: 16px; }

/* ---------- Quote band ---------- */
.quote-band { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; }
.quote-band .ph { min-height: 340px; }
.quote-band blockquote { margin: 0; font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.quote-band cite { display: block; font-style: normal; color: var(--muted); font-size: 16px; margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 80px 0 36px; }
.site-footer__love { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 56px; }
.site-footer__love .heart { height: .72em; width: auto; vertical-align: 0; display: inline-block; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark); }
.site-footer__col h4 { font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-on-dark); margin-bottom: 18px; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer__col a { color: #E7E9EE; font-size: 15.5px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__brand img { height: 26px; margin-bottom: 22px; }
.site-footer__brand p { color: var(--muted-on-dark); font-size: 14.5px; max-width: 320px; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 14px; color: var(--muted-on-dark); }
.site-footer__legal nav { display: flex; gap: 24px; }
.site-footer__legal a { color: var(--muted-on-dark); }
.site-footer__legal a:hover { color: #fff; }

/* ---------- Lila chat ---------- */
.lila-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 250;
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--accent); color: #fff; font-size: 24px; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.lila-fab:hover { background: var(--accent-strong); transform: scale(1.05); }
.lila-panel {
  position: fixed; right: 24px; bottom: 96px; z-index: 250; width: 340px;
  background: #171B25; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.1); display: none; flex-direction: column; overflow: hidden;
}
.lila-panel.open { display: flex; }
.lila-panel__head { background: var(--ink); color: #fff; padding: 18px 20px; display: flex; gap: 14px; align-items: center; }
.lila-panel__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; flex: none; }
.lila-panel__head strong { display: block; font-size: 16px; }
.lila-panel__head span { font-size: 12.5px; color: var(--muted-on-dark); display: flex; align-items: center; gap: 6px; }
.lila-panel__head span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.lila-panel__body { padding: 18px; display: grid; gap: 10px; max-height: 280px; overflow: auto; }
.lila-msg { background: var(--surface-2); border-radius: 14px 14px 14px 4px; padding: 11px 14px; font-size: 14.5px; max-width: 85%; color: var(--text); }
.lila-msg--user { background: var(--accent-soft); color: var(--accent-text); border-radius: 14px 14px 4px 14px; justify-self: end; }
.lila-panel__input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.lila-panel__input input { flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-pill); padding: 10px 16px; font-family: inherit; font-size: 14.5px; background: rgba(0,0,0,.25); color: var(--text); }
.lila-panel__input button { border: none; background: var(--accent); color: #fff; border-radius: 50%; width: 42px; height: 42px; cursor: pointer; font-size: 16px; flex: none; }
.lila-panel__consent { font-size: 11.5px; color: var(--muted); padding: 0 14px 12px; margin: 0; }

/* ---------- Split blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .ph { min-height: 380px; }
.checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; }
.checklist li::before { content: "✓"; color: var(--success); font-weight: 800; flex: none; margin-top: 1px; }

/* ---------- Forms (generic) ---------- */
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 15px;
  font-family: inherit; font-size: 15.5px; background: rgba(0,0,0,.25); color: var(--text); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #6B7180; }
.field select option { background: #181B25; color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(124,58,237,.25); }
.field--error input { border-color: #F87171; }
.field__error { font-size: 13px; color: #F87171; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: none; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 720px; margin: 0 auto; padding: 140px var(--gutter) 96px; }
.legal-wrap h1 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; margin-bottom: 8px; }
.legal-wrap .stand { color: var(--muted); font-size: 14.5px; margin-bottom: 40px; }
.legal-wrap h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; }
.legal-wrap h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.legal-wrap p, .legal-wrap li { color: #C2C7D2; font-size: 16px; }
.legal-toc { background: var(--surface); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 36px; }
.legal-toc ol { margin: 8px 0 0; padding-left: 20px; display: grid; gap: 6px; font-size: 15px; }
.legal-note { background: var(--accent-soft); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; color: var(--accent-text); }
.legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.legal-tabs a { padding: 9px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--border); font-size: 14.5px; font-weight: 600; color: var(--muted); }
.legal-tabs a.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  :root { --section-y: 64px; }
  .site-nav { display: none; }
  .burger { display: block; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero--split .container { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .cta-band__grid { grid-template-columns: 1fr; }
  .quote-band { grid-template-columns: 1fr; }
  .brand-check { grid-template-columns: 1fr; padding: 36px; }
  .case-slide { grid-template-columns: 1fr; gap: 32px; }
  .value-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 80px; }
  .stats-band { gap: 28px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .lila-panel { width: calc(100vw - 32px); right: 16px; }
  .pillar { grid-template-columns: 1fr !important; }
  .btn { white-space: normal; text-align: center; }
  .brand-check { padding: 28px 22px; }
  .quote-band .ph { min-height: 240px; }
  .case-slide__visual .ph { min-height: 180px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .section-head { margin-bottom: 36px; }
}

/* ===== Animated orbit (shared — partnerschaft hero + CTA-band team photo) ===== */
.orbit-hero { position: relative; width: min(520px, 88vw); aspect-ratio: 1; margin: 0 auto; }
.orbit-hero::before {
  content: ""; position: absolute; inset: -18%; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(167,139,250,.32), rgba(124,58,237,.14) 42%, transparent 68%);
  animation: orbit-glow 7s ease-in-out infinite; pointer-events: none;
}
@keyframes orbit-glow { 0%, 100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.orbit-hero__photo {
  position: absolute; inset: 6%; border-radius: 50%; overflow: hidden; z-index: 3;
  background: linear-gradient(140deg, #BFD4F5 0%, #C9C2F0 45%, #9F86E8 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  animation: orbit-float 9s ease-in-out infinite;
}
@keyframes orbit-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.orbit-hero__photo .ph { position: absolute; inset: 0; margin: 0; border-radius: 50%; min-height: 0; background: transparent; }
.orbit-hero__ring { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit-hero__ring--outer { inset: 0; border: 1.5px dashed rgba(167,139,250,.4); animation: orbit-spin 46s linear infinite; }
.orbit-hero__ring--arc {
  inset: 5%; border: 1.5px solid transparent;
  background: conic-gradient(from 0deg, rgba(167,139,250,.9), rgba(96,165,250,.45) 18%, transparent 32%, transparent 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: orbit-spin-rev 28s linear infinite;
}
.orbit-hero__ring--breathe { inset: -7%; border: 1px solid rgba(255,255,255,.14); animation: orbit-breathe 6s ease-in-out infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-rev { to { transform: rotate(-360deg); } }
@keyframes orbit-breathe { 0%, 100% { opacity: .1; transform: scale(.985); } 50% { opacity: .5; transform: scale(1); } }
.orbit-hero__carrier { position: absolute; inset: 0; border-radius: 50%; pointer-events: none; animation: orbit-spin linear infinite; }
.orbit-hero__carrier.c2 { inset: 5%; animation-name: orbit-spin-rev; }
.orbit-hero__carrier .dot {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: linear-gradient(135deg, #A78BFA, #60A5FA); box-shadow: 0 0 14px rgba(167,139,250,.8);
}
.orbit-hero__carrier .dot--sm { width: 9px; height: 9px; top: auto; bottom: -5px; box-shadow: 0 0 10px rgba(96,165,250,.7); }
.orbit-hero__sphere {
  position: absolute; width: 58px; height: 58px; border-radius: 50%; z-index: 4; right: 2%; bottom: 14%;
  background: radial-gradient(circle at 32% 30%, #C4B5FD, #7C3AED 70%); box-shadow: 0 14px 38px rgba(124,58,237,.5);
  animation: orbit-float 7s ease-in-out infinite reverse;
}
.orbit-hero__sphere--sm {
  width: 26px; height: 26px; right: auto; left: 4%; top: 16%; bottom: auto; z-index: 2;
  background: radial-gradient(circle at 32% 30%, #BFDBFE, #60A5FA 75%); box-shadow: 0 10px 26px rgba(96,165,250,.45);
  animation-duration: 11s; animation-direction: normal;
}
/* CTA-band variant: smaller, left-aligned in the intro column */
.cta-band .orbit-hero--cta { width: min(360px, 80%); margin: -14px 0 0; }
/* show the full team photo inside the circle — square photo fills it exactly, no crop needed */
.orbit-hero--cta .orbit-hero__photo .ph img { object-fit: cover; object-position: center top; transform: scale(1.68); transform-origin: center top; }
/* enlarge the photo disc so it reaches closer to the orbit ring (less dark margin at top) */
.orbit-hero--cta .orbit-hero__photo { inset: 2%; }
@media (prefers-reduced-motion: reduce) {
  .orbit-hero::before, .orbit-hero__photo, .orbit-hero__ring, .orbit-hero__carrier,
  .orbit-hero__sphere { animation: none; }
}
