/* ============================================================
   Heacon Website — modernes Landingpage-CSS
   Prefix: .hw-*  ·  Markenfarbe: #4a4ef0
   ============================================================ */

/* Design-Tokens exakt aus der Heacon-Webanwendung (heacon.css) übernommen,
   damit Website und App wie EIN Produkt wirken (nahtloser Portal-Übergang).
   Brand #4a4ef0, Slate-Neutrals, 8px-Buttons/Inputs, 12px-Cards, 3px-Focus-Ring. */
:root {
  --hw-brand:        #4a4ef0;
  --hw-brand-dark:   #3538c8;   /* App-Hover-Ton */
  --hw-brand-light:  #eef0ff;   /* App-Tint-Background */
  --hw-ink:          #1e293b;
  --hw-ink-soft:     #475569;
  --hw-muted:        #64748b;
  --hw-faint:        #94a3b8;
  --hw-line:         #e2e8f0;   /* App-Standard-Border */
  --hw-bg:           #ffffff;
  --hw-bg-soft:      #f8fafc;
  --hw-bg-alt:       #f1f5f9;
  /* Radien wie App: kleine Elemente 8px, Cards/Container 12px, Pills 999px */
  --hw-radius-sm:    0.5rem;    /* 8px  — Buttons, Inputs, Badges */
  --hw-radius:       0.75rem;   /* 12px — Cards, Container */
  --hw-radius-lg:    1rem;      /* 16px — größere Panels */
  /* Weiche, diffuse App-Schatten */
  --hw-shadow-sm:    0 1px 4px rgba(0,0,0,.03);
  --hw-shadow:       0 4px 16px rgba(0,0,0,.06);
  --hw-shadow-lg:    0 8px 32px rgba(0,0,0,.08);
  --hw-glow:         0 4px 12px rgba(74,78,240,.3);
  --hw-glow-lg:      0 6px 20px rgba(74,78,240,.4);
  --hw-focus:        0 0 0 3px rgba(74,78,240,.1);   /* charakteristischer App-Focus-Ring */
  --hw-container:    1200px;
  --hw-header-h:     76px;
}

.hw-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--hw-ink);
  background: var(--hw-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* kein horizontales Scrollen durch überstehende Elemente */
}
.hw-hero-title, .hw-section-title, .hw-hero-lead, .hw-cta-title {
  overflow-wrap: break-word;         /* lange Wörter umbrechen statt überlaufen */
}
.hw-body * { box-sizing: border-box; }
.hw-body a { text-decoration: none; color: inherit; }

/* ---------- Buttons ----------
   Farben mit klarem Kontrast (WCAG-tauglich) und modernem Hover-Verhalten:
   Inner Glow (inset highlight) + weicher Outer-Glow beim Hovern.
   color/background sind hier bewusst robust gesetzt, damit keine geerbte
   Regel die Textfarbe kippen kann. */
.hw-btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .6rem 1.5rem; border-radius: var(--hw-radius-sm);   /* 8px — App-Stil */
  font-weight: 600; font-size: .9rem; line-height: 1.2; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap; text-decoration: none;
  transition: background-color .18s ease, color .18s ease, box-shadow .2s ease, transform .18s ease;
}
.hw-btn-lg { padding: .8rem 1.9rem; font-size: 1rem; }

/* Primär: Blau mit WEISSER Schrift + Brand-Glow + dezenter Inner Glow beim Hover.
   color mit !important, damit OneUIs generische a{color:...}-Regel den Button-Text
   (die Buttons sind <a>-Elemente) nicht ins dunklere Link-Blau kippen kann. */
.hw-btn-primary,
.hw-btn-primary:visited { background-color: var(--hw-brand); color: #ffffff !important; box-shadow: var(--hw-glow); }
.hw-btn-primary:hover {
  background-color: var(--hw-brand-dark); color: #ffffff !important; transform: translateY(-2px);
  box-shadow: var(--hw-glow-lg),
              inset 0 1px 0 rgba(255,255,255,.4),
              inset 0 0 18px rgba(255,255,255,.22);
}

/* Outline: transparenter Blau-Button, wird beim Hover gefüllt (weiße Schrift) */
.hw-btn-outline { background-color: transparent; color: var(--hw-brand); border-color: var(--hw-brand); }
.hw-btn-outline:hover {
  background-color: var(--hw-brand); color: #ffffff !important; transform: translateY(-2px);
  box-shadow: var(--hw-glow-lg), inset 0 0 16px rgba(255,255,255,.22);
}

/* Ghost: heller Blauton mit BLAUER Schrift */
.hw-btn-ghost { background-color: var(--hw-brand-light); color: var(--hw-brand); }
.hw-btn-ghost:hover {
  background-color: #e0e3ff; color: var(--hw-brand-dark); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74,78,240,.18), inset 0 0 14px rgba(255,255,255,.5);
}

/* Light: WEISSER Button mit BLAUER Schrift (für dunkle Sektionen wie die CTA).
   color mit !important — sonst kippt OneUIs generische a{color:...}-Regel bzw.
   eine geerbte color:#fff der dunklen Sektion die Schrift auf Weiß (weiß auf weiß). */
.hw-btn-light,
.hw-btn-light:visited { background-color: #fff; color: var(--hw-brand) !important; box-shadow: 0 4px 14px rgba(0,0,0,.14); }
.hw-btn-light:hover {
  background-color: #fff; color: var(--hw-brand-dark) !important; transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,.2), inset 0 0 18px rgba(74,78,240,.08);
}

/* ---------- Section-Bausteine ---------- */
.hw-section-eyebrow {
  display: inline-block; color: var(--hw-brand); font-weight: 700;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem;
}
.hw-section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.15; margin: 0 0 1rem; letter-spacing: -.02em; }
.hw-section-lead { font-size: 1.1rem; color: var(--hw-ink-soft); margin: 0 0 1.5rem; }

/* ============================================================
   HEADER (zweistufig: Top-Bar + Hauptheader, gemeinsam sticky)
   ============================================================ */
.hw-headwrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.hw-headwrap.is-scrolled { border-bottom-color: var(--hw-line); box-shadow: 0 2px 20px rgba(30,41,59,.06); }

/* Mini-Header / Top-Bar — über dem Hauptheader stapeln, damit das nach unten
   aufklappende Sprach-Dropdown nicht vom darunterliegenden Header verdeckt wird. */
.hw-topbar { position: relative; z-index: 3; border-bottom: 1px solid var(--hw-line); }
.hw-topbar-inner {
  max-width: calc(var(--hw-container) + 3rem); margin: 0 auto; padding: 0 1.5rem;
  height: 38px; display: flex; align-items: center; justify-content: flex-end; gap: 1.25rem;
}
.hw-topbar-nav { display: flex; align-items: center; gap: 1.25rem; }
.hw-topbar-link { font-size: .82rem; font-weight: 500; color: var(--hw-muted); transition: color .15s; }
.hw-topbar-link:hover { color: var(--hw-brand); }
/* Beim Scrollen den Top-Bar sanft einklappen (Platz sparen). Overflow nur im
   eingeklappten Zustand, damit das Sprach-Dropdown normal aufklappen kann. */
.hw-topbar { max-height: 38px; transition: max-height .25s ease, opacity .2s ease; }
.hw-headwrap.is-scrolled .hw-topbar { max-height: 0; opacity: 0; overflow: hidden; border-bottom-color: transparent; }

.hw-header { position: relative; z-index: 1; background: transparent; }
.hw-header-inner {
  /* max-width um das horizontale Padding erweitert, damit der Header-Inhalt
     bündig mit dem Seiteninhalt (.hw-sec-inner, 1200px + 1.5rem außen) liegt. */
  max-width: calc(var(--hw-container) + 3rem); margin: 0 auto; height: var(--hw-header-h);
  padding: 0 1.5rem; display: flex; align-items: center; gap: 1.5rem;
}
.hw-brand { display: flex; align-items: center; }
.hw-brand-logo { height: 30px; width: auto; display: block; }

.hw-nav { margin-left: .5rem; }
.hw-nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.hw-nav-item { position: relative; }
.hw-nav-link {
  display: flex; align-items: center; gap: .35rem; padding: .55rem .85rem;
  font-weight: 600; font-size: .95rem; color: var(--hw-ink-soft); border-radius: 10px; transition: all .15s;
}
.hw-nav-link:hover { color: var(--hw-brand); background: var(--hw-brand-light); }
.hw-nav-caret { font-size: .7rem; transition: transform .2s; }
.hw-has-dropdown:hover .hw-nav-caret,
.hw-has-mega.is-open .hw-nav-caret { transform: rotate(180deg); }

/* ---------- Mega-Menü (je Rubrik) ---------- */
.hw-has-mega { position: static; }   /* Mega spannt über die Header-Breite */
.hw-mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  width: min(760px, calc(100vw - 3rem));
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  box-shadow: var(--hw-shadow-lg); padding: 1.25rem;
  display: grid; grid-template-columns: 220px 1fr; gap: 1.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; z-index: 30;
}
/* Öffnen/Schließen per JS (.is-open) mit Schließverzögerung — zuverlässiger als
   :hover, weil das zentrierte Mega über der schmalen Nav liegt und beim Übergang
   sonst toter Raum entsteht. */
.hw-has-mega.is-open .hw-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }

.hw-mega-head {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start; gap: .25rem;
  padding: 1rem; border-radius: var(--hw-radius-sm);
  /* Eigenes Hintergrundbild (Weltkugel) mit leichtem Brand-Verlauf für die
     Textlesbarkeit — bewusst transparent gehalten, damit das Motiv sichtbar
     bleibt. align-self: stretch → volle Höhe des Mega-Menüs. */
  background-color: var(--hw-brand-dark);
  background-image:
    linear-gradient(160deg, rgba(53,56,200,.15) 0%, rgba(30,33,140,.45) 100%),
    url("../media/background/heacon/mega-overview.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff; align-self: stretch;
}
.hw-mega-head i, .hw-mega-head span, .hw-mega-head small { position: relative; color: #fff; }
.hw-mega-head i { font-size: 1.4rem; margin-bottom: .35rem; }
.hw-mega-head span { font-size: 1.05rem; font-weight: 700; }
.hw-mega-head small { font-size: .78rem; opacity: .9; }
.hw-mega-head:hover { filter: brightness(1.08); }

.hw-mega-items { display: grid; grid-template-columns: 1fr 1fr; gap: .15rem .75rem; align-content: start; }
.hw-mega-item {
  padding: .5rem .65rem; border-radius: 8px; font-size: .88rem; font-weight: 500; color: var(--hw-ink-soft);
  transition: background .15s, color .15s;
}
.hw-mega-item:hover { background: var(--hw-brand-light); color: var(--hw-brand); }

/* Mobile-Menü: Rubrik-Überschrift */
.hw-mobile-head { font-weight: 700 !important; color: var(--hw-ink) !important; margin-top: .5rem; }

.hw-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 320px;
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  box-shadow: var(--hw-shadow-lg); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease;
}
.hw-has-dropdown:hover .hw-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.hw-dropdown-item { display: flex; align-items: flex-start; gap: .8rem; padding: .7rem .8rem; border-radius: 10px; transition: background .15s; }
.hw-dropdown-item:hover { background: var(--hw-bg-soft); }
.hw-dropdown-icon { color: var(--hw-brand); font-size: 1.1rem; margin-top: .15rem; width: 22px; text-align: center; }
.hw-dropdown-item span { display: flex; flex-direction: column; }
.hw-dropdown-item strong { font-size: .95rem; color: var(--hw-ink); }
.hw-dropdown-item small { font-size: .82rem; color: var(--hw-muted); }

.hw-header-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }

/* Sprachumschalter */
.hw-lang { position: relative; }
.hw-lang-toggle {
  display: flex; align-items: center; gap: .35rem; background: none; border: none;
  padding: .5rem .6rem; font-weight: 600; font-size: .9rem; color: var(--hw-ink-soft); cursor: pointer; border-radius: 8px;
}
.hw-lang-toggle:hover { background: var(--hw-brand-light); color: var(--hw-brand); }
.hw-lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 130px; z-index: 20;
  background: #fff; border: 1px solid var(--hw-line); border-radius: 12px; box-shadow: var(--hw-shadow-lg); padding: .35rem;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s;
}
/* Unsichtbare Hover-Brücke, die die 6px-Lücke zwischen Button und Menü
   überbrückt — verhindert, dass das Menü einklappt, während die Maus vom Button
   zum Menü wandert. */
.hw-lang-menu::before {
  content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.hw-lang:hover .hw-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hw-lang-item { display: block; padding: .5rem .7rem; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--hw-ink-soft); }
