/* hochzwei · Modern Workplace
 * Page-spezifische Styles. Erbt Tokens aus colors_and_type.css.
 * Mobile-first, WCAG 2.1 AA, 375 px Breakpoint.
 */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }
::selection { background: var(--hz-green); color: var(--hz-white); }

:root {
  --page-max: 1200px;
  --page-pad: 24px;
}
@media (min-width: 720px) { :root { --page-pad: 40px; } }
@media (min-width: 1100px) { :root { --page-pad: 64px; } }

.wrap { max-width: var(--page-max); margin: 0 auto; padding-left: var(--page-pad); padding-right: var(--page-pad); }

/* ======================================================
 * Buttons
 * ====================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 22px; border-radius: var(--r-md);
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1;
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
  min-height: 48px;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--hz-green); color: var(--hz-white); }
.btn-primary:hover { background: var(--hz-green-900); }
.btn-secondary { background: transparent; color: var(--hz-navy); border-color: var(--hz-navy); }
.btn-secondary:hover { background: var(--hz-navy); color: var(--hz-white); }
.btn-ghost-light { background: transparent; color: var(--hz-white); border-color: rgba(255,255,255,0.32); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn:focus-visible { outline: 2px solid var(--hz-green-light); outline-offset: 3px; }

/* ======================================================
 * Eyebrow + Bracket marker
 * ====================================================== */
.eyebrow {
  font-size: var(--fs-micro); font-weight: 500;
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  /* hz-green-900 statt hz-green: AA-Kontrast (>= 4.5:1) auch auf bg-2 (#F4F5F4). */
  color: var(--hz-green-900); margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor; flex: none;
}
.section-dark .eyebrow { color: var(--hz-green-light); }

/* Bracket frame around hero/master-pitch content */
.bracketed {
  position: relative;
  padding: 24px 28px;
}
.bracketed::before,
.bracketed::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 16px; pointer-events: none;
}
.bracketed::before {
  left: 0;
  border-left: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
}
.bracketed::after {
  right: 0;
  border-right: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
}
@media (min-width: 720px) {
  .bracketed { padding: 32px 40px; }
  .bracketed::before, .bracketed::after { width: 22px; }
}

/* ======================================================
 * Header: A: Bracket marker for active page, solid (no glass)
 * Sub-bar: B: anchor nav for in-page sections
 * ====================================================== */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: var(--hz-white);
  border-bottom: 1px solid var(--border-1);
}
.site-header-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: 16px var(--page-pad);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 22px; }
.primary-nav { display: none; }
/* Breakpoint von 1024 auf 1180 angehoben: zwischen 1024 und 1180 brachen Logo + 6 Nav-Items
   + Erstgespraech-CTA auf zwei Zeilen. Unter 1180 kommt jetzt direkt das Hamburger-Menue. */
@media (min-width: 1180px) {
  .primary-nav {
    display: flex; gap: 4px; justify-content: center;
  }
  .primary-nav a {
    position: relative;
    font-size: 14.5px; font-weight: 500;
    color: var(--hz-navy);
    text-decoration: none;
    padding: 8px 14px;
    letter-spacing: -0.005em;
    border-radius: var(--r-sm);
    white-space: nowrap; /* Items duerfen unter keinen Umstaenden umbrechen. */
    transition: background var(--dur-fast) var(--ease-standard),
                color var(--dur-fast) var(--ease-standard);
  }
  .primary-nav a:hover { background: var(--bg-2); }
  .primary-nav a[aria-current="page"] { color: var(--hz-green); }
  /* Bracket marker around the active item, hidden by default. */
  .primary-nav a .nav-label { position: relative; z-index: 1; }
  .primary-nav a[aria-current="page"]::before,
  .primary-nav a[aria-current="page"]::after {
    content: '';
    position: absolute; top: 6px; bottom: 6px;
    width: 6px;
    border: 1.5px solid var(--hz-green);
    pointer-events: none;
  }
  .primary-nav a[aria-current="page"]::before {
    left: 4px; border-right: 0;
  }
  .primary-nav a[aria-current="page"]::after {
    right: 4px; border-left: 0;
  }
}
.header-cta { display: inline-flex; align-items: center; gap: 8px; justify-self: end; grid-column: 3; }
.header-cta .header-btn { padding: 10px 16px; font-size: 14px; min-height: 40px; }
/* Auf Mobil bleibt der Header-CTA sichtbar. Pfeil-Icon ausblenden, Text knapp halten,
   damit das Hamburger-Icon nicht vom Rand gedrueckt wird. */
