/* ============================================================
   ADVAIS – Shared Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --violet-deep:  #6D28D9;
  --violet-light: #A78BFA;
  --ink:          #1A1333;
  --muted:        #6B6680;
  --bg:           #FFFFFF;
  --bg-soft:      #F7F5FF;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(109, 40, 217, 0.08);
  --shadow-md: 0 8px 24px rgba(109, 40, 217, 0.12);
  --shadow-lg: 0 16px 48px rgba(109, 40, 217, 0.16);

  --transition:      0.25s ease;
  --transition-slow: 0.4s ease;

  --max-width:    1180px;
  --header-height: 76px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--violet-deep);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: inherit; /* behält die aktuelle Linkfarbe – kein Kontrastproblem */
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
a:focus-visible {
  outline: 3px solid var(--violet-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Auf dunklen Flächen ist --violet-light als Hover erlaubt (6,51:1 auf dunklem Hintergrund) */
.hero--home a:hover,
.hero--service a:hover,
.footer a:hover,
.cta-band a:hover,
.statement-section a:hover,
.demo-anruf a:hover,
.vision-section a:hover {
  color: var(--violet-light);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

ul, ol { list-style: none; }

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section          { padding-block: var(--space-2xl); }
.section--soft    { background: var(--bg-soft); }
.section--dark    { background: var(--ink); }

.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
  text-align: center;
  margin-inline: auto;
}

.text-center { text-align: center; }

/* ============================================================
   5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible {
  outline: 3px solid var(--violet-light);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  color: #fff;
}
.btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--violet-deep);
  border-color: var(--violet-deep);
}
.btn--outline:hover {
  background: var(--violet-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--violet-deep);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--bg-soft);
  color: var(--violet-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ============================================================
   6. Header & Navigation
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header > .container { height: 100%; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo img { height: 42px; width: auto; object-fit: contain; }

/* Desktop nav */
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 0.4rem; }

.nav__link {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  color: var(--violet-deep) !important; /* Header ist hell: explizit auf deep setzen */
  background: var(--bg-soft);
  text-decoration: none;
}
.nav__link.active { font-weight: 600; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  flex-shrink: 0;
}
.lang-switcher a {
  color: var(--muted);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.lang-switcher a:hover { color: var(--violet-deep); }
.lang-switcher a.active {
  color: var(--violet-deep);
  background: var(--bg-soft);
}
.lang-switcher span { color: rgba(107,102,128,0.4); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.burger:hover { background: var(--bg-soft); }
.burger:focus-visible { outline: 3px solid var(--violet-light); outline-offset: 3px; }

.burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.burger.open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 2rem 1.5rem 3rem;
  z-index: 99;
  overflow-y: auto;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid rgba(109, 40, 217, 0.08);
}
.nav-mobile.open { display: flex; }

.nav-mobile__list { display: flex; flex-direction: column; gap: 0.2rem; }

.nav-mobile__link {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: all var(--transition);
}
.nav-mobile__link:hover,
.nav-mobile__link.active {
  color: var(--violet-deep) !important;
  background: var(--bg-soft);
  text-decoration: none;
}
.nav-mobile__link.active { font-weight: 600; }

.nav-mobile__lang {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  border-top: 1px solid rgba(109, 40, 217, 0.08);
  padding-top: 1.25rem;
}
.nav-mobile__lang a { color: var(--muted); padding: 0.25rem 0.5rem; border-radius: 4px; }
.nav-mobile__lang a.active { color: var(--violet-deep); background: var(--bg-soft); }

.nav-mobile__cta { margin-top: auto; padding-top: 1.25rem; }

/* ============================================================
   7. Hero – Home
   ============================================================ */
.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(160deg, var(--bg) 45%, var(--bg-soft) 100%);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--violet-deep);
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 520px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Geometric visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__graphic {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  position: relative;
}

.geo {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
}
.geo--1 {
  width: 340px; height: 340px;
  background: linear-gradient(135deg, rgba(109,40,217,0.1), rgba(167,139,250,0.05));
  transform: translate(-50%,-50%);
}
.geo--2 {
  width: 230px; height: 230px;
  background: linear-gradient(135deg, rgba(109,40,217,0.16), rgba(167,139,250,0.08));
  transform: translate(-50%,-50%);
}
.geo--3 {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  transform: translate(-50%,-50%);
  opacity: 0.9;
}

.geo-ring {
  position: absolute;
  border-radius: 50%;
  left: 50%; top: 50%;
  border: 1.5px solid rgba(109,40,217,0.12);
}
.geo-ring--1 {
  width: 410px; height: 410px;
  transform: translate(-50%,-50%);
  animation: spin-slow 35s linear infinite;
}
.geo-ring--2 {
  width: 490px; height: 490px;
  transform: translate(-50%,-50%);
  border-color: rgba(167,139,250,0.08);
  animation: spin-slow 50s linear infinite reverse;
}

.geo-node {
  position: absolute;
  width: 9px; height: 9px;
  background: var(--violet-light);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(167,139,250,0.5);
}
.geo-node--1 { top: 12%; left: 22%; animation: float 4.5s ease-in-out infinite; }
.geo-node--2 { top: 68%; right: 18%; animation: float 5.5s ease-in-out infinite 1.2s; }
.geo-node--3 { bottom: 18%; left: 32%; animation: float 6s ease-in-out infinite 2.4s; }

@keyframes spin-slow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Hero – Service pages */
.hero--service {
  background: linear-gradient(135deg, var(--violet-deep) 0%, #4c1d95 55%, #2d1666 100%);
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  text-align: center;
}
.hero--service .hero__title,
.hero--service h1 { color: #fff; margin-bottom: 1.25rem; }
.hero--service .hero__subtitle { color: rgba(255,255,255,0.78); margin-inline: auto; }
.hero--service .hero__label { color: rgba(255,255,255,0.65); justify-content: center; }
.hero--service .hero__label::before { background: rgba(255,255,255,0.4); }
.hero--service .hero__ctas { justify-content: center; }

/* ============================================================
   8. Service Cards (Home teasers)
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--bg);
  border: 1px solid rgba(109,40,217,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(109,40,217,0.2);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.service-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card__text {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-card__link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--violet-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.7rem; color: var(--violet-deep); }
.service-card__link::after { content: '→'; }

/* ============================================================
   9. Process Steps
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet-deep), var(--violet-light));
  opacity: 0.2;
}

.process-step { text-align: center; }
.process-step__number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step__title { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step__text { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ============================================================
   10. Why ADVAIS
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-lg);
}
.why-item { display: flex; flex-direction: column; gap: 0.75rem; }
.why-item__icon {
  font-size: 1.75rem;
  width: 58px; height: 58px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item__title { font-size: 1.05rem; font-weight: 600; }
.why-item__text { color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

/* ============================================================
   11. CTA Band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--violet-deep), #4c1d95, var(--ink));
  padding-block: 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.05);
}
.cta-band::before { width: 480px; height: 480px; top: -120px; right: -120px; }
.cta-band::after  { width: 560px; height: 560px; bottom: -180px; left: -120px; }

.cta-band__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 1rem;
}
.cta-band__title {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.cta-band__text {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.75;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   12. Feature Items (Service detail pages)
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-lg);
}
.feature-item {
  background: var(--bg);
  border: 1px solid rgba(109,40,217,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: rgba(109,40,217,0.22);
  box-shadow: var(--shadow-sm);
}
.feature-item__icon { font-size: 1.4rem; margin-bottom: 0.875rem; }
.feature-item__title { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-item__text { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* Problem / "Für wen" */
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem__list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.problem__item { display: flex; gap: 0.875rem; align-items: flex-start; }
.problem__item-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.problem__item-text { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.problem__item-text strong { color: var(--ink); font-weight: 600; }

.problem__visual {
  background: linear-gradient(135deg, var(--bg-soft), rgba(167,139,250,0.12));
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(109,40,217,0.1);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-item { text-align: center; }
.stat-item__number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label { font-size: 0.83rem; color: var(--muted); line-height: 1.45; }
.stat-item--wide { grid-column: 1 / -1; border-top: 1px solid rgba(109,40,217,0.1); padding-top: 1.5rem; margin-top: 0.5rem; }
.stat-item__compare { display: flex; align-items: center; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.stat-item__compare-side { text-align: center; flex: 1; min-width: 120px; }
.stat-item__compare-divider { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }
.stat-item__number--muted { background: none; -webkit-text-fill-color: var(--muted); color: var(--muted); }

/* Workflow steps */
.workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--space-lg);
  max-width: 740px;
  margin-inline: auto;
}
.workflow-step { display: flex; gap: 1.75rem; align-items: flex-start; }
.workflow-step__num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow-step__title { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.35rem; }
.workflow-step__text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* Platform feature cards */
.platform-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-lg);
}
.platform-feature {
  background: var(--bg);
  border: 1px solid rgba(109,40,217,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.platform-feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.platform-feature:hover::after { transform: scaleX(1); }
.platform-feature:hover { box-shadow: var(--shadow-sm); border-color: rgba(109,40,217,0.2); }
.platform-feature__icon { font-size: 1.65rem; margin-bottom: 0.875rem; }
.platform-feature__title { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.4rem; }
.platform-feature__text { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* Cross-links between services */
.cross-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-lg);
}
.cross-link-card {
  background: var(--bg-soft);
  border: 1px solid rgba(109,40,217,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: all var(--transition);
}
.cross-link-card:hover {
  border-color: rgba(109,40,217,0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.cross-link-card__icon { font-size: 1.4rem; }
.cross-link-card__title { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.cross-link-card__text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.cross-link-card__arrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-deep);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ============================================================
   13. About Page
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: var(--space-lg);
}
.value-item {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(109,40,217,0.08);
}
.value-item__icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.value-item__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.value-item__text { color: var(--muted); font-size: 0.91rem; line-height: 1.7; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.team-placeholder {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px dashed rgba(109,40,217,0.15);
}
.team-placeholder__avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  opacity: 0.25;
}
.team-placeholder__name { font-weight: 600; color: var(--muted); font-size: 1rem; margin-bottom: 0.25rem; }
.team-placeholder__role { font-size: 0.85rem; color: var(--muted); opacity: 0.7; }

/* Team Card */
.team-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}
.team-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: 420px;
  background: var(--bg);
  border: 1px solid rgba(109,40,217,0.12);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-card__photo {
  width: 140px;
  height: 185px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  border: 2px solid rgba(109,40,217,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.team-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--violet-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.team-card__divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  margin-bottom: 0.85rem;
  border-radius: 2px;
}
.team-card__email {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  display: block;
  transition: color var(--transition);
}
.team-card__email:hover { color: var(--violet-deep); }

/* Vision Section */
.vision-section {
  background: linear-gradient(135deg, #1A1333 0%, #2D1B69 100%);
  color: #fff;
}
.vision-section .section-label { color: var(--violet-light); }
.vision-section .section-title { color: #fff; }
.vision__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.vision__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.80);
  margin-bottom: 2rem;
}
.vision__tagline {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--violet-light);
  font-style: italic;
  border-top: 1px solid rgba(167,139,250,0.25);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ============================================================
   14. Contact
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact__info-title { font-size: 1.3rem; margin-bottom: 0.75rem; }
.contact__info-text { color: var(--muted); margin-bottom: 2rem; font-size: 0.93rem; line-height: 1.75; }
.contact__detail { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__detail-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact__detail-icon { font-size: 1.1rem; margin-top: 3px; }
.contact__detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-family: var(--font-head);
}
.contact__detail-value { color: var(--ink); font-size: 0.93rem; }

.form {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(109,40,217,0.1);
}
.form__title { font-size: 1.25rem; margin-bottom: 1.5rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group--full { grid-column: 1 / -1; }
.form__label { font-family: var(--font-head); font-size: 0.83rem; font-weight: 600; color: var(--ink); }
.form__label .req { color: var(--violet-deep); margin-left: 2px; }

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--violet-deep);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.1);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--muted); opacity: 0.65; }
.form__textarea { min-height: 130px; resize: vertical; }

.form__consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.form__consent input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--violet-deep); }