.hw-lang-item:hover { background: var(--hw-bg-soft); }
.hw-lang-item.is-active { color: var(--hw-brand); font-weight: 700; }

/* Burger + Mobile */
.hw-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .5rem; cursor: pointer; }
.hw-burger span { width: 22px; height: 2px; background: var(--hw-ink); border-radius: 2px; transition: all .2s; }
.hw-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hw-burger.is-open span:nth-child(2) { opacity: 0; }
.hw-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hw-mobile { display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--hw-line); background: #fff; }
.hw-mobile.is-open { display: flex; }
.hw-mobile-link { padding: .7rem 0; font-weight: 600; color: var(--hw-ink-soft); border-bottom: 1px solid var(--hw-bg-alt); }
.hw-mobile-sub { padding-left: 1rem; font-weight: 500; font-size: .92rem; color: var(--hw-muted); }
.hw-mobile-cta { margin-top: 1rem; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hw-hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 9vw, 7rem) 1.5rem clamp(4rem, 9vw, 7.5rem); }
.hw-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(74,78,240,.14), transparent 60%),
    radial-gradient(50% 60% at 90% 20%, rgba(74,78,240,.10), transparent 60%),
    linear-gradient(180deg, #f6f7ff 0%, #ffffff 70%);
}
.hw-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.hw-hero-eyebrow {
  display: inline-block; background: var(--hw-brand-light); color: var(--hw-brand);
  font-weight: 700; font-size: .82rem; letter-spacing: .05em; padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
/* Badges dieser Art an ihrer Inhaltsbreite ausrichten. align-self:flex-start
   greift nur in Flex-Column-Containern (Hero-/Highlight-Text), wo align-items:
   stretch das inline-block sonst auf volle Breite streckt. In zentrierten
   Containern (text-align:center) bleibt inline-block ohnehin inhaltsbreit +
   zentriert — dort ist align-self wirkungslos, bricht also nichts. */
.hw-hero-eyebrow, .hw-section-eyebrow, .hw-sec-hero-eyebrow, .hw-highlight-tag { align-self: flex-start; }
.hw-hero-title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; margin: 0 0 1.25rem; }
.hw-hero-lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--hw-ink-soft); margin: 0 auto 2rem; max-width: 640px; }
.hw-hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hw-hero-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; color: var(--hw-muted); font-size: .92rem; font-weight: 500; }
.hw-hero-badges i { color: var(--hw-brand); margin-right: .35rem; }

/* --- Zweispaltiger Hero: Text links (linksbündig), 3 Säulen rechts --- */
.hw-hero-inner--split {
  max-width: var(--hw-container);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch; text-align: left;   /* rechte Spalte = volle Höhe des Textblocks */
}
.hw-hero-inner--split .hw-hero-text { display: flex; flex-direction: column; justify-content: center; }
.hw-hero-inner--split .hw-hero-lead { margin-left: 0; }
.hw-hero-inner--split .hw-hero-actions { justify-content: flex-start; }
.hw-hero-inner--split .hw-hero-badges { justify-content: flex-start; }

/* 3 Säulen — echte hochkant-Säulen: nehmen die volle Höhe des Textbereichs ein */
.hw-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; height: 100%; }
.hw-pillar {
  position: relative; display: flex; align-items: flex-end;
  min-height: 380px;   /* Mindesthöhe; wächst per stretch mit dem Textbereich */
  border-radius: var(--hw-radius); overflow: hidden;
  background-image: var(--pillar-bg); background-size: cover; background-position: center;
  box-shadow: var(--hw-shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.hw-pillar:hover { transform: translateY(-3px); box-shadow: var(--hw-shadow-lg); }

/* Kein Vollflächen-Overlay mehr — das Bild bleibt klar sichtbar. */
.hw-pillar-overlay { display: none; }

/* Textbereich als Glasscheibe: volle Breite, unten angedockt, in Markenfarbe
   getönt. KLARE, kantige Oberkante. Gleiche Höhe bei allen Säulen entsteht über
   den fest 2-zeiligen Titel (s.u.). Inhalt unten bündig. */
.hw-pillar-content {
  position: relative; z-index: 1; width: 100%; color: #fff;
  padding: 1.15rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: rgba(74, 78, 240, .62);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, .25);   /* scharfe Glaskante */
}
/* Titel belegt IMMER 2 Zeilen Höhe (min-height = 2 × line-height), auch wenn
   der Text nur 1 Zeile braucht. Dadurch belegen alle Titel gleich viel Höhe →
   alle Glasflächen sind gleich hoch (browserunabhängig, kein subgrid nötig). */
.hw-pillar-title {
  font-size: 1rem; font-weight: 700; margin: 0 0 .3rem; color: #fff; line-height: 1.2;
  min-height: 2.4em;   /* 2 Zeilen × 1.2 */
  display: flex; align-items: flex-end;
}
.hw-pillar-desc { font-size: .8rem; line-height: 1.4; margin: 0; color: rgba(255,255,255,.9); }

/* Pfeil oben rechts auf einer kleinen Glas-Pille, damit er auf dem Bild lesbar bleibt. */
.hw-pillar-arrow {
  position: absolute; top: .85rem; right: .85rem; z-index: 1; color: #fff;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: rgba(15, 23, 42, .35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; font-size: .8rem; opacity: .85;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.hw-pillar:hover .hw-pillar-arrow { opacity: 1; transform: translateX(2px); background: var(--hw-brand); border-color: var(--hw-brand); }

@media (max-width: 900px) {
  /* Text oben, Säulen darunter — hochkant nebeneinander, eigene Säulen-Höhe */
  .hw-hero-inner--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hw-pillars { height: auto; }
  .hw-pillar { min-height: 0; aspect-ratio: 3 / 4; }
}
@media (max-width: 480px) {
  /* Sehr schmal: gestapelt, flacher, damit die Säulen nicht zu hoch werden */
  .hw-pillars { grid-template-columns: 1fr; }
  .hw-pillar { aspect-ratio: 16 / 9; }
}

/* ============================================================
   WEBANWENDUNG-HIGHLIGHT
   ============================================================ */
.hw-app { padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; background: var(--hw-bg-soft); }
.hw-app-inner { max-width: var(--hw-container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hw-app-inner > * { min-width: 0; }   /* verhindert, dass 460px-Mockup die Grid-Spalte aufbläht */
.hw-app-features { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .7rem; }
.hw-app-features li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--hw-ink-soft); }
.hw-app-features i { color: var(--hw-brand); }
.hw-app-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.hw-app-visual { display: flex; justify-content: center; min-width: 0; }

/* Tab-Container */
.hw-apptabs { width: 100%; max-width: 520px; position: relative; }
/* etwas Luft, damit die floatenden Badges nicht abgeschnitten werden */
.hw-app-visual { padding: 1.75rem .5rem; overflow: visible; }

/* Floatende USP-Badges — sitzen dicht am Fenster (unterhalb der Tab-Nav),
   dürfen den Inhalt leicht überlappen. Wechseln mit dem aktiven Tab. */
.hw-floats { position: absolute; top: 3.4rem; right: 0; bottom: 0; left: 0; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 3; }
.hw-floats.is-active { opacity: 1; visibility: visible; }
.hw-float {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm);
  padding: .5rem .7rem; box-shadow: var(--hw-shadow-lg);
  animation: hw-float-bob 4s ease-in-out infinite;
}
.hw-float i { font-size: 1.05rem; color: var(--hw-brand); }
.hw-float-title { font-size: .78rem; font-weight: 700; color: var(--hw-ink); line-height: 1.15; }
.hw-float-sub { font-size: .68rem; color: var(--hw-muted); line-height: 1.15; }

/* Positionen — dicht an den Fensterkanten (leichter Überstand/Überlappung) */
.hw-float--tl { top: .4rem;     left: -.4rem;   animation-delay: 0s;   }
.hw-float--tr { top: .4rem;     right: -.4rem;  animation-delay: -1.2s;}
.hw-float--bl { bottom: 1rem;   left: -.4rem;   animation-delay: -2s;  }
.hw-float--br { bottom: 1rem;   right: -.4rem;  animation-delay: -.6s; }

@keyframes hw-float-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .hw-float { animation: none; } }

/* Tab-Navigation — dezent (Badge-/Pill-Stil), lenkt nicht vom CTA ab */
.hw-apptabs-nav { display: flex; gap: .3rem; margin-bottom: 1rem; }
.hw-apptab {
  display: inline-flex; align-items: center; gap: .4rem; cursor: pointer;
  padding: .4rem .75rem; font-size: .78rem; font-weight: 600; color: var(--hw-muted);
  background: transparent; border: none; border-radius: 999px;
  transition: color .15s ease, background .15s ease; white-space: nowrap;
}
.hw-apptab i { font-size: .78rem; opacity: .8; }
.hw-apptab:hover { color: var(--hw-ink); background: var(--hw-bg-alt); }
.hw-apptab.is-active { color: var(--hw-brand); background: var(--hw-brand-light); }
.hw-apptab.is-active i { opacity: 1; }