@media (max-width: 1179px) {
  .header-cta .header-btn { padding: 10px 14px; font-size: 13px; min-height: 44px; }
  .header-cta .header-btn svg { display: none; }
}
@media (max-width: 380px) {
  .header-cta .header-btn { padding: 10px 12px; font-size: 12.5px; }
}
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--border-1);
  border-radius: var(--r-sm); color: var(--hz-navy); cursor: pointer;
}
.menu-toggle svg { width: 20px; height: 20px; }
@media (min-width: 1180px) { .menu-toggle { display: none; } }

/* Mobile-Drawer rechts orientiert: schmales Panel statt Vollbreite,
   anchored am rechten Rand unter dem Hamburger. */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: var(--page-pad);
  width: min(280px, calc(100vw - 2 * var(--page-pad)));
  margin-top: 8px;
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-md);
  box-shadow: 0 16px 32px -8px rgba(0, 48, 87, 0.18);
  overflow: hidden;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 18px;
  font-size: 15.5px; font-weight: 500; color: var(--hz-navy);
  text-decoration: none; border-bottom: 1px solid var(--border-1);
  text-align: right;
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav a[aria-current="page"] { color: var(--hz-green); }
.mobile-nav .btn {
  margin: 12px 14px 14px; display: inline-flex;
  width: calc(100% - 28px); justify-content: center;
}
.mobile-nav .btn-primary { color: var(--hz-white); }
.mobile-nav .btn-primary:hover { color: var(--hz-white); }

/* Sub-bar: anchor navigation for in-page sections. */
.sub-bar {
  display: none;
  border-top: 1px solid var(--border-1);
  background: var(--bg-1);
}
@media (min-width: 1024px) {
  .sub-bar { display: block; }
}
.sub-bar-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex; align-items: center; gap: 24px;
  min-height: 44px;
  overflow: hidden;
}
.sub-bar-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
  flex: none;
}
.sub-bar-nav {
  display: flex; gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-bar-nav::-webkit-scrollbar { display: none; }
.sub-bar-nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-2);
  text-decoration: none;
  padding: 14px 14px;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-standard);
}
.sub-bar-nav a:first-child { padding-left: 0; }
.sub-bar-nav a:hover { color: var(--hz-navy); }
.sub-bar-nav a[data-active] { color: var(--hz-green); }
.sub-bar-nav a[data-active]::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--hz-green);
}
.sub-bar-nav a:first-child[data-active]::after { left: 0; }

/* ======================================================
 * Hero
 * ====================================================== */
.hero {
  background: var(--hz-navy); color: var(--hz-white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 88% 8%, rgba(164,202,98,0.10), transparent 55%),
    radial-gradient(ellipse at 6% 95%, rgba(145,193,233,0.08), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--page-max); margin: 0 auto;
  padding: 56px var(--page-pad) 64px;
  display: grid; gap: 48px;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: end;
    padding: 96px var(--page-pad) 96px;
    gap: 64px;
  }
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--hz-green-light);
  margin-bottom: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px;
  max-width: 100%;
}
/* Leading-Dot ausgeblendet: optisch inkonsistent mit den typografischen Mittelpunkten,
   die als Separator zwischen den Items dienen. */
.hero-eyebrow .dot { display: none; }
.hero-eyebrow > span:last-child {
  /* Schmal-Display: darf umbrechen, aber nie an einer Stelle, an der ' · ' den Zeilenanfang bildet.
     HTML setzt &nbsp; vor das · (siehe HTML-Quellen), Trennung also nur nach dem · . */
  white-space: normal;
  overflow-wrap: break-word;
}
@media (max-width: 480px) {
  .hero-eyebrow { font-size: 11.5px; gap: 4px 10px; }
}
.hero h1 {
  margin: 0;
  font-size: clamp(30px, 5.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--hz-white);
  text-wrap: balance;
}
.hero h1 .accent { color: var(--hz-green-light); }
.hero h1 .br-mobile { display: none; }
@media (max-width: 720px) {
  .hero h1 .br-desktop { display: none; }
  .hero h1 .br-mobile { display: inline; }
}
.hero-sub {
  margin: 28px 0 0;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .hero-cta-row { flex-direction: column; width: fit-content; }
}
/* ======================================================
 * Hero-Trust: Option 1+4: mono data row + restrained MSP stamp
 * ====================================================== */