.form__success {
  display: none;
  background: rgba(109,40,217,0.06);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  margin-top: 1rem;
  color: var(--violet-deep);
  font-weight: 500;
  font-family: var(--font-head);
}
.form__success.visible { display: block; }

/* ============================================================
   15. Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-block: 4rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo { display: inline-block; margin-bottom: 1rem; }
.footer__logo img { height: 46px; border-radius: 8px; padding: 4px 10px; background: rgba(255,255,255,0.95); }
.footer__tagline { font-size: 0.88rem; line-height: 1.7; max-width: 250px; margin-bottom: 1.5rem; }
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav-link { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer__nav-link:hover { color: var(--violet-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.83rem; color: rgba(255,255,255,0.35); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link { font-size: 0.83rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom-link:hover { color: var(--violet-light); }

/* ============================================================
   16. Legal Pages
   ============================================================ */
.legal-hero {
  padding-block: 3.5rem;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(109,40,217,0.08);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

.legal {
  padding-block: var(--space-xl) var(--space-2xl);
  max-width: 760px;
  margin-inline: auto;
}
.legal__notice {
  background: rgba(109,40,217,0.06);
  border: 1px solid rgba(109,40,217,0.18);
  border-left: 4px solid var(--violet-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--violet-deep);
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.legal h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(109,40,217,0.08);
}
.legal h3 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.legal p,
.legal li { color: var(--muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 0.7rem; }
.legal ul { list-style: disc; padding-left: 1.5rem; }
.legal ol { list-style: decimal; padding-left: 1.5rem; }
.legal a { color: var(--violet-deep); text-decoration: underline; }
.legal strong { color: var(--ink); font-weight: 600; }
.ph {
  background: rgba(109,40,217,0.09);
  border-radius: 3px;
  padding: 1px 5px;
  font-style: italic;
  color: var(--violet-deep);
  font-size: 0.9em;
}

/* ============================================================
   17. Cookie Banner & Modal
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid rgba(109,40,217,0.1);
  box-shadow: 0 -6px 30px rgba(109,40,217,0.1);
  padding: 1.25rem 1.5rem;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.cookie-banner__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.cookie-banner__desc a { color: var(--violet-deep); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.625rem; align-items: center; flex-shrink: 0; }
.cookie-banner .btn { font-size: 0.85rem; padding: 0.55rem 1.1rem; }

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,19,51,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal.open { display: flex; }
.cookie-modal__box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
}
.cookie-modal__title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.cookie-modal__desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.55; }

.cookie-category {
  border: 1px solid rgba(109,40,217,0.1);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  margin-bottom: 0.625rem;
}
.cookie-category__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.3rem; }
.cookie-category__title { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.cookie-category__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Toggle switch */
.toggle { position: relative; width: 42px; height: 22px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
  position: absolute;
  inset: 0;
  background: #ddd6fe;
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle__slider::before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle__slider { background: var(--violet-deep); }
.toggle input:checked + .toggle__slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle__slider { opacity: 0.6; cursor: not-allowed; }
.toggle input:focus-visible + .toggle__slider { outline: 3px solid var(--violet-light); outline-offset: 3px; }

.cookie-modal__actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }

/* ============================================================
   18. Scroll Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.in-view { opacity: 1; }

/* Stagger: children animate with offset */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger > *.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   19. Misc
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.divider { border: none; border-top: 1px solid rgba(109,40,217,0.08); margin-block: 0; }

/* ============================================================
   20. Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { display: none; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .problem__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .platform-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-2xl: 4rem; }

  .nav, .header__actions .btn--primary { display: none; }
  .burger { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .cross-links__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form__grid { grid-template-columns: 1fr; }

  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
  .cookie-banner__actions { width: 100%; }

  .hero--service { padding-block: 3.5rem; }
}

@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner .btn { width: 100%; }
  .platform-features__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   21. SVG Icons
   ============================================================ */
.icon-svg { display: block; flex-shrink: 0; }
.service-card__icon .icon-svg  { width: 30px; height: 30px; }
.why-item__icon .icon-svg       { width: 32px; height: 32px; }
.feature-item__icon .icon-svg   { width: 26px; height: 26px; }
.platform-feature__icon .icon-svg { width: 28px; height: 28px; }
.value-item__icon .icon-svg     { width: 30px; height: 30px; }
.cross-link-card__icon .icon-svg { width: 26px; height: 26px; }
.contact__detail-icon .icon-svg { width: 20px; height: 20px; }
.problem__item-icon .icon-svg   { width: 16px; height: 16px; }

/* ============================================================
   22. Agent Network Diagram – Hero Visual Eye-Catcher
   ============================================================ */
.hero--home .hero__visual {
  position: relative;
  overflow: visible;
  transform: translateX(8%);
}
@media (max-width: 900px) {
  .hero--home .hero__visual {
    transform: none;
    overflow: hidden;
  }
}

.hero__agent-svg {
  width: 130%;
  height: auto;
  max-width: none;
  overflow: visible;
}
@media (max-width: 900px) {
  .hero__agent-svg {
    width: 100%;
  }
}

/* Hintergrund-Punktraster im Hero (rechte Hälfte) */
.hero--home .hero__visual::before {
  content: '';
  position: absolute;
  inset: -10% -20% -10% -10%;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(0,0,0,0.8) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(0,0,0,0.8) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Floating UI-Karten */
.hero__floating-card {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.8rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 10;
  animation: float-card 7s ease-in-out infinite;
}
.hero__floating-card--chat {
  bottom: 12%;
  left: 2%;
  animation-delay: 0s;
  animation-duration: 6s;
}
.hero__floating-card--kpi {
  top: 8%;
  right: -2%;
  animation-delay: -3s;
  animation-duration: 8s;
}
.hero__card-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}
.hero__card-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.1rem;
  display: block;
}
.hero__card-value {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #A78BFA;
  display: block;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@media (max-width: 900px) {
  .hero__floating-card { display: none; }
}

/* ============================================================
   23. Chatbot Widget
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: var(--font-body);
}

/* Toggle button */
.chat-toggle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(109, 40, 217, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  padding: 0;
}
.chat-toggle:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 32px rgba(109, 40, 217, 0.55);
}
.chat-toggle img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

/* Chat window */
.chat-window {
  position: absolute;
  bottom: 104px;
  right: 0;
  width: 360px;
  max-height: 560px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(26, 19, 51, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.82) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.chat-widget.open .chat-window {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.chat-header {
  background: linear-gradient(135deg, var(--violet-deep) 0%, #5B21B6 100%);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.chat-header-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-header-avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.chat-header-info { flex: 1; min-width: 0; }
.chat-header-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.93rem;
  color: #fff;
  margin: 0;
}
.chat-header-status {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}
.chat-header-status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.chat-close-btn:hover { color: #fff; background: rgba(255,255,255,0.12); }

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(109,40,217,0.2); border-radius: 4px; }

/* Message rows */
.chat-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  max-width: 90%;
}
.chat-msg--bot { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; flex-direction: row-reverse; max-width: 80%; }

.chat-msg__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}
.chat-msg__avatar img { width: 24px; height: 24px; object-fit: contain; }

.chat-msg__bubble {
  padding: 0.65rem 0.95rem;
  border-radius: 18px;
  font-size: 0.86rem;
  line-height: 1.6;
}
.chat-msg--bot .chat-msg__bubble {
  background: #F3F0FF;
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-msg--user .chat-msg__bubble {
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg__link {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--violet-deep);
  font-weight: 600;
  font-size: 0.83rem;
  text-decoration: none;
}
.chat-msg__link:hover { text-decoration: underline; }

/* Typing indicator */
.chat-typing-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  align-self: flex-start;
}
.chat-typing {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: #F3F0FF;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  background: var(--violet-light);
  border-radius: 50%;
  animation: chatDot 1.3s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes chatDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick replies */
.chat-quickreplies {
  padding: 0 0.85rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chat-qr {
  background: none;
  border: 1.5px solid rgba(109, 40, 217, 0.5);
  color: var(--violet-deep);
  border-radius: 20px;
  padding: 0.32rem 0.85rem;
  font-size: 0.79rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.chat-qr:hover {
  background: var(--violet-deep);
  border-color: var(--violet-deep);
  color: #fff;
}

/* Input area */
.chat-input-area {
  padding: 0.7rem 0.85rem;
  border-top: 1px solid rgba(109, 40, 217, 0.1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  border: 1.5px solid rgba(109, 40, 217, 0.2);
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  font-size: 0.86rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
  color: var(--ink);
  background: #fafafa;
}
.chat-input:focus { border-color: var(--violet-deep); background: #fff; }
.chat-input::placeholder { color: #aaa; }
.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.chat-send-btn:hover { opacity: 0.88; transform: scale(1.06); }
.chat-send-btn svg { width: 17px; height: 17px; }

/* Chat nudge bubble */
.chat-nudge {
  position: absolute;
  bottom: 108px;
  right: 0;
  width: 272px;
  background: #fff;
  border: 1.5px solid var(--violet-light);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 36px 14px 16px;
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.chat-nudge[hidden] { display: none; }
.chat-nudge.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-nudge::before {
  content: '';
  position: absolute;
  bottom: -11px;
  right: 22px;
  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 11px solid var(--violet-light);
}
.chat-nudge::after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 23px;
  border-left: 9px solid transparent;
  border-right: 0 solid transparent;
  border-top: 10px solid #fff;
}
.chat-nudge__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
.chat-nudge__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.chat-nudge__close:hover { color: var(--ink); }

/* Mobile */
@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); bottom: 86px; }
  .chat-nudge { width: calc(100vw - 80px); }
}

/* ============================================================
   24. Hero – Home Dark Variant
   ============================================================ */
.hero--home {
  background: radial-gradient(ellipse at 60% 40%, rgba(109,40,217,0.28) 0%, transparent 60%),
              linear-gradient(135deg, #1A1333 0%, #241347 60%, #1A1333 100%);
  color: #fff;
}
.hero--home .hero__label { color: var(--violet-light); }
.hero--home .hero__title { color: #fff; }
.hero--home .hero__subtitle { color: rgba(255,255,255,0.72); }
.hero--home .hero__label::before { background: var(--violet-light); }

.hero--home .hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ============================================================
   26. Chat Demo
   ============================================================ */
.chat-demo-section { padding: var(--space-xl) 0; background: var(--bg-soft); }
.chat-demo-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .chat-demo-wrap { grid-template-columns: 1fr; gap: 2rem; } }
.chat-demo__head .section-title { text-align: left; }
.chat-demo__head .section-label { text-align: left; }
.chat-demo__sub { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.65; }
.chat-demo__card {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(109,40,217,0.12);
  border: 1px solid rgba(109,40,217,0.1);
  min-height: 260px;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.chat-demo__messages { display: flex; flex-direction: column; gap: 0.75rem; }
.chat-demo__msg {
  display: flex; gap: 0.5rem; align-items: flex-end;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.chat-demo__msg.visible { opacity: 1; transform: none; }
.chat-demo__msg--user { flex-direction: row-reverse; }
.chat-demo__bubble {
  max-width: 80%; padding: 0.6rem 0.9rem;
  border-radius: 14px; font-size: 0.88rem; line-height: 1.5;
}
.chat-demo__msg--user .chat-demo__bubble { background: var(--violet-deep); color: #fff; border-radius: 14px 14px 4px 14px; }
.chat-demo__msg--agent .chat-demo__bubble { background: var(--bg-soft); color: var(--ink); border-radius: 14px 14px 14px 4px; }
.chat-demo__avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet-light));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 700;
}
.chat-demo__status {
  font-size: 0.78rem; color: var(--muted); font-style: italic;
  padding-left: 34px; margin-top: -0.25rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.chat-demo__status.visible { opacity: 1; }
.chat-demo__badge {
  background: linear-gradient(135deg, rgba(109,40,217,0.07), rgba(167,139,250,0.1));
  border: 1px solid rgba(109,40,217,0.18);
  border-radius: 8px; padding: 0.6rem 1rem;
  text-align: center; font-size: 0.83rem; font-weight: 600; color: var(--violet-deep);
  margin-top: 0.5rem;
}

/* ============================================================
   27. Trust Bar
   ============================================================ */
.trust-bar { background: var(--ink); padding: 2.75rem 0; }
.trust-bar__list { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; list-style: none; padding: 0; margin: 0; }
@media (max-width: 768px) { .trust-bar__list { grid-template-columns: repeat(2,1fr); gap: 1.5rem; } }
.trust-bar__item { text-align: center; }
.trust-bar__value { display: block; font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 700; color: var(--violet-light); letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.4rem; }
.trust-bar__label { font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.4; }

/* ============================================================
   28. USP Section
   ============================================================ */
.usp__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
@media (max-width: 900px) { .usp__layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.usp__header .section-label, .usp__header .section-title { text-align: left; }
.usp__intro { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; max-width: 360px; line-height: 1.65; }
.usp__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2.5rem; }
.usp__item { display: flex; gap: 1.25rem; align-items: flex-start; }
.usp__number { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: rgba(109,40,217,0.15); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.usp__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.usp__text { font-size: 0.93rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ============================================================
   29. Featured Services (Home)
   ============================================================ */
.services-home { background: var(--bg-soft); }
.services-home .section-label, .services-home .section-title { text-align: left; }
.service-featured {
  display: flex; gap: 2rem; align-items: flex-start;
  background: var(--bg); border: 1px solid rgba(109,40,217,0.12);
  border-radius: var(--radius-md); padding: 2.25rem;
  margin-bottom: 1.25rem; position: relative; overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.service-featured::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(135deg, var(--violet-deep), var(--violet-light)); }
.service-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-featured__icon { flex-shrink:0; width:52px; height:52px; background: var(--bg-soft); border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; }
.service-featured__icon .icon-svg { width:26px; height:26px; }
.service-featured__badge { font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--violet-deep); background: rgba(109,40,217,0.08); padding:0.2rem 0.55rem; border-radius:20px; display:inline-block; margin-bottom:0.6rem; }
.service-featured__title { font-family: var(--font-head); font-size:1.4rem; font-weight:700; color: var(--ink); margin-bottom:0.65rem; }
.service-featured__text { color: var(--muted); line-height:1.7; margin-bottom:1.25rem; font-size:0.95rem; }
.services__compact { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
@media (max-width:600px) { .service-featured { flex-direction:column; } .services__compact { grid-template-columns:1fr; } }

/* ============================================================
   30. Vision Statement (Home)
   ============================================================ */
.vision__statement {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* ============================================================
   31. FAQ
   ============================================================ */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(109,40,217,0.1); }
.faq__item:first-child { border-top: 1px solid rgba(109,40,217,0.1); }
.faq__question {
  list-style: none; cursor: pointer;
  padding: 1.2rem 2.5rem 1.2rem 0;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--ink);
  position: relative; user-select: none; transition: color var(--transition);
  display: flex; align-items: center;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236D28D9' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform var(--transition);
}
details[open] > .faq__question::after { transform: translateY(-50%) rotate(180deg); }
.faq__question:hover { color: var(--violet-deep); }
.faq__answer { padding: 0 1rem 1.2rem; }
.faq__answer p { color: var(--muted); line-height: 1.75; margin: 0; font-size: 0.93rem; }

/* ============================================================
   32. CTA Band – Reassurance line
   ============================================================ */
.cta-band__reassurance { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; letter-spacing: 0.02em; }

/* ============================================================
   Hero – Service-Seiten (dunkle Variante)
   ============================================================ */
.hero--service {
  background: radial-gradient(ellipse at 70% 50%, rgba(109,40,217,0.2) 0%, transparent 55%),
              linear-gradient(135deg, #1A1333 0%, #241347 70%, #1A1333 100%);
  color: #fff;
  padding-block: 5rem 4rem;
}
.hero--service .hero__label { color: var(--violet-light); }
.hero--service .hero__title { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.025em; line-height: 1.08; }
.hero--service .hero__subtitle { color: rgba(255,255,255,0.72); }
/* Dekorativer Glow-Ring rechts */
.hero--service::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero--service { position: relative; overflow: hidden; }

/* Kompakte Variante für Kontakt */
.hero--compact {
  padding-block: 3rem 2.5rem;
}
.hero--compact .hero__title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

/* ============================================================
   Project Card (Referenzprojekte)
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--bg);
  border: 1px solid rgba(109,40,217,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.project-card:hover .project-card__overlay { opacity: 0.28; }

.project-card__media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, #6D28D9 100%);
}
.project-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
  display: block;
  transition: transform var(--transition-slow);
}
.project-card:hover .project-card__img { transform: scale(1.04); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: var(--violet-deep);
  opacity: 0.18;
  mix-blend-mode: multiply;
  transition: opacity var(--transition-slow);
}
.project-card__fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.project-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.project-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.project-card__text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.project-card__outcomes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.project-card__outcome {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-deep);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.project-card__outcome::before { content: '✓'; flex-shrink: 0; }

/* ============================================================
   Dark Statement Section (Unterseiten)
   ============================================================ */
.statement-section {
  background: radial-gradient(ellipse at 30% 50%, rgba(109,40,217,0.25) 0%, transparent 60%),
              linear-gradient(135deg, #1A1333 0%, #241347 60%, #1A1333 100%);
  padding-block: var(--space-xl);
  text-align: center;
}
.statement-section .section-label { color: var(--violet-light); }
.statement-section__text {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.statement-section__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   Demo-Anruf-Sektion
   ============================================================ */
.demo-anruf {
  background: radial-gradient(ellipse at 40% 60%, rgba(109,40,217,0.22) 0%, transparent 55%),
              linear-gradient(135deg, #1A1333 0%, #241347 60%, #1A1333 100%);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.demo-anruf .section-label { color: var(--violet-light); }
.demo-anruf__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .demo-anruf__inner { grid-template-columns: 1fr; gap: 2rem; } }
.demo-anruf__title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: #fff; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 0.75rem; }
.demo-anruf__text { color: rgba(255,255,255,0.68); line-height: 1.7; font-size: 1rem; margin-bottom: 1.5rem; }
.demo-anruf__hint-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25);
  border-radius: 20px; padding: 0.35rem 0.9rem;
  font-size: 0.78rem; color: var(--violet-light); margin-bottom: 1.25rem;
}
.demo-anruf__icon { flex-shrink: 0; }
.demo-anruf__form { display: flex; flex-direction: column; gap: 1rem; }
.demo-anruf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 600px) { .demo-anruf__row { grid-template-columns: 1fr; } }
.demo-anruf__field { display: flex; flex-direction: column; gap: 0.35rem; }
.demo-anruf__label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); font-family: var(--font-head); }
.demo-anruf__input {
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); color: #fff; font-size: 0.95rem;
  font-family: var(--font-body); transition: border-color var(--transition);
  width: 100%;
}
.demo-anruf__input::placeholder { color: rgba(255,255,255,0.35); }
.demo-anruf__input:focus { outline: none; border-color: var(--violet-light); }
.demo-anruf__consent { display: flex; gap: 0.75rem; align-items: flex-start; }
.demo-anruf__consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--violet-light); cursor: pointer; }
.demo-anruf__consent-text { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.demo-anruf__consent-text a { color: var(--violet-light); text-decoration: underline; }
.demo-anruf__reassurance { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; letter-spacing: 0.01em; }
.demo-anruf__success {
  display: none; padding: 1.25rem 1.5rem;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius-sm); color: #4ADE80;
  font-weight: 600; font-size: 0.95rem;
}
.demo-anruf__success.visible { display: block; }

/* Puls-Icon */
.phone-pulse { animation: phone-pulse 2.5s ease-in-out infinite; }
@keyframes phone-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.94); }
}

/* ============================================================
   Kanal-Chips
   ============================================================ */
.kanal-leiste { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; align-items: center; }
.kanal-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.9rem; border-radius: 20px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  border: 1px solid rgba(109,40,217,0.2); color: var(--muted);
  background: var(--bg);
}
.kanal-chip--primary {
  background: rgba(109,40,217,0.08); border-color: var(--violet-deep);
  color: var(--violet-deep);
}
.kanal-chip__micro { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--violet-light); display: block; line-height: 1; margin-bottom: 1px; }
.kanal-chip svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================================
   Zwei-Wege-Sektion
   ============================================================ */
