html { overflow-x: hidden; }
/* ══════════════════════════════════════════════════════
   ICSL – SHARED STYLES
   Verwendet von: icsl_comsec.html, icsl_consulting.html
   Farben via CSS-Variablen (je Brand in comsec.css / consulting.css)
══════════════════════════════════════════════════════ */

/* ── LOCAL FONTS (DSGVO-konform, kein Google CDN) ── */
@font-face { font-family:'Inter'; font-style:normal; font-weight:300; font-display:swap;
  src: url('../fonts/inter-300.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap;
  src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap;
  src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap;
  src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap;
  src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap;
  src: url('../fonts/inter-800.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap;
  src: url('../fonts/inter-900.woff2') format('woff2'); }

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* META BAR */
.meta-bar {
  height: var(--meta-h);
  background: var(--meta-bg, #090909);  /* Fallback = COMSEC-Schwarz (nicht Blau), verhindert blauen Meta-Bar-Flash beim Marken-Switch */
  border-bottom: 1px solid var(--meta-border, rgba(255,255,255,.08));
  font-size: 12px;
  color: var(--meta-text, rgba(255,255,255,.55));
  position: relative;
  z-index: 200;
}
.meta-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  gap: 20px;
}
.meta-bar-brand { color: var(--meta-text, rgba(255,255,255,.55)); font-size: 12px; margin-right: auto; letter-spacing: .3px; }
.meta-brand { color: var(--meta-text, rgba(255,255,255,.55)); font-size: 12px; margin-right: auto; letter-spacing: .3px; }
.meta-bar a { color: var(--meta-text, rgba(255,255,255,.55)); transition: color .15s; }
.meta-bar a:hover { color: var(--meta-text-hover, rgba(255,255,255,.9)); }

/* LANGUAGE SELECTOR */
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: none; cursor: pointer;
  font-size: 12px; font-weight: 700;
  color: var(--meta-text, rgba(255,255,255,.7)); user-select: none;
}
.lang-btn .lang-code { font-weight: 700; }
.lang-btn .chevron { font-size: 9px; opacity: .5; margin-left: 1px; transition: transform .2s; }
.lang-selector { position: relative; }
.lang-dropdown {
  display: none; position: absolute;
  top: calc(100% + 6px); right: 0;
  min-width: 160px; z-index: 400; overflow: hidden;
  background: var(--lang-dd-bg, #012d50);
  border: 1px solid var(--lang-dd-border, rgba(255,255,255,.12));
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-selector.open .lang-btn .chevron { transform: rotate(180deg); }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: 13px;
  color: var(--lang-opt-color, rgba(255,255,255,.75)); cursor: pointer;
  transition: background .12s;
}
.lang-option:hover { background: var(--lang-opt-hover, rgba(255,255,255,.08)); }
a.lang-option, a.lang-option:hover { text-decoration: none; }
.lang-option.active { color: var(--lang-opt-active-color, white); font-weight: 600; }
.lang-option .lo-flag { font-size: 16px; }
.lang-option .lo-tag { font-size: 10px; color: var(--lang-opt-tag, rgba(255,255,255,.4)); margin-left: auto; }

/* NAVBAR – SHARED */
.navbar {
  position: sticky; top: 0; z-index: 100;
  overflow: visible;
  background: var(--nav-bg, #111111);  /* Fallback = COMSEC-Dunkel (nicht Blau) */
  border-bottom: 1px solid var(--nav-border, rgba(255,255,255,.08));
  box-shadow: var(--nav-shadow, 0 2px 16px rgba(0,0,0,.25));
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: stretch;
  padding: 0 40px;
  position: relative; /* containing block für content-breite Mega-Menüs */
}
.nav-logo {
  display: flex; align-items: center;
  margin-right: 32px; flex-shrink: 0;
}
.nav-logo-desk { display: flex; align-items: center; text-decoration: none; }
.nav-logo-desk img { height: var(--logo-h, 28px); width: auto; display: block; }
.nav-logo-mob {
  display: none; align-items: center;
  justify-content: space-between; flex: 1; min-width: 0;
}
.nav-mob-brand { display: flex; align-items: center; text-decoration: none; min-width: 0; flex: 1; }
.nav-mob-brand img { height: 26px; width: auto; display: block; max-width: 100%; }
.nav-mob-switchers { display: flex; align-items: center; gap: 6px; flex-shrink: 0; padding-right: 16px; }
.nav-mob-sep { width: 1px; height: 22px; background: var(--nav-sep-color, rgba(255,255,255,.2)); flex-shrink: 0; }
.nav-mob-sw { display: flex; align-items: center; text-decoration: none; }
.nav-mob-sw img { height: 26px; width: auto; display: block; opacity: 0.55; transition: opacity .15s; }
.nav-mob-sw:hover img { opacity: 0.85; }
.nav-divider { width: 1px; background: var(--nav-divider-color, rgba(255,255,255,.1)); margin: 12px 0; flex-shrink: 0; }
.nav-links { display: flex; align-items: stretch; flex: 1; }
/* nav-item static, damit Mega-Menü gegen .nav-inner (content-box) positioniert */
.nav-item { position: static; display: flex; align-items: center; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 0 16px; height: 100%;
  font-size: 14px; font-weight: 600;
  color: var(--nav-link-color, rgba(255,255,255,.75)); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .15s; white-space: nowrap; user-select: none;
}
.nav-link .ch { font-size: 12px; opacity: .7; transition: transform .2s; margin-left: 1px; }
.nav-link:hover, .nav-item.open .nav-link {
  color: var(--nav-link-hover, var(--white));
  border-bottom-color: var(--brand);
}
.nav-item.open .nav-link .ch { transform: rotate(180deg); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: auto; }

/* NAV DROPDOWN */
.nav-dropdown {
  display: none; position: absolute;
  top: calc(100% + 1px); left: 0;
  min-width: 320px; background: white;
  border: 1px solid var(--border, #dde3ea);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
  z-index: 300; overflow: hidden;
}
.nav-item.open .nav-dropdown { display: block; }
.dd-header { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #6b7a8d; padding: 12px 16px 6px; }
.dd-entry { padding: 10px 16px; border-bottom: 1px solid #dde3ea; transition: background .1s; cursor: pointer; }
.dd-entry:last-child { border-bottom: none; }
.dd-entry:hover { background: #f0f4f8; }
.de-name { display: block; font-size: 13px; font-weight: 600; color: #0f1923; }
.de-desc { display: block; font-size: 12px; color: #6b7a8d; margin-top: 2px; }

/* ── ZWEISTUFIGES DROPDOWN (has-sub) ── */
.dd-entry.has-sub { padding: 0; }
.dd-entry.has-sub:hover { background: transparent; }
.dd-entry-row { display: flex; align-items: stretch; }
.de-link { flex: 1; padding: 10px 14px; cursor: pointer; min-width: 0; }
.de-link:hover { background: #f0f4f8; }
.de-link:hover .de-name { color: var(--icsl-dark, #015288); }
.dd-sub-toggle {
  flex-shrink: 0; width: 36px;
  background: none; border: none; border-left: 1px solid #dde3ea;
  color: #9ba8b5; font-size: 11px; cursor: pointer;
  transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.dd-sub-toggle:hover { background: #f0f4f8; color: var(--icsl-dark, #015288); }
.dd-entry.has-sub.open .dd-sub-toggle {
  color: var(--icsl, #00aee6);
  background: #e8f4fb;
  transform: rotate(180deg);
}
/* Sub-Ebene */
.dd-sub { display: none; border-top: 1px solid #dde3ea; background: #f7f9fb; }
.dd-entry.has-sub.open .dd-sub { display: block; }
.dd-sub-item {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px 8px 26px;
  font-size: 12px; font-weight: 500; color: #3d4f60;
  text-decoration: none;
  border-bottom: 1px solid #e8edf2;
  transition: background .1s, color .1s;
}
.dd-sub-item:last-child { border-bottom: none; }
.dd-sub-item::before { content: '›'; color: var(--icsl, #00aee6); font-size: 13px; flex-shrink: 0; }
.dd-sub-item:hover { background: #dff0f9; color: var(--icsl-dark, #015288); }

/* HAMBURGER */
.nav-check { display: none; }
.nav-hamburger {
  display: none; align-items: center; justify-content: center;
  align-self: center; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  margin-left: 4px; flex-shrink: 0; padding: 0;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--hamburger-color, rgba(255,255,255,.85));
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav-check:checked ~ nav .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-check:checked ~ nav .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-check:checked ~ nav .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV PANEL */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 140; cursor: pointer;
}
.nav-check:checked ~ .mob-overlay { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: -320px; bottom: 0;
  width: 300px; background: var(--mob-nav-bg, #012d50);
  z-index: 150; transition: right .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
  padding-top: var(--meta-h, 34px);
}
.nav-check:checked ~ .mobile-nav { right: 0; }
.mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--mob-sep, rgba(255,255,255,.1));
  gap: 10px; min-width: 0;
}
.mob-header > span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mob-close {
  width: 32px; height: 32px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; cursor: pointer;
  font-size: 18px; color: var(--mob-close-color, rgba(255,255,255,.6));
  background: none; border: none;
  transition: background .15s, color .15s;
}
.mob-close:hover { background: var(--mob-close-hover-bg, rgba(255,255,255,.1)); color: var(--mob-close-hover, white); }
.mob-check { display: none; }
.mob-item { border-bottom: 1px solid var(--mob-sep, rgba(255,255,255,.07)); }

/* ── Split row: text-link left, toggle-arrow right (Materna-Stil) ── */
.mob-link-row {
  display: flex; align-items: stretch;
}
.mob-link-text {
  flex: 1; padding: 14px 12px 14px 20px;
  font-size: 15px; font-weight: 600;
  color: var(--mob-link-color, rgba(255,255,255,.8));
  text-decoration: none; display: flex; align-items: center;
}
.mob-link-text:hover { color: var(--mob-link-hover, white); }
.mob-acc-tog {
  display: flex; align-items: center; justify-content: center;
  width: 52px; flex-shrink: 0;
  border-left: 1px solid var(--mob-sep, rgba(255,255,255,.07));
  cursor: pointer; color: rgba(255,255,255,.45);
  transition: color .15s, background .15s;
}
.mob-acc-tog:hover { color: white; background: rgba(255,255,255,.05); }
.mob-acc-tog .ch { font-size: 13px; transition: transform .2s; }
.mob-check:checked ~ .mob-link-row .mob-acc-tog .ch { transform: rotate(180deg); }
.mob-check:checked ~ .mob-link-row .mob-acc-tog { color: var(--brand, #00aee6); }

/* ── Solo link (kein Untermenü) ── */
.mob-link-solo {
  display: flex; align-items: center;
  padding: 14px 20px; font-size: 15px; font-weight: 600;
  color: var(--mob-link-color, rgba(255,255,255,.8)); text-decoration: none;
}
.mob-link-solo:hover { color: var(--mob-link-hover, white); }

.mob-sub {
  display: none; flex-direction: column;
  background: var(--mob-sub-bg, rgba(0,0,0,.15)); padding: 6px 0;
}
.mob-check:checked ~ .mob-sub { display: flex; }
.mob-sub a {
  padding: 10px 28px; font-size: 14px;
  color: var(--mob-sub-link, rgba(255,255,255,.65));
}
.mob-sub a:hover { color: var(--mob-sub-link-hover, white); }
.mob-btns { padding: 20px; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* SWITCH BUTTON (Desktop → andere Brand) */
.btn-switch {
  display: flex; align-items: center;
  padding: 6px 10px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent; cursor: pointer;
  transition: all .2s; text-decoration: none;
}
/* Brand-Switcher: SVG-Logo + Pfeil */
.btn-switch { gap: 6px; }
.bsw-arrow {
  font-size: 11px; color: rgba(255,255,255,.5);
  line-height: 1; flex-shrink: 0;
  transition: color .2s;
}
.btn-switch:hover .bsw-arrow { color: rgba(255,255,255,.9); }
.btn-switch:hover .logo-mask  { background-color: rgba(255,255,255,.9) !important; }

.nav-mob-sw { gap: 4px; }
.nav-mob-sw:hover .logo-mask  { background-color: rgba(255,255,255,.9) !important; }
.nav-mob-sw:hover .bsw-arrow  { color: rgba(255,255,255,.9); }

/* CSS-Maske: Farbe der SVG-Logos per CSS steuern */
.logo-mask {
  display: block;
  background-color: rgba(255,255,255,.55);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color .2s;
}

/* BRIEFING BUTTON */
.btn-briefing {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background .15s, transform .1s;
}

/* SECTION SHARED */
.section-h2 {
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
}
.section-lead { font-size: 16px; color: #6b7a8d; max-width: 640px; margin-top: 10px; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 72px 40px; }

/* HERO SHARED */
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand, #00aee6);
  margin-bottom: 16px;
}
.hero-h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -.02em;
  line-height: 1.1; color: white;
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.65);
  line-height: 1.65; max-width: 560px; margin-top: 16px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-btn-primary {
  display: inline-flex; align-items: center;
  background: var(--brand, #00aee6); color: white;
  padding: 13px 28px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; border: none; transition: background .15s;
}
.hero-btn-secondary {
  display: inline-flex; align-items: center;
  background: transparent; color: rgba(255,255,255,.8);
  padding: 13px 28px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer; transition: all .15s;
}

/* ── MOBILE NAV BREAKPOINT (shared) ── */
@media (max-width: 1068px) {
  .nav-logo-desk { display: none; }
  .nav-logo-mob  { display: flex; }
  .nav-logo      { flex: 1; margin-right: 0; flex-shrink: 1; }
  .nav-divider   { display: none; }
  .nav-inner    { padding: 0 20px; }
  .nav-links     { display: none; }
  .nav-right     { display: none; }
  .nav-hamburger { display: flex; }
  .meta-brand { display: none; }
  .meta-about { display: none; }
  .meta-bar-inner { padding: 0 20px; }
  .section-pad   { padding: 48px 20px; }
}

/* ── Nav: Dropdown-Header als klickbarer Übersicht-Link ── */
a.dd-hdr-link {
  display: block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: 12px 16px 8px;
  color: var(--brand, #00aee6); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 4px;
  transition: color .15s;
}
a.dd-hdr-link:hover { color: var(--icsl-mid, #015288); opacity: .85; }

/* ── Dropdown entry as full clickable link ── */
a.dd-entry-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
  border-bottom: 1px solid #dde3ea;
  transition: background .15s;
}
a.dd-entry-link:last-child { border-bottom: none; }
a.dd-entry-link:hover { background: #f0f4f8; }
a.dd-entry-link .de-name { display: block; font-size: 14px; font-weight: 600; color: #1a2a3a; }
.de-nameline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }
a.dd-entry-link .de-desc { display: block; font-size: 12px; color: #8899aa; margin-top: 3px; }

/* ── Solo nav link (no dropdown) ── */
.nav-link-solo {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s;
}
.nav-link-solo:hover { background: rgba(255,255,255,.12); }

/* ── Mobile link solo (no accordion) ── */
a.mob-link-solo {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
a.mob-link-solo:hover { background: rgba(255,255,255,.06); }

/* ── Mobile: Übersicht-Eintrag oben im Accordion ── */
.mob-sub a.mob-sub-ov {
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,.45) !important;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 6px; padding-bottom: 9px;
}
.mob-sub a.mob-sub-ov:hover { color: rgba(255,255,255,.7) !important; }

/* Sofort-sicher: featured entry */
a.dd-entry-link.dd-entry-feat { background: #f0f7fd; }
a.dd-entry-link.dd-entry-feat:hover { background: #e6f2fb; }
a.dd-entry-link.dd-entry-feat .de-name { color: var(--icsl-dark, #012d50); }

/* ══════════════════════════════════════════════════════
   MEGA-MENÜ  (Was wir tun · Sofort sicher · Für wen · Warum ICSL)
   Verankerung: .mega-caas ist absolut gegen .nav-inner positioniert
   (nav-item ist static). Dadurch liegt der weiße Card EXAKT auf der
   Breite des Content-Windows (max 1280px) — kein Vollbild-Streifen.
══════════════════════════════════════════════════════ */
.mega-caas {
  position: absolute;
  top: calc(100% + 1px);
  left: 0; right: 0;
  width: auto;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;     /* der weiße Hintergrund sitzt im Card */
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  z-index: 120;
}
/* Der eigentliche weiße Card — content-breit, eingerückt wie die Nav */
.mega-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border, #dde3ea);
  border-top: 2px solid var(--brand, #00aee6);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 26px 50px -16px rgba(2,18,38,.30);
  overflow: hidden;
}

/* Intro-Spalte links */
.mega-intro {
  width: 280px; flex-shrink: 0;
  background: #f5f8fc;
  border-right: 1px solid var(--border, #dde3ea);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.mega-intro-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--brand, #00aee6);
}
.mega-intro-head {
  font-size: 19px; font-weight: 800; letter-spacing: -.01em;
  color: var(--icsl-deep, #012d50); line-height: 1.25; margin: 0;
}
.mega-intro-text {
  font-size: 14px; line-height: 1.6; color: #51637a; margin: 0;
}
.mega-intro-btn {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto; padding-top: 8px;
  font-size: 14px; font-weight: 700; color: var(--icsl-dark, #015288);
  text-decoration: none;
}
.mega-intro-btn:hover { color: var(--brand, #00aee6); }

/* Spalten-Bereich rechts */
.mega-body { flex: 1; display: flex; align-items: stretch; }
.mega-group {
  flex: 1; min-width: 0;
  padding: 28px 26px;
  border-right: 1px solid var(--border, #dde3ea);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.mega-group:last-child { border-right: none; }
.mega-group-title {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand, #00aee6);
  margin-bottom: 12px;
}

/* Einzel-Link im Spalten-Bereich */
.mega-link {
  display: block; padding: 9px 10px; margin: 0 -10px;
  border-radius: 8px; text-decoration: none;
  transition: background .12s;
}
.mega-link:hover { background: #f0f6fc; }
.ml-name {
  display: block; font-size: 14.5px; font-weight: 600;
  color: #0d1f30; line-height: 1.35;
}
.ml-nameline { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mega-link:hover .ml-name { color: var(--icsl-dark, #015288); }
.ml-desc {
  display: block; font-size: 12.5px; color: #6b7a8d;
  line-height: 1.5; margin-top: 3px;
}
/* Akzent-Eintrag (z.B. Testing & Evaluierung, Training & Support) */
.mega-link-accent { background: var(--icsl-deep, #012d50); }
.mega-link-accent:hover { background: #022a4d; }
.mega-link-accent .ml-name { color: #fff; }
.mega-link-accent:hover .ml-name { color: var(--brand, #00aee6); }
.mega-link-accent .ml-desc { color: rgba(255,255,255,.65); }

/* Produkt-Gruppe (Sofort sicher: ganze Spalte ist ein Link) */
a.mega-group--product { transition: background .14s; gap: 8px; }
a.mega-group--product:hover { background: #f5f8fc; }
a.mega-group--product.is-feat { background: #eef6fc; }
a.mega-group--product.is-feat:hover { background: #e3f1fa; }
.mega-prod-name {
  font-size: 18px; font-weight: 800; letter-spacing: -.01em;
  color: #0d1f30; line-height: 1.25;
}
a.mega-group--product.is-feat .mega-prod-name { color: var(--icsl-dark, #015288); }
.mega-prod-desc {
  font-size: 13.5px; line-height: 1.6; color: #51637a; margin: 6px 0 0; flex: 1;
}
.mega-prod-more {
  font-size: 13px; font-weight: 700; color: var(--brand, #00aee6); margin-top: 10px;
}
a.mega-group--product:hover .mega-prod-more { text-decoration: underline; }

/* Mega-Menü nur auf Desktop (>=1069px) - darunter greift die Mobile-Slide-Nav */
/* Sofort-sicher-Menü: schmale Vergleichszeile unter den 3 Produktkarten (Ludwig 07.07.) */
.mega-card{flex-wrap:wrap;}
.mega-all-link{flex-basis:100%;display:block;padding:13px 26px;text-align:center;font-size:11.5px;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;color:var(--icsl-mid,#015288);text-decoration:none;border-top:1px solid var(--border,#dde3ea);background:#fbfcfe;transition:background .14s,color .14s;}
.mega-all-link:hover{background:#f0f6fb;color:var(--icsl-dark,#012d50);}

@media (max-width: 1068px) {
  .mega-caas { display: none !important; }
}

/* ══ BACK TO TOP (nur Mobile-Layout <1069px) ══ */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: none;                 /* Desktop: nie sichtbar */
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: var(--brand, #00aee6);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  -webkit-tap-highlight-color: transparent;
}
.to-top svg { width: 20px; height: 20px; display: block; }
.to-top.is-visible { opacity: .95; pointer-events: auto; transform: translateY(0); }
.to-top:active { transform: translateY(0) scale(.94); }
@media (max-width: 1068px) {
  .to-top { display: flex; }     /* Mobile-Layout (wie Hamburger-Nav) */
}
@media (prefers-reduced-motion: reduce) {
  .to-top { transition: opacity .22s ease; }
}

/* ═══ ZM 260717 — ZEIG-MODUS-SCHALTER (Dev-Werkzeug, zentraler AUS-Schalter) ═══
   Der grün/rot-Schalter im Top-Navi kommt aus lux.js (Block ZM 260717) und ist
   sichtbar, solange die Zeile unten AUSKOMMENTIERT bleibt.
   DEAKTIVIEREN (z. B. für Launch): den Kommentar der nächsten Zeile entfernen —
   Schalter verschwindet auf allen Seiten und Alt+Klick-Markieren ist tot. */
/* .zm-switch{display:none!important} */