.hero-trust {
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
}
@media (min-width: 640px) {
  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 32px;
  }
}
.hero-trust-item { display: grid; gap: 6px; min-width: 0; }
.hero-trust dt {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.hero-trust dd {
  margin: 0;
  font-size: 13.5px; line-height: 1.4;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
}
.hero-aside {
  align-self: end;
  justify-self: start;
}
@media (min-width: 1024px) {
  .hero-aside { justify-self: end; }
}
.hero-stamp {
  display: inline-grid; gap: 12px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}
.hero-stamp-label {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-stamp img {
  max-height: 80px; width: auto;
  opacity: 0.92;
}

/* ======================================================
 * Outcome strip
 * ====================================================== */
.outcome {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-1);
}
.outcome-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: 48px var(--page-pad);
  display: grid; gap: 32px;
}
@media (min-width: 720px) {
  .outcome-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 56px var(--page-pad); }
}
.outcome-item {
  padding: 0;
  border-top: 2px solid var(--hz-navy);
  padding-top: 20px;
}
.outcome-num {
  font-size: clamp(44px, 4.6vw, 64px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1;
  color: var(--hz-navy);
}
.outcome-label {
  margin: 12px 0 0;
  font-size: 15px; line-height: 1.45;
  color: var(--fg-2);
}
.outcome-source {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
}
.outcome-source a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--border-2);
  text-underline-offset: 3px;
}
.outcome-source a:hover { color: var(--hz-navy); }

/* ======================================================
 * Section primitives
 * ====================================================== */
.section {
  padding: 72px 0;
}
@media (min-width: 720px) { .section { padding: 96px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--hz-navy); color: var(--hz-white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark h2, .section-dark h3 { color: var(--hz-white); }

.section-head {
  display: grid; gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .section-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 64px; align-items: end;
    margin-bottom: 64px;
  }
}
.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--hz-navy);
  text-wrap: balance;
}
.section-dark .section-head h2 { color: var(--hz-white); }
.section-head .section-intro {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 520px;
  text-wrap: pretty;
}
.section-dark .section-head .section-intro { color: rgba(255,255,255,0.72); }

/* ======================================================
 * Pain → Lösung
 * ====================================================== */
.pain-list {
  display: grid; gap: 16px;
  margin: 0; padding: 0; list-style: none;
}
@media (min-width: 720px) {
  .pain-list { gap: 20px; }
}
.pain-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 720px) {
  .pain-item {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }
}
.pain-side {
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.pain-side .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}
.pain-before { background: var(--hz-grey-50); }
.pain-before .label { color: var(--hz-grey-700); }
.pain-before .text { color: var(--fg-2); font-size: 16px; line-height: 1.5; }
.pain-after { background: var(--hz-white); }
.pain-after .label { color: var(--hz-green); }
.pain-after .text { color: var(--hz-navy); font-size: 16px; line-height: 1.5; font-weight: 500; }
.pain-arrow {
  display: none;
  align-items: center; justify-content: center;
  width: 56px;
  background: var(--hz-grey-50);
  border-left: 1px solid var(--border-1);
  border-right: 1px solid var(--border-1);
  color: var(--hz-green);
}
@media (min-width: 720px) {
  .pain-arrow { display: flex; }
}
.pain-arrow svg { width: 20px; height: 20px; }
@media (max-width: 719px) {
  .pain-before { border-bottom: 1px solid var(--border-1); }
}

/* ======================================================
 * Leistungsbausteine (5 Säulen)
 * Desktop: 2x3 Grid, Säule 5 spannt 2 Spalten und ist hervorgehoben.
 * Mobile: 1 Spalte, vertikal stapeln.
 * ====================================================== */