.zwei-wege { padding-block: var(--space-2xl); }
.zwei-wege__intro { font-size: 1rem; color: var(--muted); margin-top: 0.5rem; margin-bottom: var(--space-lg); max-width: 640px; }
.zwei-wege__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: stretch; }
@media (max-width: 768px) { .zwei-wege__grid { grid-template-columns: 1fr; } }
.zwei-wege__divider {
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem;
  padding: 0 0.5rem;
}
@media (max-width: 768px) { .zwei-wege__divider { flex-direction: row; padding: 0.5rem 0; } }
.zwei-wege__divider-line { flex: 1; width: 1px; background: rgba(109,40,217,0.15); }
@media (max-width: 768px) { .zwei-wege__divider-line { flex: 1; width: auto; height: 1px; } }
.zwei-wege__oder {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  color: var(--violet-deep); letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bg-soft); border: 1px solid rgba(109,40,217,0.2);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.zwei-wege__card {
  background: var(--bg); border: 1px solid rgba(109,40,217,0.12);
  border-radius: var(--radius-md); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.zwei-wege__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, var(--violet-deep), var(--violet-light)); }
.zwei-wege__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.zwei-wege__tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet-deep); background: rgba(109,40,217,0.08); padding: 0.2rem 0.6rem; border-radius: 20px; display: inline-block; }
.zwei-wege__card-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.zwei-wege__card-text { font-size: 0.93rem; color: var(--muted); line-height: 1.7; flex: 1; }
.zwei-wege__link { font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; color: var(--violet-deep); display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; }
.zwei-wege__link:hover { color: var(--violet-light); }
.zwei-wege__footer { text-align: center; font-size: 0.88rem; color: var(--muted); margin-top: 2rem; max-width: 680px; margin-inline: auto; line-height: 1.65; }

