/* ═══════════════════════════════════════════════════════════════════════════
   bwiiw GmbH – Website Design System
   Formen- & Farbsprache abgeleitet von Leitwerk
   Primär: #0D1F3C (Marineblau) · Akzent: weiß / off-white
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('../fonts/fonts.css');

:root {
  /* ── Marineblau-Skala ─────────────────────────────────── */
  --navy:          #0D1F3C;   /* Primär */
  --navy-900:      #081428;   /* tiefer */
  --navy-800:      #0D1F3C;
  --navy-700:      #142b52;
  --navy-600:      #1E3A6E;   /* accent-mid */
  --navy-500:      #2c4d86;
  --navy-tint:     #EEF2F9;   /* accent-light */
  --navy-tint-2:   #F4F7FB;

  /* ── Reminiszenz: frühere Highlightfarbe (sehr sparsam) ── */
  --accent-orange: #FE4500;

  /* ── Neutral ──────────────────────────────────────────── */
  --bg:            #F9F9FA;
  --bg-subtle:     #F2F2F5;
  --surface:       #FFFFFF;
  --border:        #E4E4E7;
  --border-light:  #EEEEF1;
  --text:          #18181B;
  --text-muted:    #5b6473;
  --text-light:    #9AA0AC;

  /* ── auf dunklem Grund ────────────────────────────────── */
  --on-navy:       rgba(255,255,255,0.92);
  --on-navy-muted: rgba(255,255,255,0.62);
  --on-navy-faint: rgba(255,255,255,0.40);
  --on-navy-line:  rgba(255,255,255,0.12);
  --on-navy-card:  rgba(255,255,255,0.045);

  /* ── Form ─────────────────────────────────────────────── */
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     16px;
  --radius-xl:     22px;
  --shadow-sm:     0 1px 2px rgba(13,31,60,.05);
  --shadow:        0 2px 10px rgba(13,31,60,.06);
  --shadow-md:     0 8px 30px rgba(13,31,60,.09);
  --shadow-lg:     0 20px 60px rgba(13,31,60,.14);

  --maxw:          1180px;
  --nav-h:         84px;
  --ease:          cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.022em; color: var(--navy); font-weight: 700;
  overflow-wrap: break-word; hyphens: auto; }
p { color: var(--text-muted); }

::selection { background: var(--accent-orange); color: #fff; }

/* ── Layout-Helfer ─────────────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--tint { background: var(--navy-tint-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--navy-600); border-radius: 2px; }
.section--navy .eyebrow { color: rgba(255,255,255,0.7); }
.section--navy .eyebrow::before { background: rgba(255,255,255,0.5); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 18px 0 16px; }
.section-head p { font-size: 17.5px; line-height: 1.65; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1;
  padding: 14px 24px; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.22); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy-tint); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  background: rgba(13,31,60,0.86);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--on-navy-line);
  transition: background .3s var(--ease);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 28px;
  display: flex; align-items: center; gap: 28px; }
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__brand img { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav__link {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--on-navy-muted);
  padding: 9px 14px; border-radius: var(--radius-sm); transition: color .2s, background .2s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: #fff; border-radius: 2px; opacity: .85;
}
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 42px; height: 42px; border: none; background: transparent;
  cursor: pointer; margin-left: auto; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.nav__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s; margin: 0 auto; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--navy); color: var(--on-navy); overflow: hidden;
  padding: calc(var(--nav-h) + 96px) 0 110px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow { position: absolute; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,77,134,0.55) 0%, rgba(13,31,60,0) 70%);
  top: -240px; right: -160px; }
.hero__glow2 { position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,110,0.5) 0%, rgba(13,31,60,0) 70%);
  bottom: -260px; left: -120px; }
.hero__grid { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(var(--on-navy-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--on-navy-line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 70% 10%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 80% at 70% 10%, #000 0%, transparent 75%); }
.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 { color: #fff; font-size: clamp(36px, 5.6vw, 64px); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.05; margin: 24px 0 0; hyphens: manual; overflow-wrap: normal; }
.hero h1 .accent { color: #fff; position: relative; }
.hero h1 .accent::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 12px;
  background: var(--accent-orange); border-radius: 5px 7px 6px 8px; z-index: -1; opacity: .92;
  transform: rotate(-1.8deg); transform-origin: left center; }
.hero h1 .accent--orange::after { background: var(--accent-orange); opacity: .92; }
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .accent::after { transform: scaleX(0) rotate(-1.8deg); animation: underline-draw .85s var(--ease) .35s forwards; }
}
@keyframes underline-draw { to { transform: scaleX(1) rotate(-1.8deg); } }
.hero__lead { font-size: clamp(17px, 2vw, 21px); color: var(--on-navy-muted); line-height: 1.6;
  max-width: 660px; margin: 26px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 56px;
  padding-top: 34px; border-top: 1px solid var(--on-navy-line); }
.hero__meta-item { }
.hero__meta-num { font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.hero__meta-lbl { font-size: 13.5px; color: var(--on-navy-muted); margin-top: 4px; }

/* ── Pillar-Split (Consulting / Produkte) ──────────────────────────────────── */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pillar {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.pillar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent-orange); border-radius: 4px 0 0 4px; transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar:hover::before { transform: scaleY(1); }
.pillar__icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.pillar__icon svg { width: 26px; height: 26px; stroke: #fff; }
.pillar__tag { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-orange); }
.pillar h3 { font-size: 25px; margin: 8px 0 12px; }
.pillar p { font-size: 16px; line-height: 1.65; }
.pillar__list { list-style: none; margin: 20px 0 26px; display: grid; gap: 10px; }
.pillar__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); }
.pillar__list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; stroke: var(--navy-600); }
.pillar__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px;
  color: var(--navy); }