.pillar-grid {
  display: grid; gap: 16px;
}
@media (min-width: 720px) and (max-width: 1099px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pillar-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .pillar:nth-child(1) { grid-column: span 2; }
  .pillar:nth-child(2) { grid-column: span 2; }
  .pillar:nth-child(3) { grid-column: span 2; }
  .pillar:nth-child(4) { grid-column: span 3; }
  .pillar:nth-child(5) { grid-column: span 3; }
}
.pillar {
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.pillar:hover { border-color: var(--hz-navy); }
.pillar-head { display: flex; align-items: flex-start; gap: 16px; }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.08em;
  color: var(--hz-green); font-weight: 500;
  flex: none;
}
.pillar-name {
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--hz-navy);
  line-height: 1.25;
}
.pillar-kind {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 4px;
}
.pillar p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
}
.pillar-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.02em;
  color: var(--hz-navy);
  background: var(--bg-3);
  padding: 4px 10px; border-radius: var(--r-sm);
}
/* Säule 5: hervorgehoben als User-Outcome-Block */
.pillar.is-feature {
  background: var(--hz-navy);
  color: var(--hz-white);
  border-color: var(--hz-navy);
}
.pillar.is-feature .pillar-name { color: var(--hz-white); }
.pillar.is-feature .pillar-kind { color: var(--hz-green-light); }
.pillar.is-feature .pillar-num { color: var(--hz-green-light); }
.pillar.is-feature p { color: rgba(255,255,255,0.78); }
.pillar.is-feature .pillar-tag {
  color: var(--hz-white);
  background: rgba(255,255,255,0.10);
}
/* Vorher: zusaetzliches "User-Outcome"-Badge oben rechts via ::after.
   Lief auf schmalen Karten in die Headline rein und war redundant zum
   .pillar-kind-Label, das den gleichen Text bereits direkt unter dem
   Pillar-Namen zeigt. Entfernt. */

/* ======================================================
 * Highlights: alternating layout
 * ====================================================== */
.highlight {
  display: grid; gap: 32px; align-items: center;
}
@media (min-width: 1024px) {
  .highlight { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.highlight h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--hz-navy);
  text-wrap: balance;
}
.highlight .lede {
  margin: 24px 0 0;
  font-size: 17px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 480px;
}
.highlight-bullets {
  margin: 32px 0 0;
  padding: 0; list-style: none;
  display: grid; gap: 0;
}
.highlight-bullets li {
  position: relative;
  padding: 16px 0 16px 32px;
  border-top: 1px solid var(--border-1);
  font-size: 15.5px; line-height: 1.55;
  color: var(--hz-navy);
}
.highlight-bullets li:last-child { border-bottom: 1px solid var(--border-1); }
.highlight-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 22px;
  width: 14px; height: 14px;
  border: 2px solid var(--hz-green);
  border-right: 0; border-bottom: 0;
  transform: rotate(45deg);
}
.highlight-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500;
  color: var(--hz-navy);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--hz-navy);
}
.highlight-cta:hover { color: var(--hz-green); border-color: var(--hz-green); }
.highlight-cta svg { width: 14px; height: 14px; transition: transform var(--dur-fast); }
.highlight-cta:hover svg { transform: translateX(3px); }

.highlight-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: transparent;
}
.highlight-visual img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
}
.highlight-visual .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: var(--hz-navy-50);
  color: var(--hz-navy);
  text-align: center; padding: 32px;
}
.highlight-visual .placeholder-light {
  background: var(--bg-2);
}
.highlight-visual .placeholder .marks {
  display: flex; gap: 10px;
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 500;
  color: var(--hz-green);
}
.highlight-visual .placeholder .caption {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hz-grey-700);
  max-width: 280px;
}
@media (min-width: 1024px) {
  .highlight-2 { direction: rtl; }
  .highlight-2 > * { direction: ltr; }
}

.section-dark .highlight h2 { color: var(--hz-white); }
.section-dark .highlight .lede { color: rgba(255,255,255,0.78); }
.section-dark .highlight-bullets li {
  color: var(--hz-white);
  border-top-color: rgba(255,255,255,0.16);
}
.section-dark .highlight-bullets li:last-child { border-bottom-color: rgba(255,255,255,0.16); }
.section-dark .highlight-bullets li::before { border-color: var(--hz-green-light); }
.section-dark .highlight-cta {
  color: var(--hz-white);
  border-color: rgba(255,255,255,0.45);
}
.section-dark .highlight-cta:hover { color: var(--hz-green-light); border-color: var(--hz-green-light); }

/* ======================================================
 * Tech-Tiefe-Strip
 * ====================================================== */
.tech-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.tech-strip-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: 40px var(--page-pad);
  display: grid; gap: 24px;
}
@media (min-width: 1024px) {
  .tech-strip-inner {
    grid-template-columns: auto 1fr; gap: 48px;
    align-items: center;
  }
}
.tech-strip-label {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hz-navy);
  white-space: nowrap;
}
.tech-strip-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0; padding: 0; list-style: none;
}
.tech-pill {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  color: var(--hz-navy);
  letter-spacing: -0.005em;
}

/* ======================================================
 * Vorgehensmodell (4 Phasen)
 * ====================================================== */