/* ============================================================
   Souveräne-KI-Sektion
   ============================================================ */
.souveraen { background: var(--bg-soft); padding-block: var(--space-xl); }
.souveraen__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .souveraen__layout { grid-template-columns: 1fr; gap: 2rem; } }
.souveraen__text { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-top: 0.75rem; }
.souveraen__badges { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .souveraen__badges { grid-template-columns: 1fr; } }
.souveraen__badge {
  background: var(--bg); border: 1px solid rgba(109,40,217,0.12);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.souveraen__badge-icon { flex-shrink: 0; margin-top: 1px; }
.souveraen__badge-text { font-size: 0.82rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.souveraen__badge-sub { font-size: 0.72rem; color: var(--muted); font-weight: 400; display: block; margin-top: 0.15rem; }

/* ============================================================
   Preismodell-Sektion
   ============================================================ */
.pricing { padding-block: var(--space-2xl); background: var(--bg-soft); }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: var(--space-lg); }
@media (max-width: 640px) { .pricing__grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg); border: 1px solid rgba(109,40,217,0.12);
  border-radius: var(--radius-md); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; overflow: hidden;
}
.pricing-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(135deg, var(--violet-deep), var(--violet-light)); }
.pricing-card__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet-deep); }
.pricing-card__title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.pricing-card__price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--violet-deep); letter-spacing: -0.03em; line-height: 1; }
.pricing-card__price span { font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.pricing-card__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-card__feature { font-size: 0.88rem; color: var(--muted); display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.5; }
.pricing-card__feature::before { content: '✓'; color: var(--violet-deep); font-weight: 700; flex-shrink: 0; }
.pricing__footnote { font-size: 0.82rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.65; max-width: 720px; }

/* ============================================================
   Trust-Badges (unter Hero oder Trust-Bar)
   ============================================================ */
.trust-badges { background: var(--bg); border-top: 1px solid rgba(109,40,217,0.06); border-bottom: 1px solid rgba(109,40,217,0.06); padding-block: 1rem; }
.trust-badges__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; list-style: none; padding: 0; margin: 0; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: var(--muted); font-family: var(--font-head); white-space: nowrap; }
.trust-badge svg { flex-shrink: 0; }