/* App-Fenster */
.hw-app-window {
  width: 100%; background: #fff; border-radius: var(--hw-radius);
  box-shadow: var(--hw-shadow-lg); overflow: hidden; border: 1px solid var(--hw-line);
}
.hw-app-window-bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; background: var(--hw-bg-alt); border-bottom: 1px solid var(--hw-line); }
.hw-app-window-bar span:not(.hw-app-window-url) { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; flex-shrink: 0; }
.hw-app-window-bar span:first-child { background: #f87171; }
.hw-app-window-bar span:nth-child(2) { background: #fbbf24; }
.hw-app-window-bar span:nth-child(3) { background: #34d399; }
.hw-app-window-url { margin-left: .6rem; font-size: .72rem; color: var(--hw-faint); background: #fff; padding: .2rem .7rem; border-radius: 999px; border: 1px solid var(--hw-line); }

/* Mockup-Panes: nur die aktive sichtbar */
.hw-mock { display: none; padding: 1.1rem; min-height: 250px; }
.hw-mock.is-active { display: block; animation: hw-fade .25s ease; }
@keyframes hw-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.hw-mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.hw-mock-title { font-size: .9rem; font-weight: 700; color: var(--hw-ink); }
.hw-mock-search { font-size: .72rem; color: var(--hw-faint); background: var(--hw-bg-soft); border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm); padding: .3rem .6rem; }
.hw-mock-chip { font-size: .72rem; font-weight: 700; color: var(--hw-brand); background: var(--hw-brand-light); border-radius: 999px; padding: .25rem .7rem; }

/* Mockup: Audit-Liste */
.hw-mock-list { display: grid; gap: .5rem; }
.hw-mock-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem .8rem; border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm); background: #fff; }
.hw-mock-item-main { display: flex; flex-direction: column; min-width: 0; }
.hw-mock-item-main strong { font-size: .82rem; color: var(--hw-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hw-mock-item-main small { font-size: .72rem; color: var(--hw-muted); }
.hw-mock-badge { font-size: .65rem; font-weight: 600; padding: .22rem .55rem; border-radius: 0.35rem; white-space: nowrap; }
/* Produkttyp-Badge (öffentlich sichtbar; kein Ampel-Status) */
.hw-mock-badge--type { background: var(--hw-brand-light); color: var(--hw-brand); }

/* Mockup: Einkaufskooperation — Beispiel-Partner-Karte */
.hw-mock-partner { padding: .2rem; }
.hw-mock-partner-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.hw-mock-logo {
  height: 48px; flex-shrink: 0; border-radius: var(--hw-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; letter-spacing: .02em;
}
/* Bild-Logo: feste Box, Bild wird eingepasst (verhindert riesige Logos) */
.hw-mock-logo--img { width: auto; max-width: 130px; padding: .3rem .5rem; background: #fff; border: 1px solid var(--hw-line); }
.hw-mock-logo--img img { max-height: 32px; max-width: 118px; width: auto; height: auto; object-fit: contain; display: block; }
/* Initialen-Fallback (kein Logo-File vorhanden) */
.hw-mock-logo--initials { width: 48px; background: var(--hw-brand-light); color: var(--hw-brand); }
.hw-mock-partner-id { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }
.hw-mock-partner-name { font-size: .95rem; font-weight: 700; color: var(--hw-ink); }
.hw-mock-partner-cat { display: inline-flex; align-items: center; gap: .35rem; font-size: .74rem; color: var(--hw-muted); margin-top: .1rem; }
.hw-mock-partner-cat i { color: var(--hw-brand); font-size: .72rem; }
.hw-mock-partner-badge { font-size: .62rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--hw-brand); background: var(--hw-brand-light); border-radius: 999px; padding: .25rem .6rem; white-space: nowrap; }
.hw-mock-partner-desc { font-size: .8rem; line-height: 1.55; color: var(--hw-ink-soft); margin: 0 0 1rem; }
.hw-mock-partner-benefits { display: grid; gap: .45rem; }
.hw-mock-partner-benefits span { display: flex; align-items: center; gap: .55rem; font-size: .78rem; color: var(--hw-ink); }
.hw-mock-partner-benefits i { color: #166534; width: 15px; text-align: center; font-size: .78rem; }

/* Mockup: Pharma Kodex */
.hw-mock-codex { display: grid; grid-template-columns: 130px 1fr; gap: .9rem; }
.hw-mock-codex-nav { display: grid; gap: .2rem; align-content: start; }
.hw-mock-codex-navlabel { font-size: .6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--hw-faint); padding: .3rem .6rem .1rem; }
.hw-mock-codex-navlabel:not(:first-child) { margin-top: .35rem; }
.hw-mock-codex-navitem { display: flex; align-items: center; gap: .45rem; font-size: .74rem; color: var(--hw-muted); padding: .4rem .6rem; border-radius: var(--hw-radius-sm); }
.hw-mock-codex-navitem i { font-size: .72rem; width: 13px; text-align: center; opacity: .8; }
.hw-mock-codex-navitem.is-active { background: var(--hw-brand-light); color: var(--hw-brand); font-weight: 600; }
.hw-mock-codex-navitem.is-active i { opacity: 1; }
.hw-mock-codex-body { display: grid; gap: .55rem; align-content: start; }
.hw-mock-codex-h { font-size: .85rem; font-weight: 700; color: var(--hw-ink); margin-bottom: .2rem; }
.hw-mock-line { height: 9px; border-radius: 5px; background: var(--hw-bg-alt); }
.hw-mock-line--short { width: 65%; }

/* Kodex: echter Gesetzestext mit farbigen Markierungen (USP: Text markieren) */
.hw-mock-codex-text { font-size: .78rem; line-height: 1.6; color: var(--hw-ink-soft); margin: 0; }
.hw-mock-codex-text mark { padding: .05em .15em; border-radius: 3px; color: inherit; background: transparent; }
.hw-mock-codex-text mark.hw-mark-pink { background: rgba(243, 22, 127, .22); box-shadow: inset 0 -.35em 0 rgba(243, 22, 127, .18); }
.hw-mock-codex-text mark.hw-mark-blue { background: rgba(74, 78, 240, .20); box-shadow: inset 0 -.35em 0 rgba(74, 78, 240, .16); }
.hw-mock-codex-hint { display: inline-flex; align-items: center; gap: .4rem; margin-top: .6rem; font-size: .68rem; color: var(--hw-faint); }
.hw-mock-codex-hint i { color: #f3167f; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.hw-services { padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; }
.hw-services-head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.hw-services-grid { max-width: var(--hw-container); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.hw-service-card {
  position: relative; min-height: 280px; border-radius: var(--hw-radius-lg); overflow: hidden;
  display: flex; align-items: flex-end; background-size: cover; background-position: center;
  background-image: var(--card-bg); box-shadow: var(--hw-shadow); transition: transform .25s, box-shadow .25s;
}
.hw-service-card:hover { transform: translateY(-6px); box-shadow: var(--hw-shadow-lg); }
.hw-service-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.15) 0%, rgba(15,23,42,.82) 100%); }
.hw-service-card--plain { background: linear-gradient(135deg, var(--hw-brand) 0%, var(--hw-brand-dark) 100%); }
.hw-service-card--plain .hw-service-content { color: #fff; }
.hw-service-content { position: relative; z-index: 1; padding: 2rem; color: #fff; }
.hw-service-icon { font-size: 1.8rem; margin-bottom: .9rem; opacity: .95; }
.hw-service-title { font-size: 1.4rem; font-weight: 700; margin: 0 0 .5rem; }
.hw-service-desc { font-size: .98rem; opacity: .9; margin: 0 0 1rem; }
.hw-service-more { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; }
.hw-service-more i { transition: transform .2s; }
.hw-service-card:hover .hw-service-more i { transform: translateX(5px); }

/* ============================================================
   KENNZAHLEN
   ============================================================ */
.hw-stats { padding: clamp(2.5rem, 5vw, 4rem) 1.5rem; background: linear-gradient(135deg, var(--hw-brand) 0%, var(--hw-brand-dark) 100%); }
.hw-stats-inner { max-width: var(--hw-container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
/* Variable Anzahl Kennzahlen (z.B. 6 bei Pharmakovigilanz) — passt sich an. */
.hw-stats-inner--auto { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem 1.5rem; }
@media (max-width: 640px) { .hw-stats-inner, .hw-stats-inner--auto { grid-template-columns: repeat(2, 1fr); } }
.hw-stat { color: #fff; }
.hw-stat-num { display: block; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.hw-stat-label { display: block; margin-top: .5rem; font-size: .95rem; opacity: .85; }

/* ============================================================
   UNTERNEHMEN
   ============================================================ */
.hw-about { padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; }
.hw-about-inner { max-width: 760px; margin: 0 auto; text-align: center; }

/* ============================================================
   CTA
   ============================================================ */
.hw-cta { padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; }
.hw-cta-inner {
  max-width: var(--hw-container); margin: 0 auto; text-align: center;
  background: radial-gradient(80% 120% at 50% 0%, #2a2d6e 0%, #1a1c46 100%);
  border-radius: var(--hw-radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem) 2rem; color: #fff;
}
.hw-cta-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; margin: 0 0 1rem; }
.hw-cta-lead { font-size: 1.15rem; opacity: .85; margin: 0 auto 2rem; max-width: 560px; }

/* ============================================================
   FOOTER
   ============================================================ */
.hw-footer { background: #0f1729; color: #cbd5e1; padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 0; }
.hw-footer-inner { max-width: var(--hw-container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.hw-footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1rem; }
.hw-footer-tagline { font-size: .95rem; color: #94a3b8; margin: 0 0 1.2rem; max-width: 280px; }
.hw-footer-social { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: #1e293b; border-radius: 10px; color: #cbd5e1; font-size: 1.1rem; transition: all .18s; }
.hw-footer-social:hover { background: var(--hw-brand); color: #fff; }
.hw-footer-head { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin: 0 0 1rem; }
.hw-footer-link { display: block; padding: .35rem 0; color: #94a3b8; font-size: .95rem; transition: color .15s; }
.hw-footer-link:hover { color: #fff; }
.hw-footer-address { font-style: normal; color: #94a3b8; font-size: .95rem; line-height: 1.7; margin-bottom: .6rem; }
.hw-footer-bottom {
  max-width: var(--hw-container); margin: 2.5rem auto 0; padding: 1.5rem 0; border-top: 1px solid #1e293b;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.hw-footer-copy { color: #64748b; font-size: .9rem; }
.hw-footer-legal { display: flex; gap: 1.25rem; align-items: center; }
.hw-footer-legal a { color: #94a3b8; font-size: .9rem; transition: color .15s; }
.hw-footer-legal a:hover, .hw-footer-legal a.is-active { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hw-nav, .hw-header-actions .hw-btn-ghost, .hw-header-actions .hw-btn-primary, .hw-lang { display: none; }
  .hw-burger { display: flex; }
  .hw-app-inner { grid-template-columns: 1fr; }
  .hw-app-visual { order: -1; }
  .hw-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .hw-services-grid { grid-template-columns: 1fr; }
  .hw-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hw-footer-inner { grid-template-columns: 1fr; }
  .hw-footer-bottom { flex-direction: column; align-items: flex-start; }
  /* Hero auf schmalen Screens: kleinere Schrift, Buttons + Badges umbrechen */
  .hw-hero-title { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hw-hero-actions .hw-btn { width: 100%; justify-content: center; }
  .hw-hero-badges { flex-direction: column; gap: .6rem; align-items: center; }
  /* App-Mockup nicht rotieren (verhindert Überstand) */
  .hw-app-window { transform: none; max-width: 100%; }
}

/* ============================================================
   AUDIT-SUCHE (nativ) — Stil an die App angelehnt
   ============================================================ */
.hw-audit {
  position: relative; padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
  /* Paralax-Hintergrund (helles Code-Bild) ohne Overlay. */
  background-image: url('/assets/media/background/website/code-background-mirror.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hw-audit-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hw-audit-head { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
/* Mobil: background-attachment: fixed ist auf iOS unzuverlässig → scroll */
@media (max-width: 900px) {
  .hw-audit { background-attachment: scroll; }
}

.hw-audit-panel {
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  box-shadow: var(--hw-shadow); overflow: hidden;
}

/* Suchfeld mit App-Focus-Ring */
.hw-audit-search { position: relative; padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid var(--hw-line); }
.hw-audit-search-icon { position: absolute; left: 2rem; top: 50%; transform: translateY(-30%); color: var(--hw-faint); font-size: .9rem; }
.hw-audit-search-input {
  width: 100%; padding: .7rem .9rem .7rem 2.6rem; font-size: .9rem; color: var(--hw-ink);
  border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm); background: var(--hw-bg-soft);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.hw-audit-search-input:focus { outline: none; border-color: var(--hw-brand); background: #fff; box-shadow: var(--hw-focus); }

.hw-audit-list-head {
  display: flex; justify-content: space-between; padding: .7rem 1.5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--hw-faint); background: var(--hw-bg-alt);
}

/* Ergebnisliste — scrollbar, dünne App-Scrollbar */
.hw-audit-results { max-height: 420px; overflow-y: auto; overflow-x: hidden; }
.hw-audit-results::-webkit-scrollbar { width: 4px; }
.hw-audit-results::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.hw-audit-results::-webkit-scrollbar-thumb:hover { background: var(--hw-faint); }

.hw-audit-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1.5rem; border-bottom: 1px solid var(--hw-bg-alt); transition: background .12s ease;
}
.hw-audit-row:hover { background: var(--hw-brand-light); }
.hw-audit-row:last-child { border-bottom: none; }
.hw-audit-main { min-width: 0; }
.hw-audit-name { display: block; font-weight: 600; font-size: .88rem; color: var(--hw-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hw-audit-loc { display: block; font-size: .78rem; color: var(--hw-muted); margin-top: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hw-audit-loc i { color: var(--hw-faint); margin-right: .3rem; font-size: .72rem; }
.hw-audit-meta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Status-Badges — semantische App-Farbpaare */
/* Typ-Badge (Produkttyp, öffentlich sichtbar — kein Ampel-Status) */
.hw-audit-type {
  font-size: .7rem; font-weight: 600; white-space: nowrap;
  padding: .25rem .65rem; border-radius: 0.375rem;
  background: var(--hw-brand-light); color: var(--hw-brand);
}

.hw-audit-date { font-size: .8rem; color: var(--hw-muted); font-weight: 500; min-width: 88px; text-align: right; }
.hw-audit-date--no-date { color: var(--hw-faint); font-style: italic; }

.hw-audit-empty { padding: 3rem 1.5rem; text-align: center; color: var(--hw-faint); }
.hw-audit-empty i { display: block; font-size: 1.8rem; margin-bottom: .8rem; opacity: .6; }

.hw-audit-foot { padding: 1.25rem 1.5rem; text-align: center; border-top: 1px solid var(--hw-line); }
.hw-audit-foot-text { font-size: .9rem; color: var(--hw-muted); display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.hw-btn-sm { padding: .4rem 1rem; font-size: .82rem; }

@media (max-width: 680px) {
  .hw-audit-loc { max-width: 180px; }
  .hw-audit-date { display: none; }
}

/* ============================================================
   KUNDENLOGOS / TRUST
   ============================================================ */
.hw-trust { padding: clamp(2rem, 4vw, 3rem) 1.5rem; border-bottom: 1px solid var(--hw-line); }
.hw-trust-inner { max-width: var(--hw-container); margin: 0 auto; text-align: center; }
.hw-trust-label { font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--hw-faint); margin: 0 0 1.5rem; }
.hw-trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; }
.hw-trust-logo {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; color: var(--hw-faint);
  filter: grayscale(1); opacity: .7; transition: color .2s, opacity .2s;
}
.hw-trust-logo:hover { color: var(--hw-ink-soft); opacity: 1; }
/* Bild-Logos: feste Höhe, Bild eingepasst; Graustufe → farbig beim Hover */
.hw-trust-logo--img { height: 34px; width: auto; max-width: 150px; object-fit: contain; }

/* ============================================================
   PRODUKT-HIGHLIGHTS
   ============================================================ */
.hw-highlights { padding: clamp(3.5rem, 7vw, 6rem) 1.5rem; }
.hw-highlights-inner { max-width: var(--hw-container); margin: 0 auto; display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.hw-highlight {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hw-highlight--reverse .hw-highlight-text { order: 2; }
.hw-highlight-tag {
  display: inline-block; background: var(--hw-brand-light); color: var(--hw-brand);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 0.375rem; margin-bottom: 1rem;
}
.hw-highlight-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 .9rem; }
.hw-highlight-desc { font-size: 1.05rem; color: var(--hw-ink-soft); margin: 0 0 1.5rem; }

.hw-highlight-visual {
  min-height: 240px; border-radius: var(--hw-radius); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--hw-shadow);
}
.hw-highlight-visual--pheda { background: linear-gradient(135deg, #4a4ef0 0%, #3538c8 100%); }
.hw-highlight-visual--coop  { background: linear-gradient(135deg, #0a3d3a 0%, #072726 100%); }
.hw-highlight-visual--codex { background: linear-gradient(135deg, #6d28d9 0%, #4a4ef0 100%); }
.hw-highlight-stat { text-align: center; color: #fff; }
.hw-highlight-stat-num { display: block; font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.hw-highlight-stat-label { display: block; margin-top: .6rem; font-size: .95rem; opacity: .85; padding: 0 1rem; }

@media (max-width: 820px) {
  .hw-highlight { grid-template-columns: 1fr; }
  .hw-highlight--reverse .hw-highlight-text { order: 0; }
  .hw-highlight-visual { min-height: 180px; }
}
@media (max-width: 680px) {
  .hw-trust-logos { gap: 1.5rem; }
  .hw-trust-logo { font-size: 1rem; }
}

/* ============================================================
   UNTERSEITEN-BAUSTEINE (.hw-sec-*)
   ============================================================ */

/* --- gemeinsame Sektions-Hülle --- */
.hw-sec { padding: clamp(3rem, 6vw, 5rem) 1.5rem; }
.hw-sec-inner { max-width: var(--hw-container); margin: 0 auto; }
.hw-sec--narrow .hw-sec-inner { max-width: 760px; }
.hw-sec--center { text-align: center; }
.hw-sec--center .hw-section-lead { margin-left: auto; margin-right: auto; max-width: 640px; }

/* Lesefluss-Typografie für Prosa-Blöcke */
.hw-sec-prose { font-size: 1.08rem; color: var(--hw-ink-soft); line-height: 1.75; }
.hw-sec-prose p { margin: 0 0 1.1rem; }
.hw-sec-prose p:last-child { margin-bottom: 0; }
.hw-sec-prose strong { color: var(--hw-ink); font-weight: 600; }
.hw-sec-prose a { color: var(--hw-brand); font-weight: 600; }

/* --- Page-Hero --- */
.hw-sec-hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem) 1.5rem clamp(2.5rem, 5vw, 4rem); }
.hw-sec-hero-inner { max-width: var(--hw-container); margin: 0 auto; position: relative; z-index: 1; }
.hw-sec-hero--brand {
  /* Hero-Hintergrundbild wie auf heacon.de (background-home-01.jpg) mit dem
     Brand-Verlauf per multiply verschmolzen — hält den weißen Text lesbar. */
  background:
    linear-gradient(135deg, #3b3fd4 0%, #4a4ef0 55%, #6e71f7 100%),
    url("../media/background/heacon/hero-pages.jpg");
  background-size: cover, cover;
  background-position: center, left center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: multiply;
  color: #fff;
}
.hw-sec-hero--brand .hw-sec-hero-subtitle { color: rgba(255,255,255,.9); }
.hw-sec-hero--light { background: linear-gradient(135deg, #f0f1ff 0%, #f8f9fc 40%, #ffffff 100%); color: var(--hw-ink); }
.hw-sec-hero-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.hw-sec-hero--brand .hw-sec-hero-eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.hw-sec-hero--light .hw-sec-hero-eyebrow { background: var(--hw-brand-light); color: var(--hw-brand); }
.hw-sec-hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .8rem; }
.hw-sec-hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 0; max-width: 680px; }

/* --- Breadcrumb --- */
.hw-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .82rem; margin-bottom: 1.25rem; }
.hw-sec-hero--brand .hw-breadcrumb a { color: rgba(255,255,255,.8); }
.hw-sec-hero--brand .hw-breadcrumb a:hover { color: #fff; }
.hw-sec-hero--brand .hw-breadcrumb-current { color: #fff; font-weight: 600; }
.hw-sec-hero--brand .hw-breadcrumb-sep { color: rgba(255,255,255,.5); }
.hw-breadcrumb a { color: var(--hw-muted); font-weight: 500; }
.hw-breadcrumb a:hover { color: var(--hw-brand); }
.hw-breadcrumb-current { color: var(--hw-ink); font-weight: 600; }
.hw-breadcrumb-text { color: var(--hw-muted); font-weight: 500; }
.hw-sec-hero--brand .hw-breadcrumb-text { color: rgba(255,255,255,.8); }
.hw-breadcrumb-sep { font-size: .6rem; color: var(--hw-faint); }

/* --- Vorteile-Liste --- */
.hw-feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.hw-feature-list--cols2 { grid-template-columns: repeat(2, 1fr); gap: .9rem 2rem; }
.hw-feature-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; color: var(--hw-ink-soft); }
.hw-feature-list li i { color: var(--hw-brand); margin-top: .2rem; flex-shrink: 0; }

/* --- Split-Feature --- */
.hw-split-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hw-split--reverse .hw-split-text { order: 2; }
.hw-split-image { width: 100%; height: auto; border-radius: var(--hw-radius); box-shadow: var(--hw-shadow); display: block; }
.hw-split-role { font-size: .82rem; font-weight: 600; color: var(--hw-brand); text-transform: uppercase; letter-spacing: .04em; margin: -.4rem 0 1.1rem; }
.hw-split-panel {
  min-height: 260px; border-radius: var(--hw-radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff; box-shadow: var(--hw-shadow);
}
.hw-split-panel--brand  { background: linear-gradient(135deg, #4a4ef0 0%, #3538c8 100%); }
.hw-split-panel--teal   { background: linear-gradient(135deg, #0a3d3a 0%, #072726 100%); }
.hw-split-panel--violet { background: linear-gradient(135deg, #6d28d9 0%, #4a4ef0 100%); }
.hw-split-stat-num { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.hw-split-stat-label { margin-top: .6rem; font-size: .95rem; opacity: .85; padding: 0 1.5rem; }

/* --- Prosa-Zwischenüberschriften & Listen (für Prose-Media / Text-Block /
       Markdown-gerenderte Partnertexte) --- */
.hw-sec-prose h2 { font-size: 1.4rem; font-weight: 800; color: var(--hw-ink); margin: 2rem 0 .9rem; letter-spacing: -.015em; }
.hw-sec-prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--hw-ink); margin: 1.8rem 0 .8rem; letter-spacing: -.01em; }
.hw-sec-prose h4 { font-size: 1.05rem; font-weight: 700; color: var(--hw-ink); margin: 1.5rem 0 .7rem; }
.hw-sec-prose h2:first-child, .hw-sec-prose h3:first-child, .hw-sec-prose h4:first-child { margin-top: 0; }
.hw-sec-prose em { font-style: italic; }
.hw-sec-prose hr { border: none; border-top: 1px solid var(--hw-line); margin: 1.8rem 0; }
.hw-sec-prose blockquote {
  margin: 1.2rem 0; padding: .6rem 1.1rem; border-left: 3px solid var(--hw-brand);
  background: var(--hw-bg-soft); color: var(--hw-ink-soft); border-radius: 0 .4rem .4rem 0;
}
.hw-sec-prose code { background: var(--hw-bg-alt); padding: .1rem .4rem; border-radius: .3rem; font-size: .9em; }
.hw-sec-prose pre { background: var(--hw-bg-alt); padding: 1rem; border-radius: .5rem; overflow-x: auto; margin: 1.2rem 0; }
.hw-sec-prose pre code { background: none; padding: 0; }
.hw-sec-prose ul, .hw-sec-prose ol { margin: 0 0 1.2rem; padding: 0; display: grid; gap: .6rem; }
.hw-sec-prose ul { list-style: none; }
.hw-sec-prose ul li { position: relative; padding-left: 1.6rem; color: var(--hw-ink-soft); }
.hw-sec-prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: .5rem; height: .5rem;
  border-radius: 2px; background: var(--hw-brand); transform: rotate(45deg);
}
.hw-sec-prose ol { list-style: decimal; padding-left: 1.4rem; }
.hw-sec-prose ol li { color: var(--hw-ink-soft); padding-left: .3rem; }
.hw-sec-prose li strong { color: var(--hw-ink); }
.hw-sec-prose img { max-width: 100%; height: auto; border-radius: var(--hw-radius-sm); margin: 1rem 0; }

/* --- Prosa-Sektion mit eingebettetem Motivbild --- */
.hw-prose-media { max-width: 860px; margin-left: auto; margin-right: auto; }
.hw-prose-figure {
  margin: 1.6rem 0 1.8rem; border-radius: var(--hw-radius); overflow: hidden; box-shadow: var(--hw-shadow);
}
.hw-prose-media--has-figure .hw-prose-figure { float: right; width: 42%; margin: .3rem 0 1.2rem 2rem; }
.hw-prose-media--left.hw-prose-media--has-figure .hw-prose-figure { float: left; margin: .3rem 2rem 1.2rem 0; }
.hw-prose-figure img { width: 100%; height: auto; display: block; }
.hw-prose-media-body::after { content: ""; display: block; clear: both; }
.hw-prose-media-body .hw-btn { margin-top: 1.4rem; }
@media (max-width: 640px) {
  .hw-prose-media--has-figure .hw-prose-figure,
  .hw-prose-media--left.hw-prose-media--has-figure .hw-prose-figure { float: none; width: 100%; margin: 1.4rem 0; }
}

/* --- Team-Karten --- */
.hw-sec-team .hw-section-title, .hw-sec-team .hw-section-lead { text-align: center; }
.hw-sec-team .hw-section-lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.hw-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.hw-team-card {
  background: var(--hw-bg); border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  padding: 1.8rem 1.5rem; box-shadow: var(--hw-shadow-sm); text-align: center;
}
.hw-team-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; display: block; }
.hw-team-avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1rem; display: flex;
  align-items: center; justify-content: center; font-size: 1.7rem; color: var(--hw-brand);
  background: var(--hw-brand-light);
}
.hw-team-name { font-size: 1.15rem; font-weight: 700; color: var(--hw-ink); margin: 0 0 .25rem; }
.hw-team-role { display: block; font-size: .82rem; font-weight: 600; color: var(--hw-brand); text-transform: uppercase; letter-spacing: .03em; margin-bottom: .9rem; }
.hw-team-bio { font-size: .92rem; color: var(--hw-ink-soft); line-height: 1.6; margin: 0; text-align: left; }
@media (max-width: 900px) { .hw-team-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* --- Logo-Grid (Kooperationspartner o.ä.) --- */
.hw-logo-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2rem 2.5rem; margin: 2.5rem auto 0; max-width: 900px;
}
.hw-logo-item {
  height: 44px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1); opacity: .65; transition: filter .2s ease, opacity .2s ease;
}
.hw-logo-item:hover { filter: grayscale(0); opacity: 1; }
.hw-logo-note { margin: 1.5rem 0 0; font-size: .85rem; color: var(--hw-faint); }
@media (max-width: 640px) { .hw-logo-grid { gap: 1.5rem 2rem; } .hw-logo-item { height: 34px; } }

/* --- Verwandte Links --- */
.hw-sec-related { background: var(--hw-bg-soft); }
.hw-related-grid { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.hw-related-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm);
  font-weight: 600; color: var(--hw-ink); transition: border-color .15s, box-shadow .15s, transform .15s;
}
.hw-related-link:hover { border-color: var(--hw-brand); box-shadow: var(--hw-focus); transform: translateY(-1px); }
.hw-related-link i { color: var(--hw-brand); transition: transform .15s; }
.hw-related-link:hover i { transform: translateX(3px); }

@media (max-width: 820px) {
  .hw-split-inner { grid-template-columns: 1fr; }
  .hw-split--reverse .hw-split-text { order: 0; }
}
@media (max-width: 680px) {
  .hw-feature-list--cols2 { grid-template-columns: 1fr; }
  .hw-related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AUDIT-DETAIL-MODAL + klickbare Audit-Zeilen
   ============================================================ */

/* Klickbare Audit-Zeile (Cursor + Pfeil) */
.hw-audit-row.lp-button { cursor: pointer; }
.hw-audit-arrow { color: var(--hw-faint); font-size: .8rem; opacity: 0; transform: translateX(-4px); transition: all .15s ease; }
.hw-audit-row:hover .hw-audit-arrow { opacity: 1; transform: translateX(0); color: var(--hw-brand); }

/* Modal-Grundgerüst (nutzt Bootstrap .modal, eigenes Content-Styling) */
.hw-modal-content { border: none; border-radius: var(--hw-radius); overflow: hidden; box-shadow: var(--hw-shadow-lg); }

/* Modal-Backdrop mit Blur (Glassmorphism) — solange das Audit-Modal offen ist.
   .hw-modal-open wird per JS auf <body> gesetzt, damit nur dieses Modal den
   Blur-Backdrop bekommt (nicht evtl. andere Modals). */
body.hw-modal-open .modal-backdrop.show {
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  opacity: 1;
}

/* Modal mit Google Maps als Hintergrund des GESAMTEN Modals. Zweispaltig:
   links weißer Bereich (Auditee + Audit-Daten), rechts Glassmorphism-Bereich
   (Karte scheint durch) mit Ansprechpartner + Formular über volle Höhe. */
.hw-auditmodal { position: relative; overflow: hidden; }
.hw-auditmodal-map-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* iframe größer als der sichtbare Bereich + negativ versetzt, damit die
   Google-Maps-Steuerelemente (an den Rändern) außerhalb liegen und vom
   overflow:hidden des Containers abgeschnitten werden. output=embed erlaubt
   kein disableDefaultUI, daher dieser Zuschnitt-Ansatz (kein API-Key nötig). */
.hw-auditmodal-map-bg iframe {
  position: absolute;
  top: -60px; left: calc(25% - 60px);
  width: calc(100% + 140px); height: calc(100% + 120px);
  border: 0; pointer-events: none;
}

.hw-auditmodal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 34px; height: 34px; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--hw-ink-soft); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--hw-shadow-sm); transition: background .15s ease, color .15s ease;
}
.hw-auditmodal-close:hover { background: #fff; color: var(--hw-ink); }

.hw-auditmodal-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 460px; }
.hw-auditmodal-col { padding: 2rem 1.75rem; display: flex; flex-direction: column; justify-content: center; }

/* LINKS: weißer Bereich. Weißes Overlay NUR hier (nicht über die ganze Breite);
   nach rechts läuft es weich aus, damit die Karte rechts frei durchscheint. */
.hw-auditmodal-col--facts {
  background: linear-gradient(to right,
    rgba(255,255,255,.97) 45%,
    rgba(255,255,255,.85) 70%,
    rgba(255,255,255,.6) 88%,
    rgba(255,255,255,.35) 100%);
}
.hw-auditmodal-eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--hw-brand); margin-bottom: .35rem; }
.hw-auditmodal-title { font-size: 1.25rem; font-weight: 700; margin: 0; line-height: 1.25; color: var(--hw-ink); }
.hw-auditmodal-map-addr { margin: .5rem 0 0; font-size: .82rem; line-height: 1.45; color: var(--hw-ink-soft); }

.hw-auditmodal-facts { margin: 1.25rem 0 0; display: grid; gap: .1rem; }
.hw-auditmodal-fact { padding: .7rem 0; border-bottom: 1px solid rgba(226,232,240,.7); }
.hw-auditmodal-fact:last-child { border-bottom: none; padding-bottom: 0; }
.hw-auditmodal-fact dt { font-size: .72rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--hw-faint); margin: 0 0 .25rem; }
.hw-auditmodal-fact dd { font-size: .9rem; color: var(--hw-ink); margin: 0; line-height: 1.5; }

/* RECHTS: Glassmorphism — Karte scheint ansatzweise durch. */
.hw-auditmodal-col--request {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-left: 1px solid rgba(255,255,255,.5);
  justify-content: center;
}

/* Ansprechpartner-Karte */
.hw-auditmodal-contact { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.hw-auditmodal-contact-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #fff; box-shadow: var(--hw-shadow-sm); }
.hw-auditmodal-contact-id { display: flex; flex-direction: column; min-width: 0; }
.hw-auditmodal-contact-name { font-size: .95rem; font-weight: 700; color: var(--hw-ink); line-height: 1.2; }
.hw-auditmodal-contact-role { font-size: .78rem; color: var(--hw-muted); margin-top: .1rem; }

.hw-auditmodal-request-lead { font-size: .85rem; color: var(--hw-ink-soft); margin: 0 0 1rem; line-height: 1.55; }
.hw-input {
  width: 100%; min-width: 0; padding: .6rem .85rem; font-size: .9rem; color: var(--hw-ink);
  border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hw-input:focus { outline: none; border-color: var(--hw-brand); box-shadow: var(--hw-focus); }
.hw-input.lp-required { border-color: #ef4444; }
.hw-auditmodal-submit { width: 100%; margin-top: .6rem; }
.hw-auditmodal-privacy { font-size: .72rem; color: var(--hw-muted); margin: .8rem 0 0; line-height: 1.5; }

/* Bestätigung nach dem Absenden */
.hw-auditmodal-confirm { text-align: center; padding: 1.5rem 1rem; }
.hw-auditmodal-confirm i { display: block; font-size: 2rem; color: #16a34a; margin-bottom: .7rem; }
.hw-auditmodal-confirm p { font-size: .9rem; color: var(--hw-ink-soft); margin: 0; }

@media (max-width: 620px) {
  /* Einspaltig: links weiß oben, Glas-Bereich darunter. Karte bleibt Hintergrund. */
  .hw-auditmodal-grid { grid-template-columns: 1fr; min-height: 0; }
  .hw-auditmodal-col--facts { background: rgba(255,255,255,.95); }
  .hw-auditmodal-col--request { border-left: none; border-top: 1px solid rgba(255,255,255,.5); }
}

/* ============================================================
   AUDIT-MODAL — Ladeanzeige (bis Inhalt + Karte geladen sind)
   ============================================================ */
.hw-modal-content { position: relative; }
/* Solange der Loader aktiv ist, spannt er das (leere) modal-content auf die
   spätere Modal-Höhe auf → kein Höhensprung beim Laden. */
.hw-modal-loader {
  display: none; align-items: center; justify-content: center;
  min-height: 460px; width: 100%;
  background: #fff; border-radius: var(--hw-radius);
}
.hw-modal-loader.is-active { display: flex; }
.hw-modal-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--hw-brand-light); border-top-color: var(--hw-brand);
  animation: hw-spin .7s linear infinite;
}
@keyframes hw-spin { to { transform: rotate(360deg); } }

/* ============================================================
   KONTAKTSEITE
   ============================================================ */
.hw-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* Kontaktdaten links */
.hw-contact-office { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 1.25rem; }
.hw-contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .9rem; }
.hw-contact-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .95rem; color: var(--hw-ink-soft); }
.hw-contact-list li i { color: var(--hw-brand); width: 20px; text-align: center; margin-top: .2rem; flex-shrink: 0; }
.hw-contact-list a { color: var(--hw-ink-soft); transition: color .15s; }
.hw-contact-list a:hover { color: var(--hw-brand); }
.hw-contact-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Formular rechts */
.hw-contact-form-wrap {
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  box-shadow: var(--hw-shadow); padding: clamp(1.5rem, 3vw, 2rem);
}
.hw-contact-form-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 .4rem; }
.hw-contact-form-lead { font-size: .9rem; color: var(--hw-ink-soft); margin: 0 0 1.5rem; }
.hw-contact-form { display: grid; gap: .8rem; }
.hw-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.hw-textarea { resize: vertical; min-height: 120px; font-family: inherit; line-height: 1.5; }
.hw-contact-privacy { font-size: .72rem; color: var(--hw-faint); margin: .2rem 0 0; line-height: 1.5; }
.hw-contact-form .hw-btn-primary { justify-self: start; margin-top: .3rem; }

/* Bestätigung nach dem Absenden */
.hw-contact-confirm { text-align: center; padding: 2.5rem 1.5rem; background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius); box-shadow: var(--hw-shadow); }
.hw-contact-confirm i { display: block; font-size: 2.5rem; color: #16a34a; margin-bottom: .9rem; }
.hw-contact-confirm h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 .5rem; }
.hw-contact-confirm p { font-size: .92rem; color: var(--hw-ink-soft); margin: 0; }

/* Anfahrt */
.hw-directions { background: var(--hw-bg-soft); }
.hw-directions-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.hw-directions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hw-direction-card {
  background: #fff; border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  padding: 1.5rem; box-shadow: var(--hw-shadow-sm);
}
.hw-direction-icon { font-size: 1.5rem; color: var(--hw-brand); margin-bottom: .8rem; }
.hw-direction-card h4 { font-size: 1rem; font-weight: 700; margin: 0 0 .5rem; }
.hw-direction-card p { font-size: .88rem; color: var(--hw-ink-soft); line-height: 1.6; margin: 0; }

@media (max-width: 860px) {
  .hw-contact-grid { grid-template-columns: 1fr; }
  .hw-directions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hw-contact-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RECHTSSEITEN (Impressum / Datenschutz) — Lesetext-Layout
   ============================================================ */
.hw-legal { padding: clamp(2.5rem, 5vw, 4rem) 1.5rem clamp(3.5rem, 7vw, 6rem); }
.hw-legal-inner { max-width: 820px; margin: 0 auto; }
.hw-legal-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 .5rem; }
.hw-legal-updated { font-size: .85rem; color: var(--hw-faint); margin: 0 0 2.5rem; }

.hw-legal h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; margin: 2.5rem 0 1rem; padding-top: 1.5rem; border-top: 1px solid var(--hw-line); }
.hw-legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.hw-legal h3 { font-size: 1.1rem; font-weight: 700; margin: 1.75rem 0 .6rem; color: var(--hw-ink); }
.hw-legal h4 { font-size: .98rem; font-weight: 700; margin: 1.25rem 0 .5rem; color: var(--hw-ink-soft); }
.hw-legal p { font-size: .95rem; line-height: 1.7; color: var(--hw-ink-soft); margin: 0 0 1rem; }
.hw-legal strong { color: var(--hw-ink); font-weight: 600; }
.hw-legal a { color: var(--hw-brand); font-weight: 500; word-break: break-word; }
.hw-legal a:hover { text-decoration: underline; }
.hw-legal ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.hw-legal li { font-size: .95rem; line-height: 1.7; color: var(--hw-ink-soft); margin-bottom: .5rem; }

/* Kompakte Datenblöcke (Adresse, Bankverbindung im Impressum) */
.hw-legal-block { background: var(--hw-bg-soft); border: 1px solid var(--hw-line); border-radius: var(--hw-radius-sm); padding: 1.1rem 1.25rem; margin: 0 0 1.25rem; }
.hw-legal-block p { margin: 0; font-size: .95rem; line-height: 1.7; }

/* Datenschutz: Widerspruchs-Kasten (großgeschriebener Art.-21-Block) hervorheben */
.hw-legal-note { background: var(--hw-brand-light); border-radius: var(--hw-radius-sm); padding: 1.1rem 1.25rem; margin: 0 0 1.25rem; }
.hw-legal-note p { font-size: .82rem; line-height: 1.65; margin: 0 0 .8rem; color: var(--hw-ink-soft); }
.hw-legal-note p:last-child { margin-bottom: 0; }

/* ============================================================
   NEUES-AUDIT-ANFRAGE-MODAL
   ============================================================ */
.hw-reqmodal { padding: 0; }
.hw-reqmodal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 1.75rem 1.25rem;
  background: linear-gradient(135deg, #3b3fd4 0%, #4a4ef0 100%); color: #fff;
}
.hw-reqmodal-title { font-size: 1.25rem; font-weight: 700; margin: 0; line-height: 1.25; color: #fff; }
.hw-reqmodal-head .hw-auditmodal-eyebrow { color: rgba(255,255,255,.85); }
.hw-reqmodal-head .hw-auditmodal-close { position: static; background: rgba(255,255,255,.18); color: #fff; }
.hw-reqmodal-head .hw-auditmodal-close:hover { background: rgba(255,255,255,.3); }

.hw-reqmodal-form { padding: 1.75rem; display: grid; gap: 1rem; }
.hw-reqmodal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hw-reqmodal-field { display: grid; gap: .35rem; }
.hw-reqmodal-field label { font-size: .78rem; font-weight: 600; color: var(--hw-ink-soft); }
.hw-reqmodal-field select.hw-input { appearance: auto; cursor: pointer; }
.hw-reqmodal-privacy { font-size: .72rem; color: var(--hw-faint); margin: .2rem 0 0; line-height: 1.5; }
.hw-reqmodal-form .hw-btn-primary { justify-self: start; margin-top: .3rem; }

/* Bestätigung */
.hw-reqmodal-confirm { text-align: center; padding: 3rem 1.75rem; }
.hw-reqmodal-confirm i { display: block; font-size: 2.5rem; color: #16a34a; margin-bottom: .9rem; }
.hw-reqmodal-confirm h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 .5rem; }
.hw-reqmodal-confirm p { font-size: .92rem; color: var(--hw-ink-soft); margin: 0; }

@media (max-width: 520px) {
  .hw-reqmodal-row { grid-template-columns: 1fr; }
}

/* ============================================================
   WIEDERVERWENDBARER MODAL-STIL (.hw-m2-*)
   Angelehnt an den "My Account"-Modal-Stil der Webanwendung:
   heller Sticky-Header, scrollbarer Body, sektionierte Blöcke.
   ============================================================ */
.hw-m2 { padding: 0; display: flex; flex-direction: column; max-height: 85vh; }

/* Sticky heller Header */
.hw-m2-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; flex-shrink: 0;
  background: var(--hw-bg-soft); border-bottom: 1px solid var(--hw-line);
  border-radius: var(--hw-radius) var(--hw-radius) 0 0;
}
.hw-m2-title { margin: 0; font-size: .95rem; font-weight: 600; color: var(--hw-ink); letter-spacing: -.01em; }
.hw-m2-close {
  display: flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; padding: 0; border: none; background: transparent;
  color: var(--hw-faint); font-size: .85rem; border-radius: .4rem; cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.hw-m2-close:hover { color: var(--hw-ink-soft); background: var(--hw-bg-alt); }

/* Scrollbarer Body */
.hw-m2-body { overflow-y: auto; flex: 1; }
.hw-m2-body::-webkit-scrollbar { width: 4px; }
.hw-m2-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

/* Sektionen */
.hw-m2-section { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--hw-line); }
.hw-m2-section:last-child { border-bottom: none; }
.hw-m2-section-title { font-size: .78rem; font-weight: 600; color: var(--hw-faint); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 1rem; }

/* Feld-Layout innerhalb der Sektionen */
.hw-m2-field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.hw-m2-field:last-child { margin-bottom: 0; }
.hw-m2-field label { font-size: .78rem; font-weight: 600; color: var(--hw-ink-soft); }
.hw-m2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hw-m2-note { font-size: .72rem; color: var(--hw-faint); margin: .2rem 0 1rem; line-height: 1.5; }
.hw-m2-note a { color: var(--hw-brand); font-weight: 600; }
.hw-m2-note a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .hw-m2-row { grid-template-columns: 1fr; }
}

/* Bestätigung im hw-m2-Modal */
.hw-m2-confirm { text-align: center; padding: 3rem 1.75rem; }
.hw-m2-confirm i { display: block; font-size: 2.5rem; color: #16a34a; margin-bottom: .9rem; }
.hw-m2-confirm h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 .5rem; }
.hw-m2-confirm p { font-size: .92rem; color: var(--hw-ink-soft); margin: 0; }

/* ============================================================
   KOOPERATIONSPARTNER (nativ aus contract-Tabelle)
   Überblick (Filter + Karten-Grid) + dynamische Detailseite
   mit Login-Gate. Struktur wie App (pk-*), im hw-Stil.
   ============================================================ */

/* --- Überblick: Warengruppen-Filter --- */
.hw-sec-partners { padding-top: clamp(2.5rem, 5vw, 4rem); }
.hw-partner-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: 2rem auto 2.5rem; }
.hw-partner-pill {
  padding: .45rem 1.1rem; border: 1px solid var(--hw-line); border-radius: 2rem;
  background: var(--hw-bg); color: var(--hw-ink-soft); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all .15s ease;
}
.hw-partner-pill:hover { border-color: var(--hw-brand); color: var(--hw-brand); background: var(--hw-brand-light); }
.hw-partner-pill.is-active { background: var(--hw-brand); color: #fff; border-color: var(--hw-brand); }

/* --- Kategorie-Sektion + Karten-Grid --- */
.hw-partner-catsection { margin-bottom: 2.5rem; }
.hw-partner-cattitle {
  font-size: 1.2rem; font-weight: 700; color: var(--hw-ink); margin: 0 0 1.25rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--hw-brand); display: inline-block;
}
.hw-partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; }
.hw-partner-card {
  display: flex; flex-direction: column; background: var(--hw-bg); border: 1px solid var(--hw-line);
  border-radius: var(--hw-radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.hw-partner-card:hover { transform: translateY(-2px); box-shadow: var(--hw-shadow); }
.hw-partner-card-logo {
  display: flex; align-items: center; justify-content: center; padding: 1.5rem; min-height: 104px;
  background: var(--hw-bg);
}
.hw-partner-card-logo img { max-height: 54px; max-width: 80%; object-fit: contain; }
.hw-partner-card-initials {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--hw-brand-light); color: var(--hw-brand); font-size: 1.1rem; font-weight: 700;
}
.hw-partner-card-body { padding: .9rem 1.25rem; border-top: 1px solid var(--hw-line); }
.hw-partner-card-name { display: block; font-size: .95rem; font-weight: 600; color: var(--hw-ink); }
.hw-partner-card-cat { display: block; font-size: .78rem; color: var(--hw-faint); margin-top: .15rem; }
.hw-partner-card-link {
  display: flex; align-items: center; gap: .4rem; padding: .75rem 1.25rem; margin-top: auto;
  border-top: 1px solid var(--hw-line); color: var(--hw-brand); font-size: .82rem; font-weight: 600;
}
.hw-partner-card:hover .hw-partner-card-link i { transform: translateX(3px); }
.hw-partner-card-link i { transition: transform .15s ease; }

/* --- Detailseite: Hero (Full-Bleed, an der App orientiert) --- */
.hw-partner-detail-hero {
  position: relative; min-height: 380px; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; overflow: hidden;
  /* volle Viewport-Breite (Full-Bleed), unabhängig vom Body-Container */
  margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw;
}
.hw-partner-detail-hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(15,23,41,.25) 0%, rgba(15,23,41,.55) 55%, rgba(15,23,41,.82) 100%);
}
.hw-partner-detail-hero-inner {
  position: relative; z-index: 1; width: 100%; max-width: var(--hw-container); margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem; display: flex; flex-direction: column; align-items: flex-start;
}
.hw-partner-back {
  display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.9);
  font-size: .82rem; font-weight: 500; background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  padding: .45rem 1.1rem; border-radius: 2rem; margin-bottom: 1.75rem; transition: background .2s;
}
.hw-partner-back:hover { background: rgba(255,255,255,.28); color: #fff; }
.hw-partner-detail-badge {
  display: inline-block; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); color: #fff;
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  padding: .35rem .9rem; border-radius: 2rem; margin-bottom: 1rem;
}
.hw-partner-detail-logo {
  background: #fff; border-radius: var(--hw-radius); padding: .9rem 1.1rem; margin-bottom: 1.1rem;
  display: inline-flex; box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.hw-partner-detail-logo img { max-height: 60px; max-width: 220px; object-fit: contain; display: block; }
.hw-partner-detail-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; margin: 0; letter-spacing: -.02em; text-shadow: 0 2px 8px rgba(0,0,0,.3); }

/* --- Detailseite: Body + Sektionen --- */
.hw-partner-detail-body { max-width: 860px; margin: 0 auto; padding: clamp(2rem, 4vw, 3rem) 1.5rem; }
.hw-partner-section { margin-bottom: 2.5rem; }
.hw-partner-section-head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.hw-partner-section-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--hw-brand-light); color: var(--hw-brand);
}
.hw-partner-section-title { font-size: 1.2rem; font-weight: 700; color: var(--hw-ink); margin: 0; }
.hw-partner-section-sub { font-size: .85rem; color: var(--hw-faint); margin: .2rem 0 0; }
.hw-partner-card-panel { background: var(--hw-bg); border: 1px solid var(--hw-line); border-radius: var(--hw-radius); overflow: hidden; }
.hw-partner-card-panel .hw-sec-prose { padding: 1.75rem; }

/* --- Login-Gate: Locked-Overlay --- */
.hw-partner-locked { position: relative; border-radius: var(--hw-radius); overflow: hidden; min-height: 320px; }
.hw-partner-locked-content { padding: 2rem; filter: blur(4px); pointer-events: none; user-select: none; opacity: .5; }
.hw-partner-locked-content ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.hw-partner-locked-content li { height: 1rem; background: var(--hw-line); border-radius: .3rem; }
.hw-partner-locked-content li:nth-child(2n) { width: 85%; }
.hw-partner-locked-content li:nth-child(3n) { width: 70%; }
.hw-partner-locked-content .hw-partner-fileph { height: 52px; background: var(--hw-bg-alt); border-radius: .5rem; margin-bottom: .5rem; }
.hw-partner-locked-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,.72); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem;
}
.hw-partner-locked-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; margin-bottom: 1rem; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; background: var(--hw-brand-light); color: var(--hw-brand);
}
.hw-partner-locked-title { font-size: 1.1rem; font-weight: 700; color: var(--hw-ink); margin: 0 0 .5rem; }
.hw-partner-locked-text { font-size: .88rem; color: var(--hw-ink-soft); max-width: 400px; margin: 0 0 1.25rem; }

/* --- Detailseite: Kontaktkarten --- */
.hw-partner-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .hw-partner-contacts { grid-template-columns: 1fr; } }
.hw-partner-contact {
  background: var(--hw-bg); border: 1px solid var(--hw-line); border-radius: var(--hw-radius);
  padding: 1.75rem; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hw-partner-contact--partner { border-top: 3px solid var(--hw-brand); }
.hw-partner-contact-badge { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--hw-faint); margin-bottom: 1rem; }
.hw-partner-contact-avatar {
  width: 76px; height: 76px; flex-shrink: 0; border-radius: 50%; background-size: cover; background-position: center;
  border: 3px solid var(--hw-line); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center;
  color: var(--hw-brand); background-color: var(--hw-brand-light); font-size: 1.5rem;
}
.hw-partner-contact-name { font-size: 1rem; font-weight: 700; color: var(--hw-ink); margin: 0 0 .25rem; }
.hw-partner-contact-pos { font-size: .82rem; color: var(--hw-ink-soft); margin: 0 0 1rem; }
.hw-partner-contact-details { width: 100%; text-align: left; }
.hw-partner-contact-row { display: flex; align-items: center; gap: .75rem; padding: .5rem 0; font-size: .85rem; color: var(--hw-ink-soft); border-bottom: 1px solid var(--hw-bg-alt); }
.hw-partner-contact-row:last-child { border-bottom: none; }
.hw-partner-contact-row i { width: 18px; color: var(--hw-faint); text-align: center; flex-shrink: 0; }
.hw-partner-contact-row a { color: var(--hw-brand); }

/* ============================================================
   LOGIN-MODAL — Signin-Design 1:1 aus der Webanwendung (Split-Modal:
   Brand-Panel mit Bild + Vorteile links, Formular rechts).
   ============================================================ */
#hw-signin-modal .modal-content.signin-modal-split {
  display: flex; flex-direction: row; border-radius: 0.75rem;
  overflow: hidden; min-height: 520px; border: none; background: transparent; position: relative;
}
.signin-modal-brand {
  width: 40%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  background:
    linear-gradient(135deg, rgba(59, 63, 212, 0.92) 0%, rgba(85, 88, 245, 0.85) 50%, rgba(110, 113, 247, 0.8) 100%),
    url('../media/background/signin-modal.jpg') center / cover no-repeat;
  padding: 3rem 2.5rem; color: #fff;
}
.signin-modal-brand-title { font-size: 1.85rem; font-weight: 700; margin-bottom: 0.5rem; }
.signin-modal-brand-subtitle { font-size: 1rem; font-weight: 300; opacity: 0.85; line-height: 1.6; margin-bottom: 2rem; }
.signin-modal-features { list-style: none; padding: 0; margin: 0; }
.signin-modal-features li { font-size: 0.9rem; padding: 0.4rem 0; opacity: 0.9; display: flex; align-items: center; gap: 0.5rem; }
.signin-modal-features li i { font-size: 0.7rem; }
.signin-modal-form {
  width: 60%; background: #fff; padding: 2.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.signin-modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: #94a3b8; font-size: 1rem; cursor: pointer; z-index: 2; transition: color 0.15s ease;
}
.signin-modal-close:hover { color: #1e293b; }
.signin-modal-heading { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 0 0 0.25rem; }
.signin-modal-subheading { font-size: 0.85rem; color: #64748b; margin: 0 0 1.5rem; }
.signin-modal-methods { display: flex; gap: 0.4rem; margin-bottom: 1.25rem; }
.signin-modal-method {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.45rem 0.5rem; font-size: 0.75rem; font-weight: 500; color: #64748b;
  background: #f8f9fc; border: 1px solid #e2e8f0; border-radius: 0.5rem; cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.signin-modal-method:hover { background: #f0f0ff; border-color: #cbd5e1; color: #1e293b; }
.signin-modal-method.active { background: rgba(74, 78, 240, 0.1); border-color: rgba(74, 78, 240, 0.25); color: #4a4ef0; font-weight: 600; }
.signin-modal-hint { font-size: 0.78rem; color: #94a3b8; margin-bottom: 1rem; line-height: 1.5; }
.signin-modal-input-row { display: flex; gap: 0.5rem; }
.signin-modal-input-row .form-control { flex: 1; }
.signin-modal-input-row .btn { padding: 0.5rem 1rem; border-radius: 0.5rem; }
.signin-modal-form .btn { border-radius: 0.5rem; }
.signin-modal-forgot { display: inline-block; margin-top: 0.75rem; font-size: 0.78rem; color: #94a3b8; text-decoration: none; background: none; border: none; cursor: pointer; transition: color 0.15s ease; }
.signin-modal-forgot:hover { color: #4a4ef0; }
/* Tab-Panes: nur der aktive sichtbar */
.hw-signin-pane { display: none; }
.hw-signin-pane.is-active { display: block; }
/* Bestätigung nach OTC-Versand (aus dem RC-Handler eingefügt) */
.signin-modal-confirm { text-align: center; padding: 1rem 0; }
.signin-modal-confirm-icon {
  width: 48px; height: 48px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(74, 78, 240, 0.08); color: #4a4ef0; font-size: 1.2rem;
}
.signin-modal-confirm-text { font-size: 0.82rem; color: #64748b; line-height: 1.6; margin-bottom: 0.75rem; }
.signin-modal-confirm-text strong { color: #1e293b; }
.signin-modal-confirm .signin-modal-input-row { justify-content: center; max-width: 280px; margin: 0 auto; }
@media (max-width: 768px) {
  .signin-modal-brand { display: none; }
  .signin-modal-form { width: 100%; padding: 2.5rem 1.75rem; }
  #hw-signin-modal .modal-content.signin-modal-split { min-height: 0; }
}

/* ============================================================
   PARTNER-LOGO-BAND (Startseite) — horizontales Endlos-Marquee
   ============================================================ */
.hw-partner-band { padding: clamp(3rem, 6vw, 5rem) 0; overflow: hidden; }
.hw-partner-band-head { max-width: var(--hw-container); margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.hw-partner-band-head .hw-section-lead { max-width: 640px; margin-left: auto; margin-right: auto; }

.hw-marquee {
  margin-top: 2.5rem; overflow: hidden; position: relative; width: 100%;
  /* seitliches Aus-/Einblenden der Logos */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hw-marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: hw-marquee-scroll 45s linear infinite;
}
.hw-marquee:hover .hw-marquee-track { animation-play-state: paused; }
.hw-marquee-item {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  height: 56px; width: 170px; padding: 0 1.5rem;
}
.hw-marquee-item img {
  max-height: 44px; max-width: 130px; object-fit: contain;
  filter: grayscale(1); opacity: .6; transition: filter .2s ease, opacity .2s ease;
}
.hw-marquee-item:hover img { filter: grayscale(0); opacity: 1; }
/* Die Reihe ist verdoppelt → -50% ergibt einen nahtlosen Loop. */
@keyframes hw-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hw-marquee-track { animation: none; }
  .hw-marquee { overflow-x: auto; }
}
.hw-partner-band-cta { text-align: center; margin-top: 2.5rem; }
@media (max-width: 640px) { .hw-marquee-item { width: 130px; height: 46px; } .hw-marquee-item img { max-height: 34px; max-width: 100px; } }

/* ============================================================
   EINHEITLICHES WECHSEL-LAYOUT (Startseite) — Text | Inhalt,
   abwechselnd links/rechts. Nutzt dasselbe 2-Spalten-Raster wie
   hw-app; die --reverse-Variante dreht die Spalten (Inhalt | Text).
   ============================================================ */
.hw-split-row {
  max-width: var(--hw-container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hw-split-row > * { min-width: 0; }
/* Standard: Text zuerst (links), Inhalt zweitens (rechts). */
.hw-split-row .hw-split-copy   { order: 1; }
.hw-split-row .hw-split-body   { order: 2; }
/* Kontrast/Wechsel: Inhalt links, Text rechts. */
.hw-split-row--reverse .hw-split-copy { order: 2; }
.hw-split-row--reverse .hw-split-body { order: 1; }

/* Text-Block */
.hw-split-copy .hw-section-eyebrow { }
.hw-split-copy .hw-section-title   { margin-top: .25rem; }
.hw-split-copy .hw-section-lead    { margin-bottom: 1.5rem; }
.hw-split-features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .7rem; }
.hw-split-features li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; color: var(--hw-ink-soft); }
.hw-split-features li i { color: var(--hw-brand); margin-top: .2rem; flex-shrink: 0; }
.hw-split-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Sektions-Wrapper: abwechselnder Hintergrund für Rhythmus */
.hw-split-section { padding: clamp(3rem, 6vw, 5rem) 1.5rem; }
.hw-split-section--soft { background: var(--hw-bg-soft); }

@media (max-width: 900px) {
  .hw-split-row { grid-template-columns: 1fr; gap: 2rem; }
  /* Auf Mobile immer Text zuerst, Inhalt darunter — unabhängig von reverse. */
  .hw-split-row .hw-split-copy,
  .hw-split-row--reverse .hw-split-copy { order: 1; }
  .hw-split-row .hw-split-body,
  .hw-split-row--reverse .hw-split-body { order: 2; }
}

/* --- Wechsel-Layout: Anpassungen der eingebetteten Inhalte --- */
/* 2×2-Karten in der halben Spalte (Sektion "Vier Bereiche") */
.hw-split-body .hw-services-grid--compact { max-width: none; gap: 1rem; }
.hw-split-body .hw-services-grid--compact .hw-service-card { min-height: 180px; }
.hw-split-body .hw-services-grid--compact .hw-service-content { padding: 1.25rem; }
.hw-split-body .hw-services-grid--compact .hw-service-desc { font-size: .85rem; }
/* Audit-Panel füllt die Body-Spalte */
.hw-split-body .hw-audit-panel { width: 100%; margin: 0; }
/* Marquee im Split: vertikal etwas kompakter, volle Body-Breite */
.hw-split-body .hw-marquee { margin-top: 0; }
.hw-split-section.hw-partner-band { overflow: hidden; }
@media (max-width: 640px) {
  .hw-split-body .hw-services-grid--compact { grid-template-columns: 1fr 1fr; }
  .hw-split-body .hw-services-grid--compact .hw-service-card { min-height: 150px; }
}

/* ============================================================
   GLOBALES CHAT-WIDGET (unten rechts) — Avatar-Kreise + Kontaktformular
   ============================================================ */
.hw-chat { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 200; }

/* Trigger: Avatar-Stack + Einladungstext */
.hw-chat-trigger {
  display: flex; align-items: center; gap: .7rem; padding: .4rem .35rem;
  background: var(--hw-bg); border: 1px solid var(--hw-line); border-radius: 3rem;
  box-shadow: var(--hw-shadow-lg); cursor: pointer; transition: transform .18s ease, box-shadow .18s ease;
  max-width: 320px;
}
.hw-chat-trigger:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(30,41,59,.16); }
.hw-chat.is-open .hw-chat-trigger { transform: scale(.9); opacity: 0; pointer-events: none; }

.hw-chat-avatars { position: relative; display: inline-flex; align-items: center; flex-shrink: 0; }
.hw-chat-avatar {
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden; border: 2px solid var(--hw-bg);
  background: var(--hw-bg-alt); margin-left: -16px; box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.hw-chat-avatar:first-child { margin-left: 0; }
.hw-chat-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hw-chat-avatars--sm .hw-chat-avatar { width: 28px; height: 28px; margin-left: -13px; }
/* Online-Punkt am letzten Avatar */
.hw-chat-online {
  position: absolute; right: 0; bottom: 0; width: 11px; height: 11px; border-radius: 50%;
  background: #22c55e; border: 2px solid var(--hw-bg);
}
.hw-chat-online-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; margin-right: .35rem; }

.hw-chat-invite { display: flex; flex-direction: column; text-align: left; padding-right: .75rem; min-width: 0; }
.hw-chat-invite-title { font-size: .9rem; font-weight: 700; color: var(--hw-ink); line-height: 1.2; }
.hw-chat-invite-sub { font-size: .78rem; color: var(--hw-muted); line-height: 1.3; }

/* Panel: Kontaktformular */
.hw-chat-panel {
  position: absolute; right: 0; bottom: 0; width: min(360px, calc(100vw - 3rem));
  background: var(--hw-bg); border: 1px solid var(--hw-line); border-radius: var(--hw-radius-lg);
  box-shadow: 0 16px 48px rgba(30,41,59,.22); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98);
  transform-origin: bottom right; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.hw-chat.is-open .hw-chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.hw-chat-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: 1rem 1.1rem; color: #fff;
  background: linear-gradient(135deg, var(--hw-brand) 0%, var(--hw-brand-dark) 100%);
}
.hw-chat-panel-head-info { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.hw-chat-panel-head .hw-chat-avatar { border-color: rgba(255,255,255,.6); }
.hw-chat-panel-title { display: block; font-size: .95rem; font-weight: 700; line-height: 1.2; }
.hw-chat-panel-sub { display: flex; align-items: center; font-size: .78rem; opacity: .9; }
.hw-chat-close {
  background: rgba(255,255,255,.15); border: none; color: #fff; width: 1.9rem; height: 1.9rem;
  border-radius: .5rem; cursor: pointer; flex-shrink: 0; transition: background .15s ease;
}
.hw-chat-close:hover { background: rgba(255,255,255,.28); }

.hw-chat-panel-body { padding: 1.1rem; }
.hw-chat-intro { font-size: .85rem; color: var(--hw-ink-soft); margin: 0 0 1rem; line-height: 1.5; }
.hw-chat-form { display: grid; gap: .7rem; }
.hw-chat-form .hw-btn-primary { width: 100%; }

@media (max-width: 480px) {
  .hw-chat { right: 1rem; bottom: 1rem; }
  .hw-chat-invite { display: none; }   /* nur Avatar-Stack auf kleinen Screens */
  .hw-chat-trigger { padding: .4rem; }
}

/* ── Case Studies (Anwendungsfälle) ─────────────────────────────────── */
.hw-cases { background: var(--hw-brand-light); }
.hw-cases-head { max-width: 720px; margin: 0 0 2.5rem; }
.hw-cases-head .hw-section-lead { margin-bottom: 0; }

.hw-case {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--hw-line);
  border-radius: var(--hw-radius-lg);
  box-shadow: var(--hw-shadow);
  overflow: hidden;
}
.hw-case + .hw-case { margin-top: 2rem; }
.hw-case--reverse { grid-template-columns: 1fr 1.6fr; }
.hw-case--reverse .hw-case-body    { order: 2; }
.hw-case--reverse .hw-case-metrics { order: 1; }

.hw-case-body { padding: 2.25rem 2.5rem; }
.hw-case-label {
  display: inline-block; color: var(--hw-brand); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; margin-bottom: .5rem;
}
.hw-case-title { font-size: 1.5rem; font-weight: 700; color: var(--hw-ink); margin: 0 0 .35rem; }
.hw-case-subtitle { font-size: 1.05rem; color: var(--hw-ink-soft); margin: 0 0 1.25rem; }

/* Strukturierter Fließtext (Ausgangssituation/Zielsetzung/Umsetzung/Ergebnis) */
.hw-case-prose h4 {
  font-size: .95rem; font-weight: 700; color: var(--hw-brand-dark);
  margin: 1.25rem 0 .35rem; text-transform: uppercase; letter-spacing: .03em;
}
.hw-case-prose h4:first-child { margin-top: 0; }
.hw-case-prose p  { margin: 0 0 .6rem; color: var(--hw-ink-soft); line-height: 1.6; }
.hw-case-prose ul { margin: 0; padding-left: 1.1rem; }
.hw-case-prose li { margin: 0 0 .5rem; color: var(--hw-ink-soft); line-height: 1.55; }

/* Kennzahl-Panel im Brand-Ton */
.hw-case-metrics {
  display: flex; flex-direction: column; justify-content: center; gap: 1.75rem;
  padding: 2.25rem 2rem;
  background: linear-gradient(150deg, var(--hw-brand) 0%, var(--hw-brand-dark) 100%);
  color: #fff; text-align: center;
}
.hw-case-metric { display: flex; flex-direction: column; align-items: center; }
.hw-case-metric-num  { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.hw-case-metric-unit { font-size: 1rem; font-weight: 600; opacity: .9; margin-top: .2rem; }
.hw-case-metric-label { font-size: .85rem; opacity: .82; margin-top: .5rem; }

@media (max-width: 800px) {
  .hw-case,
  .hw-case--reverse { grid-template-columns: 1fr; }
  .hw-case--reverse .hw-case-body    { order: 1; }
  .hw-case--reverse .hw-case-metrics { order: 2; }
  .hw-case-body { padding: 1.75rem 1.5rem; }
  .hw-case-metrics { flex-direction: row; flex-wrap: wrap; padding: 1.75rem 1.5rem; gap: 1.5rem 2.5rem; }
  .hw-case-metric { flex: 1 1 auto; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   Pharma-Kodex-Sonderseite (/leistungen/wissen/pharma-kodex)
   Fällt bewusst aus dem normalen Baukasten-Schema: KEINE Fotos, sondern
   CSS-visualisierte App-Auszüge ("App-Fenster") — portiert von pharma-kodex.de,
   auf das Heacon-Design (Brand #4a4ef0, Inter) und FontAwesome umgestellt.
   Eigener Namensraum .hw-pk-* / .hw-app-* / .hw-demo-* → keine Kollisionen.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Textmarker-Highlight (statisch; wischt beim Scrollen via .is-marked) ── */
.hw-hl {
  position: relative; display: inline;
  background-image: linear-gradient(transparent 42%, var(--hw-hl-color, #d9dbff) 42%);
  background-repeat: no-repeat; background-position: 0 0; background-size: 0% 100%;
  border-radius: 2px; padding: 0 .06em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hw-hl.is-marked { background-size: 100% 100%; transition: background-size .55s cubic-bezier(.22,.61,.36,1); }
.hw-hl-brand  { --hw-hl-color: #d9dbff; }
.hw-hl-green  { --hw-hl-color: #bbf7d0; }
.hw-hl-blue   { --hw-hl-color: #bfdbfe; }
.hw-hl-yellow { --hw-hl-color: #fef08a; }
@media (prefers-reduced-motion: reduce) {
  .hw-hl { background-size: 100% 100%; transition: none; }
}

/* ── Sektions-Rhythmik der Sonderseite ── */
.hw-pk-section { padding: 5.5rem 0; }
.hw-pk-section--tint { background: #fafbff; }
.hw-pk-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hw-pk-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--hw-brand); background: var(--hw-brand-light);
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.hw-pk-h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; color: var(--hw-ink); margin: 0; }
.hw-pk-lead { font-size: 1.12rem; line-height: 1.65; color: var(--hw-ink-soft); }

/* ── HERO (kein Foto — Claim + App-Fenster) ── */
.hw-pk-hero {
  position: relative; overflow: hidden; padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(74,78,240,.10), transparent 60%),
    linear-gradient(180deg, #fbfbff 0%, #fff 100%);
}
.hw-pk-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hw-pk-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.8rem); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.05; color: var(--hw-ink); margin: 0 0 1.25rem;
}
.hw-pk-hero-lead { font-size: 1.22rem; line-height: 1.6; color: var(--hw-ink-soft); max-width: 540px; margin: 0; }
.hw-pk-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hw-pk-hero-meta { display: flex; gap: 1.75rem; margin-top: 2.25rem; flex-wrap: wrap; }
.hw-pk-hero-meta-item { display: flex; align-items: center; gap: .5rem; color: var(--hw-ink-soft); font-size: .92rem; }
.hw-pk-hero-meta-item .fa { color: var(--hw-brand); }

/* ── Zielgruppen-/Nutzen-Band (Chips) ── */
.hw-pk-audience { border-top: 1px solid var(--hw-line); border-bottom: 1px solid var(--hw-line); background: #fafbff; padding: 3.5rem 0; }
.hw-pk-audience-label { font-size: .82rem; font-weight: 600; color: var(--hw-ink-soft); text-align: center; margin-bottom: 1.25rem; }
.hw-pk-audience-row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hw-pk-chip {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff;
  border: 1px solid var(--hw-line); border-radius: 999px; padding: .55rem 1.1rem;
  font-size: .92rem; font-weight: 500; color: var(--hw-ink);
  transition: border-color .15s, color .15s, box-shadow .15s, transform .15s;
}
.hw-pk-chip .fa { color: var(--hw-brand); }
.hw-pk-chip:hover { color: var(--hw-brand-dark); border-color: var(--hw-brand); box-shadow: 0 6px 16px rgba(74,78,240,.10); transform: translateY(-2px); }

/* ── Feature-Reihen (alternierend Text | App-Fenster) ── */
.hw-pk-feature { display: flex; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.hw-pk-feature.is-reverse { flex-direction: row-reverse; }
.hw-pk-feature-text, .hw-pk-feature-visual { flex: 1; min-width: 0; }
.hw-pk-feature-text h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; color: var(--hw-ink); line-height: 1.12; margin: 0 0 1rem; }
.hw-pk-feature-text p { font-size: 1.08rem; line-height: 1.65; color: var(--hw-ink-soft); margin: 0; }
.hw-pk-feature-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.hw-pk-feature-list li { display: flex; align-items: start; gap: .6rem; padding: .35rem 0; color: var(--hw-ink); }
.hw-pk-feature-list .fa { color: var(--hw-brand); margin-top: 4px; }

/* ── CSS-App-Fenster ── */
.hw-app-window {
  background: #fff; border: 1px solid rgba(74,78,240,.10); border-radius: 18px; overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 2px 6px rgba(20,24,77,.06), 0 32px 64px -16px rgba(20,24,77,.22);
}
.hw-app-bar { display: flex; align-items: center; gap: .5rem; padding: .7rem .9rem; background: #f6f7fb; border-bottom: 1px solid rgba(74,78,240,.08); }
.hw-app-dot { width: 11px; height: 11px; border-radius: 50%; }
.hw-app-dot.r { background: #ff5f57; } .hw-app-dot.y { background: #febc2e; } .hw-app-dot.g { background: #28c840; }
.hw-app-title { margin-left: .5rem; font-size: .8rem; color: var(--hw-ink-soft); font-weight: 500; }

/* Auszug: Reader (TOC + Text) */
.hw-demo-reader { display: grid; grid-template-columns: 160px 1fr; min-height: 320px; }
.hw-demo-toc { background: #f7f8fc; border-right: 1px solid var(--hw-line); padding: 1rem .75rem; }
.hw-demo-toc-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--hw-ink-soft); margin-bottom: .6rem; }
.hw-demo-toc-item { font-size: .78rem; color: #475569; padding: .4rem .5rem; border-radius: 7px; border-left: 3px solid transparent; margin-bottom: 2px; }
.hw-demo-toc-item.is-active { color: var(--hw-brand); background: var(--hw-brand-light); border-left-color: var(--hw-brand); font-weight: 600; }
.hw-demo-body { padding: 1.4rem 1.6rem; }
.hw-demo-badge { display: inline-block; font-size: .68rem; font-weight: 700; color: var(--hw-brand); background: var(--hw-brand-light); padding: .25rem .6rem; border-radius: 6px; margin-bottom: .7rem; }
.hw-demo-article-h { font-size: 1.05rem; font-weight: 800; color: var(--hw-ink); margin-bottom: .9rem; }
.hw-demo-para { font-size: .8rem; line-height: 1.6; color: #334155; margin-bottom: .7rem; }
.hw-demo-para .pa { color: var(--hw-brand); font-weight: 700; }
.hw-demo-skel { height: .62rem; border-radius: 4px; background: #eef0f7; margin-bottom: .45rem; }
.hw-demo-skel.w90 { width: 90%; } .hw-demo-skel.w75 { width: 75%; } .hw-demo-skel.w60 { width: 60%; }

/* Auszug: KI-Panel */
.hw-demo-ai { padding: 1.5rem; }
.hw-demo-ai-head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.hw-demo-ai-badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--hw-brand), var(--hw-brand-dark)); padding: .3rem .7rem; border-radius: 999px; }
.hw-demo-ai-head-title { font-size: .95rem; font-weight: 700; color: var(--hw-ink); }
.hw-demo-ai-card { background: #f7f8fc; border: 1px solid var(--hw-line); border-radius: 12px; padding: 1.1rem; }
.hw-demo-ai-card p { font-size: .82rem; line-height: 1.6; color: #334155; margin: 0 0 .6rem; }
.hw-demo-ai-card p:last-child { margin-bottom: 0; }
.hw-demo-ai-quote { border-left: 3px solid var(--hw-brand); padding-left: .8rem; font-style: italic; color: #475569; font-size: .8rem; margin: .8rem 0; }
.hw-demo-ai-disclaimer { font-size: .68rem; color: #94a3b8; margin-top: .8rem; display: flex; align-items: center; gap: .35rem; }

/* Auszug: Karteikarte (Frage → Antwort) */
.hw-demo-flash { padding: 1.6rem; display: flex; align-items: stretch; gap: 1rem; }
.hw-demo-flash-side { flex: 1; background: #f7f8fc; border: 1px solid var(--hw-line); border-radius: 12px; padding: 1.1rem; display: flex; flex-direction: column; }
.hw-demo-flash-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--hw-brand); margin-bottom: .55rem; display: flex; align-items: center; gap: .35rem; }
.hw-demo-flash-text { font-size: .85rem; line-height: 1.5; color: #334155; }
.hw-demo-flash-arrow { align-self: center; width: 38px; height: 38px; border-radius: 50%; background: var(--hw-brand-light); color: var(--hw-brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Auszug: Such-/Trefferliste */
.hw-demo-search { padding: 1.4rem 1.5rem; }
.hw-demo-search-bar { display: flex; align-items: center; gap: .6rem; background: #f1f3f9; border-radius: 11px; padding: .7rem 1rem; color: #64748b; font-size: .85rem; margin-bottom: 1rem; }
.hw-demo-search-bar .fa { color: var(--hw-brand); }
.hw-demo-result { display: flex; align-items: center; gap: .8rem; padding: .7rem; border-radius: 11px; border: 1px solid var(--hw-line); margin-bottom: .55rem; transition: border-color .15s; }
.hw-demo-result:hover { border-color: var(--hw-brand); }
.hw-demo-result-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--hw-brand-light); color: var(--hw-brand); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.hw-demo-result-title { font-size: .85rem; font-weight: 600; color: var(--hw-ink); }
.hw-demo-result-sub { font-size: .72rem; color: var(--hw-ink-soft); }
.hw-demo-result-chevron { margin-left: auto; color: #cbd5e1; }

/* ── Funktions-Grid ── */
.hw-pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hw-pk-grid-card { background: #fff; border: 1px solid var(--hw-line); border-radius: 18px; padding: 1.9rem; height: 100%; transition: transform .18s, box-shadow .18s, border-color .18s; }
.hw-pk-grid-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(74,78,240,.10); border-color: var(--hw-brand); }
.hw-pk-grid-icon { width: 56px; height: 56px; border-radius: 15px; background: linear-gradient(135deg, var(--hw-brand), var(--hw-brand-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; }
.hw-pk-grid-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--hw-ink); margin-bottom: .55rem; }
.hw-pk-grid-card p { color: var(--hw-ink-soft); margin: 0; line-height: 1.6; }

/* ── Werteband (statt Foto-Band: Verlauf mit Text) ── */
.hw-pk-band { border-radius: 24px; padding: clamp(2.5rem, 5vw, 3.5rem); background: linear-gradient(120deg, var(--hw-brand) 0%, var(--hw-brand-dark) 100%); color: #fff; }
.hw-pk-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 1rem; }
.hw-pk-band p { font-size: 1.08rem; line-height: 1.6; color: rgba(255,255,255,.9); margin: 0; }

/* ── Finaler CTA ── */
.hw-pk-final { background: linear-gradient(135deg, var(--hw-brand) 0%, var(--hw-brand-dark) 100%); border-radius: 28px; padding: clamp(3rem, 6vw, 5rem); text-align: center; color: #fff; }
.hw-pk-final h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 1rem; }
.hw-pk-final p { font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 2rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hw-pk-section { padding: 4rem 0; }
  .hw-pk-hero-grid, .hw-pk-feature, .hw-pk-feature.is-reverse { grid-template-columns: 1fr; flex-direction: column; }
  .hw-pk-feature-visual { margin-top: .5rem; width: 100%; }
  .hw-pk-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .hw-pk-grid { grid-template-columns: 1fr; }
  .hw-demo-reader { grid-template-columns: 1fr; }
  .hw-demo-toc { display: none; }
  .hw-demo-flash { flex-direction: column; }
  .hw-demo-flash-arrow { transform: rotate(90deg); }
}