.process {
  display: grid; gap: 16px;
  counter-reset: phase;
  margin: 0; padding: 0; list-style: none;
}
@media (min-width: 720px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1100px) {
  .process { grid-template-columns: repeat(4, 1fr); }
}
.phase {
  position: relative;
  padding: 28px;
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  counter-increment: phase;
  display: flex; flex-direction: column; gap: 12px;
}
.phase::before {
  content: '[' counter(phase, decimal-leading-zero) ']';
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--hz-green);
  margin-bottom: 8px;
}
.phase h3 {
  margin: 0;
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--hz-navy);
}
.phase .duration {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3);
}
.phase p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
}

/* ======================================================
 * Mini-Case
 * ====================================================== */
.case {
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid; gap: 0;
}
@media (min-width: 1024px) {
  .case { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
}
.case-visual {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .case-visual { aspect-ratio: auto; min-height: 100%; }
}
.case-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.case-visual:not(.case-visual-placeholder):not(.is-diagram)::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,48,87,0.0) 50%, rgba(0,48,87,0.55) 100%);
}
/* Diagram-style case visuals (illustrations with edge content): keep
   the full composition visible instead of cropping. */
.case-visual.is-diagram {
  background: transparent;
}
.case-visual.is-diagram img {
  object-fit: contain;
}
.case-visual-placeholder {
  background: var(--hz-navy-50);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 32px;
}
.case-visual-marks {
  font-family: var(--font-mono);
  font-size: 24px; font-weight: 500;
  color: var(--hz-green);
}
.case-visual-caption {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hz-grey-700);
  max-width: 280px;
}
.case-tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hz-white);
  background: rgba(0,48,87,0.85);
  padding: 6px 12px; border-radius: var(--r-sm);
}
.case-body {
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 720px) {
  .case-body { padding: 40px; gap: 24px; }
}
.case-h {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--hz-navy);
}
.case-sub {
  margin: 0;
  font-size: 16px; line-height: 1.55;
  color: var(--fg-2);
}
.case-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 20px 0;
}
.case-metric .n {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--hz-navy);
  line-height: 1;
}
.case-metric .l {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.4;
}
.case .btn { align-self: flex-start; }

/* ======================================================
 * Managed Service
 * ====================================================== */
.managed-block {
  display: grid; gap: 32px;
}
@media (min-width: 1024px) {
  .managed-block {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: stretch;
  }
  /* Linke Textspalte stretcht auf Höhe des Value-Grids,
     CTA wandert dadurch ans untere Ende. */
  .managed-copy {
    display: flex;
    flex-direction: column;
  }
  .managed-cta {
    margin-top: auto;
    align-self: flex-start; /* sonst stretcht der CTA über die volle Spaltenbreite */
  }
}
.managed-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.1; color: var(--hz-white);
  text-wrap: balance;
}
.managed-copy .lede {
  margin: 24px 0 0;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}
.managed-list {
  margin: 32px 0 0; padding: 0; list-style: none;
}
.managed-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 15.5px; line-height: 1.55;
  color: rgba(255,255,255,0.88);
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
}
.managed-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
.managed-list li svg {
  width: 20px; height: 20px; margin-top: 2px;
  color: var(--hz-green-light);
}
.managed-cta { margin-top: 32px; display: inline-flex; }

.value-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (min-width: 720px) and (max-width: 1023px) {
  .value-grid { grid-template-columns: repeat(4, 1fr); }
}
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 160px;
}
.value-card .v-num {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--hz-white);
  display: flex; align-items: baseline; gap: 6px;
}
.value-card .v-unit {
  font-size: 16px;
  color: var(--hz-green-light);
  font-weight: 500;
  letter-spacing: 0;
}
.value-card .v-desc {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin-top: auto;
}
.value-card .v-tag {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hz-green-light);
}

/* ======================================================
 * Managed-Service-Cards: einzeln buchbare Services mit Preis.
 * Geteiltes Modul (Security, Modern Workplace). Liegt auf
 * section-dark, daher helle Schrift auf dunklem Grund.
 * ====================================================== */
.ms-head {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .ms-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 64px;
    align-items: end;
  }
}
.ms-head h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--hz-white);
  text-wrap: balance;
}
.ms-head-lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.ms-baseline {
  list-style: none;
  margin: 0 0 40px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 16px 32px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 720px) {
  .ms-baseline { grid-template-columns: repeat(4, 1fr); }
}
.ms-baseline li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.ms-baseline-key {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hz-green-light);
}