/* ============================================================
   CTA-Band Pilot-Hinweis
   ============================================================ */
.cta-band__pilot { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; font-weight: 500; }

/* ============================================================
   Skip Link
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--violet-deep);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ============================================================
   sr-only Utility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Formular-Fehlermeldungen
   ============================================================ */
.field-error {
  display: block;
  font-size: 0.8rem;
  color: #C0392B; /* 5.8:1 auf weiß, 5.1:1 auf bg-soft */
  margin-top: 0.25rem;
  font-weight: 600;
}
.field-error[hidden] { display: none; }
.field-error::before {
  content: '\26A0 '; /* ⚠ */
}
.field-error-summary {
  font-size: 0.85rem;
  color: #C0392B;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border: 1px solid #C0392B;
  border-radius: var(--radius-sm);
  background: rgba(192,57,43,0.06);
}
input[aria-invalid="true"],
input[aria-invalid="true"]:focus,
textarea[aria-invalid="true"],
textarea[aria-invalid="true"]:focus {
  border-color: #C0392B !important;
}

/* ============================================================
   FAQ – Fokus auf summary
   ============================================================ */
details > summary:focus-visible {
  outline: 3px solid var(--violet-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up, .fade-in { opacity: 1 !important; transform: none !important; }
  .stagger > * { opacity: 1 !important; transform: none !important; }
  .hero__floating-card { animation: none !important; }
  .phone-pulse { animation: none !important; }
}