.pillar__link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.pillar:hover .pillar__link svg { transform: translateX(4px); }

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

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-tint); }
.card__icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card__icon svg { width: 23px; height: 23px; stroke: var(--navy-600); }
.card h3 { font-size: 18.5px; margin-bottom: 9px; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; line-height: 1.62; }

/* numbered list cards */
.card--num .card__num { font-size: 14px; font-weight: 700; color: var(--navy-600);
  font-variant-numeric: tabular-nums; margin-bottom: 14px; display: block; }

/* ── Branchen-Chips ───────────────────────────────────────────────────────── */
.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.industry {
  display: flex; align-items: center; gap: 11px; padding: 14px 20px 14px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 100px;
  font-size: 15px; font-weight: 500; color: var(--text); transition: all .25s var(--ease);
}
.industry:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.industry svg { width: 19px; height: 19px; stroke: var(--navy-600); flex-shrink: 0; }
.section--navy .industry { background: var(--on-navy-card); border-color: var(--on-navy-line); color: #fff; }
.section--navy .industry:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.section--navy .industry svg { stroke: rgba(255,255,255,.85); }

/* ── Produkt-Showcase ─────────────────────────────────────────────────────── */
.product {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 30px;
}
.product { align-items: center; }
.product:nth-child(even) .product__media { order: 2; }
.product__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.product__badge { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 13px; border-radius: 100px; background: var(--navy-tint); color: var(--navy-600);
  font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.product__body h3 { font-size: 28px; margin-bottom: 14px; }
.product__body > p { font-size: 16px; line-height: 1.66; margin-bottom: 22px; }
.product__feats { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.product__feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text); }
.product__feats svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; stroke: var(--navy-600); }
.product__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.product__media { position: relative; background: var(--navy); overflow: hidden;
  aspect-ratio: 16 / 9; min-height: 0; align-self: center; padding: 0; }
.product__media > img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.product__media .grid-deco { position: absolute; inset: 0; opacity: .4;
  background-image: linear-gradient(var(--on-navy-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--on-navy-line) 1px, transparent 1px);
  background-size: 40px 40px; }