.ms-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .ms-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .ms-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.ms-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.ms-card-tag {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hz-green-light);
}
.ms-card-h {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--hz-white);
  text-wrap: balance;
}
.ms-card-scope {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}
.ms-card-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.ms-card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.ms-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--hz-green-light);
  border-radius: 2px;
}
.ms-card-price {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--hz-white);
}
.ms-card-price--ask {
  font-size: 16px;
  letter-spacing: -0.005em;
}
.ms-card-terms {
  margin: 8px 0 0;
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}
.ms-price-pre {
  margin-right: 5px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.ms-price-unit {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.ms-cta {
  margin-top: 40px;
}

/* ======================================================
 * FAQ
 * ====================================================== */
.faq-list {
  display: grid; gap: 0;
  border-top: 1px solid var(--border-1);
}
.faq-item {
  border-bottom: 1px solid var(--border-1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: grid; grid-template-columns: 1fr 24px; gap: 16px;
  align-items: start;
  font-size: 17px; font-weight: 500;
  color: var(--hz-navy);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icn {
  width: 24px; height: 24px;
  position: relative;
  margin-top: 4px;
}
.faq-item .icn::before,
.faq-item .icn::after {
  content: ''; position: absolute;
  background: var(--hz-navy);
  transition: transform var(--dur-base) var(--ease-standard);
}
.faq-item .icn::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-item .icn::after { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.faq-item[open] .icn::after { transform: rotate(90deg); }
.faq-item p {
  margin: 0 0 24px;
  padding-right: 40px;
  font-size: 15.5px; line-height: 1.6;
  color: var(--fg-2);
  max-width: 760px;
}

/* ======================================================
 * Cross-Links
 * ====================================================== */
.cross-grid {
  display: grid; gap: 16px;
}
@media (min-width: 720px) {
  .cross-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.cross-card {
  background: var(--hz-white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none;
  color: var(--hz-navy);
  transition: border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.cross-card:hover {
  border-color: var(--hz-navy);
  transform: translateY(-2px);
}
.cross-card .cross-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hz-green-900); /* AA-Kontrast auf bg-2 */
}
.cross-card h3 {
  margin: 0;
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.cross-card p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
}
.cross-card .cross-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--hz-navy);
}
.cross-card .cross-link svg { width: 14px; height: 14px; transition: transform var(--dur-fast); }
.cross-card:hover .cross-link { color: var(--hz-green); }
.cross-card:hover .cross-link svg { transform: translateX(3px); }

/* ======================================================
 * CTA-Block
 * ====================================================== */
.cta-block {
  background: var(--hz-navy);
  color: var(--hz-white);
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 95% 5%, rgba(0,132,61,0.18), transparent 50%),
    radial-gradient(ellipse at 5% 95%, rgba(145,193,233,0.06), transparent 55%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: var(--page-max); margin: 0 auto;
  padding: 72px var(--page-pad);
  display: grid; gap: 32px;
}
@media (min-width: 720px) { .cta-inner { padding: 96px var(--page-pad); } }
@media (min-width: 1024px) {
  .cta-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 64px; align-items: end;
  }
}
.cta-block h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--hz-white);
  text-wrap: balance;
}
.cta-block .eyebrow {
  color: var(--hz-green-light);
  font-size: var(--fs-micro);
  line-height: 1.5;
  letter-spacing: var(--tracking-caps);
}
.cta-block p {
  margin: 24px 0 0;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}
.cta-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-self: end;
  width: fit-content;
}

/* ======================================================
 * Footer
 * ====================================================== */
.site-footer {
  background: var(--hz-navy-900);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 1.1fr 2fr; gap: 64px; }
}
.footer-brand img { height: 22px; margin-bottom: 16px; }
.footer-brand p {
  margin: 0;
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.62);
  max-width: 320px;
}
.footer-brand p + p { margin-top: 12px; }
.footer-brand .footer-tagline {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  max-width: 360px;
}
.footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (min-width: 720px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
.footer-h {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hz-green-light);
  margin: 0 0 16px;
}
.footer-cols a {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--dur-fast);
}
.footer-cols a:hover { color: var(--hz-white); }
.footer-base {
  max-width: var(--page-max); margin: 0 auto;
  padding: 24px var(--page-pad) 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-social:hover,
.footer-social:focus-visible { color: var(--hz-white); }
.footer-social svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* ======================================================
 * Skip link + a11y
 * ====================================================== */
.skip-link {
  position: absolute; left: 8px; top: -40px;
  background: var(--hz-navy); color: var(--hz-white);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14px;
  z-index: 100;
}
.skip-link:focus { top: 8px; }