.product__media-inner { position: relative; z-index: 1; text-align: center; }
.product__media-logo { font-size: 34px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.product__media-sub { color: var(--on-navy-muted); font-size: 15px; margin-top: 8px; max-width: 280px; }
.product__suite { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.product__suite span { padding: 7px 14px; border-radius: 100px; background: var(--on-navy-card);
  border: 1px solid var(--on-navy-line); color: #fff; font-size: 13px; font-weight: 500; }

/* ── Approach / Steps ─────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step::before { counter-increment: step; content: "0" counter(step);
  font-size: 15px; font-weight: 700; color: var(--navy-600); font-variant-numeric: tabular-nums; }
.step::after { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--border); }
.step h4 { font-size: 18px; margin: 14px 0 8px; }
.step p { font-size: 14.5px; line-height: 1.6; }
.section--navy .step::before { color: rgba(255,255,255,.85); }
.section--navy .step::after { background: var(--on-navy-line); }
.section--navy .step p { color: var(--on-navy-muted); }

/* ── CTA-Band ─────────────────────────────────────────────────────────────── */
.cta-band { position: relative; background: var(--navy); border-radius: var(--radius-xl); overflow: hidden;
  padding: 64px 56px; text-align: center; }
.cta-band__deco { position: absolute; inset: 0; opacity: .6;
  background-image: linear-gradient(var(--on-navy-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--on-navy-line) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000, transparent 70%); }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 14px; }
.cta-band p { color: var(--on-navy-muted); font-size: 18px; max-width: 560px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Kontakt ──────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { display: flex; flex-direction: column; gap: 12px; padding: 30px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all .25s var(--ease); }
.contact-card:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card__icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--navy);
  display: flex; align-items: center; justify-content: center; }
.contact-card__icon svg { width: 22px; height: 22px; stroke: #fff; }
.contact-card .lbl { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.contact-card .val { font-size: 17px; font-weight: 600; color: var(--navy); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { background: var(--navy-900); color: var(--on-navy-muted); padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid var(--on-navy-line); }
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; color: var(--on-navy-muted); max-width: 360px; line-height: 1.65; }
.footer__brand .claim { color: var(--on-navy-faint); font-size: 13px; margin-top: 14px; font-style: italic; }
.footer__col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; font-size: 14.5px; color: var(--on-navy-muted); padding: 5px 0;
  transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding-top: 26px; font-size: 13.5px; color: var(--on-navy-faint); }
.footer__bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom-links a:hover { color: #fff; }

/* ── Legal / Text-Seiten ──────────────────────────────────────────────────── */
.legal { padding: calc(var(--nav-h) + 64px) 0 100px; background: var(--bg); }
.legal__inner { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 10px; }
.legal__sub { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; }
.legal h2 { font-size: 21px; margin: 44px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--navy-tint); }
.legal h3 { font-size: 17px; margin: 26px 0 8px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.8; color: var(--text); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--navy-600); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal__box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; margin: 0 0 22px; line-height: 1.9; }
.legal__box p { margin: 0; }
.legal__toc { background: var(--navy-tint-2); border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 40px; }
.legal__toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--navy-600); margin-bottom: 12px; }
.legal__toc ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; margin: 0; }
.legal__toc li { margin: 0; }
.legal__toc a { font-size: 14.5px; }

/* ── Cookie-Banner ────────────────────────────────────────────────────────── */
.cookie {
  position: fixed; z-index: 2000; left: 22px; right: 22px; bottom: 22px; max-width: 560px;
  background: var(--navy); color: var(--on-navy); border: 1px solid var(--on-navy-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 24px 26px;
  transform: translateY(140%); opacity: 0; transition: transform .5s var(--ease), opacity .4s;
}
.cookie.is-visible { transform: translateY(0); opacity: 1; }
.cookie h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.cookie p { font-size: 13.5px; line-height: 1.6; color: var(--on-navy-muted); margin-bottom: 18px; }
.cookie p a { color: #fff; text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__actions .btn { padding: 11px 20px; font-size: 14px; }

/* ── Reveal-Animation ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}



/* ── Startseite: Karo-Grid rechts dezent intensiver ─────── */
.hero--home .hero__grid { opacity: .75;
  -webkit-mask-image: linear-gradient(90deg, transparent 32%, rgba(0,0,0,.5) 60%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 32%, rgba(0,0,0,.5) 60%, #000 100%); }

/* ── Hero mit Portrait (Startseite) ───────────────────────── */
  right: max(0px, calc((100% - var(--maxw)) / 2)); z-index: 1; pointer-events: none; user-select: none; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .product { grid-template-columns: 1fr; }
  .product:nth-child(even) .product__media { order: 0; }
  .product__media { min-height: 240px; }
}
@media (max-width: 1024px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--navy); padding: 18px 22px 28px; gap: 4px; margin: 0;
    border-bottom: 1px solid var(--on-navy-line); box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .3s var(--ease);
  }
  .nav.is-open .nav__links { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 14px; font-size: 16px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: rgba(255,255,255,0.08); }
  .nav.is-open .nav__mobile-cta { display: flex !important; margin-top: 10px; }
}
@media (max-width: 760px) {
  :root { --nav-h: 76px; }
  .nav__brand img { height: 44px; }
  .section { padding: 68px 0; }
  .pillars, .grid-2, .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .product__body { padding: 34px 28px; }
  .cta-band { padding: 48px 26px; }
  .legal__toc ul { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__meta { gap: 22px 30px; }
  .container { padding: 0 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-band__actions .btn, .product__actions .btn { width: 100%; }
}
