/*
Theme Name:  Innovate Systems
Theme URI:   https://it.vezoza.com
Author:      VEZOZA
Author URI:  https://vezoza.com
Description: Custom theme for Innovate Systems – IT-Dienstleister
Version:     2.23.0
License:     GNU General Public License v2 or later
Text Domain: innovate-systems
Tags:        custom-menu, featured-images, full-width-template, threaded-comments
*/

/* =========================================
   LIGHT MODE – Variables
   ========================================= */
:root {
  /* Backgrounds */
  --bg-primary:   #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-tertiary:  #EEF2F7;
  --bg-elevated:  #FFFFFF;

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #334155;
  --text-muted:     #64748B;
  --text-inverse:   #FFFFFF;

  /* Brand / CTA – NUR für interaktive Elemente (Buttons, Focus) */
  --cta-primary:       #2563EB;
  --cta-hover:         #1D4ED8;
  --cta-active:        #1E40AF;
  --cta-text:          #FFFFFF;
  --cta-outline:       #2563EB;
  --cta-outline-hover: #1D4ED8;

  /* Accent – für dekorative Elemente (Icons, Highlights, Badges) */
  --accent:            #0EA5E9;
  --accent-dark:       #0369A1;
  --accent-soft:       #E0F2FE;
  --accent-soft-text:  #0369A1;

  /* Brand soft */
  --brand-soft:       #EFF6FF;
  --brand-soft-hover: #DBEAFE;

  /* Borders */
  --border-primary:   #E2E8F0;
  --border-secondary: #CBD5E1;
  --border-strong:    #94A3B8;

  /* Cards */
  --card-bg:           #FFFFFF;
  --card-border:       #E2E8F0;
  --card-hover-border: #BFDBFE;

  /* Inputs */
  --input-bg:           #FFFFFF;
  --input-border:       #CBD5E1;
  --input-border-focus: #2563EB;
  --input-text:         #0F172A;
  --input-placeholder:  #94A3B8;

  /* State colors */
  --success: #16A34A;
  --warning: #D97706;
  --error:   #DC2626;
  --info:    #2563EB;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 16px 40px rgba(15,23,42,.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Layout */
  --section-padding: 96px;
  --container-width: 1280px;

  /* Typography */
  --font-heading: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body:    'Sora', system-ui, -apple-system, sans-serif;
}

/* =========================================
   DARK SECTIONS – Variable Scoping
   Jede dunkle Section überschreibt die Variablen lokal.
   body.dark wird NICHT verwendet – stattdessen section-spezifisch.
   ========================================= */
.hero,
.stats-bar,
.contact-section,
.site-footer {
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,.80);
  --text-muted:     rgba(255,255,255,.55);
  --text-inverse:   #0F172A;
  --border-primary: rgba(255,255,255,.12);
  --card-bg:        rgba(255,255,255,.07);
  --card-border:    rgba(255,255,255,.12);
  --input-bg:       rgba(255,255,255,.08);
  --input-border:   rgba(255,255,255,.15);
  --input-text:     #FFFFFF;
  --input-placeholder: rgba(255,255,255,.3);
  --brand-soft:     rgba(255,255,255,.12);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.24);
  --shadow-md: 0 10px 30px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.4);
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .85; }
ul { list-style: none; }

/* =========================================
   BASE
   ========================================= */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background:
    radial-gradient(ellipse 90% 70% at 0%   0%,   rgba(105,115,181,.22) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(41, 67,149,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 0%,   rgba(105,115,181,.15) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 0%   100%, rgba(41, 67,149,.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 50%  50%,  rgba(255,255,255,.6)  0%, transparent 60%),
    #f0f3fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-footer { margin-top: auto; }

/* =========================================
   SORA TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0 0 .6em;
  color: var(--text-primary);
}
h1 { font-size: 56px;  line-height: 1.15; font-weight: 700; letter-spacing: -.03em; }
h2 { font-size: 40px;  line-height: 1.2;  font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: 28px;  line-height: 1.3;  font-weight: 600; letter-spacing: -.01em; }
h4 { font-size: 22px;  line-height: 1.35; font-weight: 600; }
h5 { font-size: 18px;  line-height: 1.4;  font-weight: 600; }
h6 { font-size: 16px;  line-height: 1.4;  font-weight: 600; }

p {
  margin: 0 0 1.2em;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-title {
  font-size: 64px; line-height: 1.05;
  font-weight: 800; letter-spacing: -.04em;
}
.hero-subtitle {
  font-size: 20px; line-height: 1.6;
  font-weight: 300; color: var(--text-muted);
  max-width: 640px;
}
.section-title {
  font-size: 42px; line-height: 1.15;
  font-weight: 600; letter-spacing: -.02em;
}
.card-title {
  font-size: 22px; line-height: 1.35; font-weight: 600;
}
.card-text {
  font-size: 15px; line-height: 1.7;
  font-weight: 400; color: var(--text-muted);
}
.eyebrow, .label {
  display: inline-block;
  font-size: 11px; line-height: 1.4;
  font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  color: #1e40af;
  background: #dbeafe;
  padding: .35em 1em;
  border-radius: 999px;
  margin-bottom: 14px;
}
small, .text-small {
  font-size: 13px; line-height: 1.5;
  font-weight: 400; color: var(--text-muted);
}
.text-lead {
  font-size: 18px; line-height: 1.7; font-weight: 300;
  color: var(--text-muted);
}
.text-primary-color { color: var(--text-primary); }
.text-secondary-color { color: var(--text-secondary); }
.text-muted-color   { color: var(--text-muted); }
.text-brand         { color: var(--cta-primary); }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: min(100% - 32px, var(--container-width));
  margin-inline: auto;
}
.section { padding: var(--section-padding) 0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn,
.button-primary,
.button-outline,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  text-decoration: none;
}

.btn-primary, .button-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  color: var(--cta-text);
  box-shadow:
    0 4px 14px rgba(37, 99, 235, .45),
    0 1px 3px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
  letter-spacing: .05em;
}
.btn-primary:hover, .button-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1740c4 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(37, 99, 235, .55),
    0 2px 6px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
  opacity: 1;
}
.btn-primary:active, .button-primary:active {
  background: linear-gradient(135deg, #1740c4 0%, #1338a8 100%);
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(37, 99, 235, .35),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.btn-outline, .button-outline {
  background: transparent;
  color: var(--cta-outline);
  border: 1.5px solid var(--cta-outline);
}
.btn-outline:hover, .button-outline:hover {
  background: var(--brand-soft);
  color: var(--cta-outline-hover);
  border-color: var(--cta-outline-hover);
  transform: translateY(-1px);
  opacity: 1;
}
.btn-outline:active, .button-outline:active { transform: translateY(0); }

.button-ghost {
  background: transparent;
  color: var(--text-primary);
}
.button-ghost:hover {
  background: var(--brand-soft);
  color: var(--cta-primary);
  opacity: 1;
}

/* alias – same as .btn-primary */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.45), 0 1px 3px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.15);
  transition: all .2s ease;
}
.cta-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1740c4 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.55), 0 2px 6px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.15);
  opacity: 1; color: #fff;
}
.cta-primary:active { transform: translateY(0); }

/* outline/secondary variant */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--cta-primary);
  border: 1.5px solid var(--cta-primary);
  transition: all .2s ease;
}
.cta-secondary:hover {
  background: var(--brand-soft);
  color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  opacity: 1;
}
.cta-secondary:active { transform: translateY(0); }

/* Hero dark background – secondary becomes white on hover */
.hero .cta-secondary,
.hero-actions .cta-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.hero .cta-secondary:hover,
.hero-actions .cta-secondary:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
  opacity: 1;
}

/* sidebar CTA button */
.cta-sidebar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
  transition: all .2s ease;
}
.cta-sidebar:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1740c4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.5);
  opacity: 1;
}

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: all .25s ease;
}
.card:hover {
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-soft {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card-brand {
  background: var(--brand-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* =========================================
   ICON BOX
   ========================================= */
.icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

/* =========================================
   BADGES
   ========================================= */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 32px; padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px; font-weight: 600;
}
.badge-neutral {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

/* =========================================
   ALERTS
   ========================================= */
.alert-success, .alert-warning,
.alert-error, .alert-info {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px; line-height: 1.6;
}
.alert-success { background: rgba(34,197,94,.12);  color: var(--success); border-color: rgba(34,197,94,.22); }
.alert-warning { background: rgba(245,158,11,.12); color: var(--warning); border-color: rgba(245,158,11,.22); }
.alert-error   { background: rgba(239,68,68,.12);  color: var(--error);   border-color: rgba(239,68,68,.22); }
.alert-info    { background: rgba(59,130,246,.12); color: var(--info);    border-color: rgba(59,130,246,.22); }

/* =========================================
   FORMS
   ========================================= */
input, textarea, select {
  width: 100%;
  background: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400; line-height: 1.5;
  outline: none;
  transition: all .2s ease;
}
input::placeholder, textarea::placeholder { color: var(--input-placeholder); }
input:focus, textarea:focus, select:focus {
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

/* =========================================
   DIVIDER / PANEL / STAT
   ========================================= */
.divider { width: 100%; height: 1px; background: var(--border-primary); }

.panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-label { color: var(--text-muted); font-size: 13px; }
.stat-value { color: var(--text-primary); font-size: 32px; font-weight: 700; letter-spacing: -.03em; }

/* =========================================
   HERO – extended
   ========================================= */

.hero-badge--mobile { display: none; }
.hero-badge {
  display: inline-block;
  background: rgba(15, 32, 68, .7);
  color: rgba(147, 197, 253, .85);
  border: 1px solid rgba(96, 165, 250, .25);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .03em;
  padding: .45rem 1.1rem; border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-outline {
  border-color: rgba(255,255,255,.5) !important;
  color: #fff !important;
}
.hero-outline:hover {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 18, 40, .28);
  border-radius: inherit;
  pointer-events: none;
}
.hero-img-wrap img { width: 100%; height: auto; display: block; }

.hero-google-badge {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 2;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: .5rem .75rem;
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.hero-google-badge svg:first-child { width: 13px; height: 13px; }
.hero-google-stars {
  display: flex; gap: 1px;
}
.hero-google-stars svg { width: 9px !important; height: 9px !important; }
.hero-google-text {
  display: flex; align-items: center; gap: .3rem; line-height: 1;
}
.hero-google-text strong {
  font-size: .65rem; font-weight: 800; color: #111;
}
.hero-google-text span {
  font-size: .6rem; color: #6b7280;
}

.hero-contacts {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-contact-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  min-width: 155px;
}
.hero-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
}
.hero-contact-label {
  display: block; font-size: .7rem;
  color: rgba(255,255,255,.55); font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: .1rem;
}
.hero-contact-value {
  display: block; font-size: .82rem;
  color: rgba(255,255,255,.9); font-weight: 600;
}
a.hero-contact-value:hover { opacity: .75; }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: transparent;
  padding: 0 0 3rem;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.stats-bar .container {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.3),
    0 1px 0 rgba(255,255,255,.08) inset;
  padding: 1.4rem 2.5rem;
}

.stats-bar .stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
@media (max-width: 768px) {
  .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
.stats-bar .stat-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .3rem;
}
.stats-bar .stat-number {
  font-size: 2.2rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.stats-bar .stat-label {
  font-size: .85rem; color: #0f172a;
  font-weight: 400;
}

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--border-primary);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 1024px) {
  .site-header.header--hidden { transform: translateY(-100%); }
}
body.dark .site-header { background: rgba(11,18,32,.78); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo { display: flex; align-items: center; gap: .75rem; }
.site-logo img { height: 53px; width: auto; }
.site-logo span { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); }

.main-nav { display: flex; align-items: center; gap: 2.75rem; margin-left: auto; margin-right: 2rem; }
.main-nav a, .nav-link {
  font-size: 14px; font-weight: 500;
  line-height: 1.4; letter-spacing: .02em;
  color: var(--text-secondary);
  transition: color .2s ease;
}
.main-nav a:hover, .nav-link:hover { color: var(--text-primary); opacity: 1; }

.main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a,
.main-nav .current_page_item > a,
.nav-link.active {
  color: var(--text-primary);
  opacity: 1;
  position: relative;
}
.main-nav .current-menu-item > a::after,
.main-nav .current-menu-ancestor > a::after,
.main-nav .current_page_item > a::after,
.main-nav__link--active::after {
  content: '';
  position: absolute;
  left: -12px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 9px;
  background-image:
    linear-gradient(#7984ba, #7984ba),
    linear-gradient(#074594, #074594);
  background-size: 4px 4px;
  background-position: 0 0, 0 5px;
  background-repeat: no-repeat;
}
.nav-cta {
  margin-left: 2rem;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
}
.nav-cta-soforthilfe {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: 2rem;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(37,99,235,.35);
  transition: background .18s, border-color .18s, color .18s;
}
.nav-cta-soforthilfe:hover {
  background: rgba(37,99,235,.07);
  border-color: #2563eb;
  color: #2563eb;
  text-decoration: none;
}
.site-header.scrolled .nav-cta-soforthilfe {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
}
.nav-cta:hover {
  box-shadow: 0 4px 14px rgba(37,99,235,.38);
}
.site-header.scrolled .nav-cta {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

/* .menu-toggle base styles defined in FULLSCREEN MOBILE MENU section below */

/* =========================================
   DESKTOP NAV DROPDOWN
   ========================================= */
.main-nav__link {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
  display: flex; align-items: center; gap: .35rem;
  text-decoration: none;
  position: relative;
  z-index: 201;
}
.main-nav__link:hover,
.main-nav__link--active { color: var(--text-primary); }

.main-nav__chevron {
  transition: transform .2s;
  flex-shrink: 0;
}
.main-nav__item--has-dropdown:hover .main-nav__chevron,
.main-nav__item--has-dropdown:focus-within .main-nav__chevron {
  transform: rotate(180deg);
}

.main-nav__item { position: relative; }
.main-nav__item--has-dropdown { display: flex; align-items: center; }
.main-nav__item--has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0; right: 0;
  height: 24px;
}

.main-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 900px;
  background: #fff;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 200;
  padding: 1.25rem;
  margin-top: 8px;
}
.main-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0; right: 0;
  height: 24px;
}
.main-nav__item--has-dropdown:focus-within .main-nav__dropdown,
.main-nav__dropdown.is-visible {
  display: block;
}

.main-nav__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .25rem;
}

.main-nav__dropdown-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .75rem;
  border-radius: 8px;
  font-size: .85rem; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.main-nav__dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--cta-primary);
}

.main-nav__dropdown-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.08);
  border-radius: 7px;
  color: var(--cta-primary);
  flex-shrink: 0;
  transition: background .15s;
}
.main-nav__dropdown-item:hover .main-nav__dropdown-icon {
  background: rgba(37,99,235,.12);
}

.main-nav__dropdown-footer {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.main-nav__dropdown-divider {
  border: none;
  border-top: 1px solid var(--border-primary);
  margin: 0;
}
.main-nav__dropdown-all {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600;
  color: var(--cta-primary);
  text-decoration: none;
  transition: gap .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.main-nav__dropdown-all:hover { gap: .6rem; }

.main-nav__dropdown-promo {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem .9rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s, box-shadow .15s;
  flex: 1;
  min-width: 0;
}
.main-nav__dropdown-promo:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 2px 8px rgba(37,99,235,.1);
}
.main-nav__dropdown-promo__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.1);
  border-radius: 8px;
  color: var(--cta-primary);
}
.main-nav__dropdown-promo__body {
  display: flex; flex-direction: column; gap: 1px; min-width: 0;
}
.main-nav__dropdown-promo__title {
  font-size: .82rem; font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.main-nav__dropdown-promo__sub {
  font-size: .75rem; color: var(--text-secondary);
  white-space: nowrap;
}
.main-nav__dropdown-promo__cta {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .75rem; font-weight: 600;
  color: var(--cta-primary);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: 5rem 0 7rem;
  background:
    linear-gradient(rgba(10,22,40,.72), rgba(10,22,40,.72)),
    url('assets/images/hero-banner.jpg') center center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse at 8% 30%, rgba(119,132,186,.3) 0%, transparent 45%),
    radial-gradient(ellipse at 92% 70%, rgba(7,69,148,.4) 0%, transparent 48%);
  animation: hero-inner-glow 10s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-blur-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: .35;
  z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px; margin-bottom: 1.5rem;
}
.hero h1, .hero .hero-title { margin-bottom: 1.25rem; }
.hero h1 span, .hero .hero-title span { color: var(--accent); }
.hero .hero-subtitle { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; }
.hero-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }

.hero-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 36px;
}

/* Section header */
.section-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2,
.section-header .section-title { margin-bottom: .75rem; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

/* =========================================
   TRUST TICKER
   ========================================= */
.trust-section {
  background: #fff;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-primary);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 11px; font-weight: 600;
  color: #1e40af;
  background: #dbeafe;
  text-transform: uppercase; letter-spacing: .1em;
  display: inline-block;
  padding: .35em 1em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  width: fit-content;
  margin-left: auto; margin-right: auto;
  display: block;
  width: fit-content;
}
.trust-ticker-wrap {
  position: relative; overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-ticker {
  display: flex; align-items: center;
  gap: 3rem; width: max-content;
  animation: trust-scroll 40s linear infinite;
}
.trust-ticker:hover { animation-play-state: paused; }

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; height: 40px;
  opacity: .55; transition: opacity .2s;
  text-decoration: none;
}
.trust-item:hover { opacity: 1; }
.trust-item-fallback {
  display: block;
  font-size: .82rem; font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap; text-transform: uppercase;
  letter-spacing: .05em;
}

/* =========================================
   SERVICES GRID
   ========================================= */
/* ── Leistungen Pills Bar ──────────────────────────── */
.leistungen-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .4rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}
.leistungen-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.leistungen-pill:hover {
  background: rgba(37,99,235,.06);
  color: var(--cta-primary);
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 2px 8px rgba(37,99,235,.1);
}
.leistungen-pill__icon {
  display: flex;
  align-items: center;
  opacity: .6;
}
.leistungen-pill:hover .leistungen-pill__icon { opacity: 1; }
.leistungen-pill--active {
  background: rgba(37,99,235,.1);
  color: var(--cta-primary);
  border-color: rgba(37,99,235,.5);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(37,99,235,.15);
  pointer-events: none;
}
.leistungen-pill--active .leistungen-pill__icon { opacity: 1; }

/* ── Floating right sidebar widget ────────────────────────── */
.leistungen-pills-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.leistungen-pills-nav .container {
  padding: 0;
  max-width: none;
  width: auto;
}
.leistungen-pills-nav .leistungen-pills--subnav {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: .2rem;
  margin: 0;
  padding: .6rem .35rem;
  border-bottom: none;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-right: none;
  box-shadow: -4px 0 24px rgba(0,0,0,.25);
}
.leistungen-pills-nav .leistungen-pill {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.45);
  font-size: 0;
}
.leistungen-pills-nav .leistungen-pill .leistungen-pill__icon {
  opacity: 1;
  width: 18px;
  height: 18px;
}
.leistungen-pills-nav .leistungen-pill .nav-badge { display: none; }
.leistungen-pills-nav .leistungen-pill:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.15);
  box-shadow: none;
}
/* Tooltip label */
.leistungen-pills-nav .leistungen-pill::before {
  content: attr(title);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,23,42,.97);
  color: #e2e8f0;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .3rem .65rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
}
.leistungen-pills-nav .leistungen-pill::after {
  content: '';
  position: absolute;
  right: calc(100% + 4px);
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(15,23,42,.97);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
}
.leistungen-pills-nav .leistungen-pill:hover::before,
.leistungen-pills-nav .leistungen-pill:hover::after { opacity: 1; }
/* Active state in floating nav */
.leistungen-pills-nav .leistungen-pill--active {
  background: rgba(37,99,235,.25);
  color: #93c5fd;
  border-color: rgba(37,99,235,.55);
  font-weight: normal;
  box-shadow: 0 0 10px rgba(37,99,235,.3);
}
/* ── Featured / Kernleistung pill ──────────────────────────── */
.leistungen-pills-nav .leistungen-pill--featured {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(251,191,36,.18) 0%, rgba(245,158,11,.08) 100%);
  border-color: rgba(251,191,36,.55);
  color: #fcd34d;
  margin-bottom: .75rem;
  animation: pill-featured-glow 2.8s ease-in-out infinite;
}
.leistungen-pills-nav .leistungen-pill--featured .leistungen-pill__icon {
  width: 20px;
  height: 20px;
}
.leistungen-pills-nav .leistungen-pill--featured:hover {
  background: linear-gradient(135deg, rgba(251,191,36,.28) 0%, rgba(245,158,11,.18) 100%);
  border-color: rgba(251,191,36,.8);
  color: #fde68a;
  box-shadow: 0 0 18px rgba(251,191,36,.35);
}
/* Separator line between featured and rest */
.leistungen-pills-nav .leistungen-pill--featured::after {
  content: '' !important;
  position: absolute !important;
  right: auto !important;
  left: 10% !important;
  top: auto !important;
  bottom: -.5rem !important;
  width: 80% !important;
  height: 1px !important;
  background: rgba(255,255,255,.12) !important;
  border: none !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transition: none !important;
}
.leistungen-pills-nav .leistungen-pill--featured:hover::after {
  opacity: 1 !important;
  border-left-color: transparent !important;
}
@keyframes pill-featured-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(251,191,36,.18); }
  50%       { box-shadow: 0 0 20px rgba(251,191,36,.38); }
}
/* Hide on smaller screens where it would overlap content */
@media (max-width: 1100px) {
  .leistungen-pills-nav { display: none; }
}

@media (max-width: 640px) {
  .leistungen-pills { gap: .4rem; }
  .leistungen-pill  { font-size: .76rem; padding: .3rem .7rem; }
}

/* ══════════════════════════════════════════════════════
   Mobile Leistungen FAB + Bottom Sheet
══════════════════════════════════════════════════════ */
.lp-fab {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 400;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem .55rem .7rem;
  background: rgba(10,18,36,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), border-color .2s, box-shadow .2s;
}
.lp-fab:hover {
  transform: scale(1.05);
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 6px 30px rgba(0,0,0,.55), 0 0 0 1px rgba(37,99,235,.25);
}
.lp-fab:active { transform: scale(.96); transition-duration: .08s; }
.lp-fab__icon { flex-shrink: 0; color: rgba(255,255,255,.65); }
.lp-fab__label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.82); letter-spacing: .01em; }
.lp-fab__active {
  font-size: .7rem; font-weight: 500;
  color: #60a5fa;
  padding: .08rem .4rem;
  background: rgba(37,99,235,.2);
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,.28);
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1100px) { .lp-fab { display: flex; } }

/* Backdrop */
.lp-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lp-backdrop.is-open { opacity: 1; pointer-events: all; }

/* Bottom sheet */
.lp-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  max-height: 86vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(170deg, #0b1628 0%, #0e1e3a 100%);
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  box-shadow: 0 -8px 48px rgba(0,0,0,.55), 0 -1px 0 rgba(255,255,255,.06);
  padding: 0 1.25rem 2.5rem;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
  will-change: transform;
}
.lp-sheet.is-open { transform: translateY(0); }

/* Handle */
.lp-sheet__handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,.18);
  border-radius: 2px;
  margin: .8rem auto .4rem;
}

/* Header */
.lp-sheet__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0 .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1rem;
}
.lp-sheet__title { font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.lp-sheet__close {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lp-sheet__close:hover { background: rgba(255,255,255,.17); color: #fff; }

/* Service grid */
.lp-sheet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: .75rem;
}
.lp-sheet__item {
  display: flex; flex-direction: column; align-items: center;
  gap: .45rem;
  padding: .9rem .5rem .75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  min-width: 0;
  transition: background .2s, border-color .2s, transform .15s;
}
.lp-sheet__item:active { transform: scale(.96); }
.lp-sheet__item:hover {
  background: rgba(37,99,235,.14);
  border-color: rgba(37,99,235,.28);
}
.lp-sheet__item-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  color: rgba(255,255,255,.65);
}
.lp-sheet__item-name {
  font-size: .74rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  text-align: center; line-height: 1.25;
  word-break: break-word;
}
/* Active */
.lp-sheet__item--active {
  background: rgba(37,99,235,.2);
  border-color: rgba(37,99,235,.5);
  box-shadow: 0 0 14px rgba(37,99,235,.22);
}
.lp-sheet__item--active .lp-sheet__item-icon { background: rgba(37,99,235,.28); color: #93c5fd; }
.lp-sheet__item--active .lp-sheet__item-name { color: #93c5fd; font-weight: 600; }
/* Featured – full width row */
.lp-sheet__item--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  background: linear-gradient(135deg, rgba(251,191,36,.1) 0%, rgba(245,158,11,.04) 100%);
  border-color: rgba(251,191,36,.3);
}
.lp-sheet__item--featured .lp-sheet__item-icon { background: rgba(251,191,36,.12); color: #fcd34d; }
.lp-sheet__item--featured .lp-sheet__item-name { font-size: .84rem; font-weight: 600; color: #fde68a; text-align: left; }
.lp-sheet__item-badge {
  font-size: .61rem; font-weight: 700; letter-spacing: .03em;
  background: rgba(251,191,36,.15);
  border: 1px solid rgba(251,191,36,.35);
  color: #fcd34d;
  padding: .1rem .4rem;
  border-radius: 4px;
  align-self: center;
  margin-left: auto;
  flex-shrink: 0;
}
/* All services link */
.lp-sheet__all {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.lp-sheet__all:hover { background: rgba(255,255,255,.1); color: #fff; }

.services { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 60px rgba(15,23,42,.18);
  transform: translateY(-4px);
}
.service-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-tertiary);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.07);
}
.service-card--logo-banner .service-card-image {
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.service-card--logo-banner .service-card-image img {
  object-fit: contain;
  padding: 1rem 1.5rem;
}
.service-card--logo-banner:hover .service-card-image img {
  transform: scale(1.04);
}
.service-card-icon {
  position: relative;
  margin-top: -24px; margin-left: 1.5rem;
  z-index: 2;
  width: 48px; height: 48px;
  background: #0F172A;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md);
}
.service-card-body { padding: 2.75rem 1.5rem 1.75rem; }
.service-card-body h3 {
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: .5rem; color: var(--text-primary);
}
.service-card-body p {
  font-size: .9rem; color: var(--text-muted);
  margin-bottom: 1rem; line-height: 1.6;
}
.service-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.25rem;
}
.service-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-secondary);
}
.service-features li svg { color: var(--success); flex-shrink: 0; }
.services-grid--4col {
  grid-template-columns: repeat(2, 1fr);
}
.service-card--large {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  overflow: visible;
  padding: 1.75rem;
}
.service-card--large .service-card-icon {
  position: static;
  margin: 0;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
}
.service-card--full {
  grid-column: 1 / -1;
}
.service-card--large .service-card-body {
  padding: 0;
  flex: 1;
}
@media (max-width: 900px) {
  .services-grid--4col { grid-template-columns: 1fr; }
}

.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--cta-primary); font-weight: 600; font-size: .88rem;
  transition: gap .2s ease; opacity: 1;
}
.service-link:hover { gap: .65rem; opacity: 1; }

/* =========================================
   STATS
   ========================================= */
.stats {
  background: var(--text-primary);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--text-primary);
  line-height: 1; margin-bottom: .35rem;
  text-shadow: 0 2px 10px rgba(10,25,80,.15);
}
.stats .stat-label { color: rgba(255,255,255,.7); }

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--bg-secondary); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image {
  position: relative; flex-shrink: 0;
}
.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  width: 100%; height: auto;
}
.about-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: #0F172A;
  color: #fff; border-radius: var(--radius-md);
  padding: 1rem 1.25rem; text-align: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .about-badge { left: .75rem; }
}
.about-badge-number { display: block; font-size: 1.75rem; font-weight: 800; line-height: 1; }
.about-badge-label  { display: block; font-size: .75rem; font-weight: 500; opacity: .85; margin-top: .2rem; }
.about-content h2   { margin-bottom: .75rem; }
.about-content p    { color: var(--text-muted); margin-bottom: 1.5rem; }
.usp-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.usp-item {
  display: flex; align-items: center; gap: .85rem;
  font-size: .95rem; color: var(--text-secondary);
}
.usp-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}

/* =========================================
   ÜBER UNS PAGE
   ========================================= */

/* Inner Page Hero */
.page-hero-inner {
  position: relative;
  background: linear-gradient(180deg, rgba(10,25,50,.88) 0%, rgba(10,25,50,1) 100%);
  color: #fff;
  padding: 1.75rem 0 1.75rem;
  text-align: center;
  margin-bottom: 0;
  overflow: hidden;
}
.page-hero-inner::before {
  content: '';
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(119,132,186,.32) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(7,69,148,.5) 0%, transparent 50%);
  animation: hero-inner-glow 10s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes hero-inner-glow {
  0%   { transform: scale(1)    translate(0,   0);   opacity: .8; }
  50%  { transform: scale(1.06) translate(1%,  .5%); opacity: 1;  }
  100% { transform: scale(.97)  translate(-1%, -.5%); opacity: .75; }
}
.page-hero-inner .container,
.contact-section .container { position: relative; z-index: 1; }

.page-hero-inner h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff; margin-bottom: .75rem;
}
.page-hero-inner p {
  font-size: 1.15rem;
  color: #fff;
  max-width: 560px; margin: 0 auto;
}
.page-hero-inner .eyebrow {
  color: #bfdbfe;
  background: rgba(255,255,255,.1);
}
.page-hero-inner h1:only-child,
.page-hero-inner h1:first-child:last-of-type { margin-bottom: 0; }
/* Compact hero when only h1 (no eyebrow/subtitle) */
.page-hero-inner--compact { padding: 3.5rem 0; }
.page-hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.page-hero-phone {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.page-hero-phone:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
  opacity: 1;
}
.page-hero-inner--has-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6.9rem 0;
}
.page-hero-inner--has-bg::before { display: none; }
.page-hero-inner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.72) 0%, rgba(15,23,42,.45) 100%);
  z-index: 1;
}
.page-hero-inner--has-img {
  padding: 6rem 0;
  position: relative;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.06);
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 55, .55);
  z-index: 1;
}
.page-hero-inner--datev {
  background:
    radial-gradient(circle at 90% 20%, rgba(0,166,81,.28) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(0,91,150,.35) 0%, transparent 40%),
    linear-gradient(135deg, #003d6b 0%, #005533 100%);
  border: none;
}
.page-hero-inner--datev::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.page-hero-inner--datev::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,166,81,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-inner--datev .container { position: relative; z-index: 2; }
.datev-hero-accent {
  background: linear-gradient(135deg, #4ade80 0%, #34d399 50%, #38bdf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-datev-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.page-hero-datev-content {
  flex: 1;
}
.page-hero-datev-logo {
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: .75rem 1.1rem;
  margin-right: 3rem;
}
.page-hero-datev-logo img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .page-hero-datev-wrap { flex-direction: column; align-items: flex-start; }
  .page-hero-datev-logo { display: none; }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.75) 0%, rgba(15,23,42,.5) 100%);
}

/* Story section tweaks */
.au-story { background: #fff; }
.au-story .about-content p { color: var(--text-secondary); }

/* ── Wuppertal Lokalität ── */
.au-local-section {
  padding: 2.5rem 0;
  background: transparent;
}
.au-local-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1520 / 688;
}
.au-local-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.au-local-cards {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .875rem;
  padding: 1.5rem 1.25rem 1.5rem 1.5rem;
}
.au-local-item {
  color: #fff;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.08);
}
.au-local-item h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.au-local-item p {
  font-size: .8rem;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .au-local-image-wrap { aspect-ratio: unset; min-height: 320px; }
  .au-local-cards { width: 100%; bottom: unset; top: unset; position: relative; padding: 1rem; flex-direction: row; flex-wrap: wrap; }
  .au-local-item { flex: 1 1 calc(50% - .5rem); }
}

/* Image placeholder when no photo uploaded */
.au-image-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted);
}

/* Mini stats row */
.au-mini-stats {
  display: flex; gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-primary);
}
.au-mini-stat strong {
  display: block;
  font-size: 1.6rem; font-weight: 800;
  color: var(--text-primary); line-height: 1;
}
.au-mini-stat span {
  font-size: .8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin-top: .25rem; display: block;
}

/* Leistungsbereiche feature grid */
/* ── Team Section ────────────────────────────────── */
.au-team-section { background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.au-team-photo {
  margin: 0 auto 4rem;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.13);
}
.au-team-photo img { width: 100%; height: auto; display: block; }
.au-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}
.au-team-card {
  flex: 0 1 calc(25% - 1.125rem);
  min-width: 220px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15,23,42,.06), 0 8px 28px rgba(15,23,42,.08);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.au-team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}
.au-team-card:hover {
  box-shadow: 0 8px 20px rgba(15,23,42,.10), 0 24px 56px rgba(15,23,42,.12);
  transform: translateY(-4px);
}

/* ── Avatar – Foto-Container mit Initials-Fallback ── */
.au-team-avatar {
  position: relative;
  width: 108px; height: 108px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15,23,42,.12);
  background: linear-gradient(145deg, #1e3a8a 0%, #0f172a 100%);
  display: flex; align-items: center; justify-content: center;
}
.au-team-avatar::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.9);
  letter-spacing: .02em;
  z-index: 0;
}
.au-team-avatar img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.au-team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: .3rem; }
.au-team-role {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  color: #2563eb;
  text-transform: uppercase; letter-spacing: .07em;
  background: #eff6ff; border-radius: 999px;
  border: 1px solid #bfdbfe;
  padding: .2rem .8rem; margin-bottom: 1rem;
}
.au-team-divider { width: 32px; height: 2px; background: #e2e8f0; margin: 0 auto 1rem; border-radius: 2px; }
.au-team-topics { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.au-team-topics li {
  font-size: .82rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: .45rem; text-align: left;
}
.au-team-topics { text-align: left; }
.au-team-topics li::before { content: '·'; color: #2563eb; font-weight: 900; font-size: 1.1rem; line-height: 1.3; flex-shrink: 0; }

@media (max-width: 600px)  { .au-team-card { flex: 0 1 100%; max-width: 360px; } }
@media (min-width: 601px) and (max-width: 900px) { .au-team-card { flex: 0 1 calc(50% - .75rem); } }

.au-features-section { background: var(--bg-secondary); }
.au-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.au-feature-card {
  background: #fff;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.au-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.au-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.au-feature-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .6rem; line-height: 1.3;
}
.au-feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* CTA strip */
.au-cta-section,
.home-cta-section {
  background: #f0f4ff;
  border-top: 1px solid #dbeafe;
  padding: 4.5rem 0;
}
.au-cta-inner h2 { color: #0f172a; margin-bottom: .5rem; }
.au-cta-inner p  { color: #475569; margin: 0; }
.au-cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .au-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .au-features-grid { grid-template-columns: 1fr; }
  .au-cta-inner { flex-direction: column; text-align: center; }
  .au-mini-stats { flex-direction: column; gap: 1rem; }
}

/* =========================================
   BLOG
   ========================================= */
.blog-archive-section { background: #f8fafc; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.blog-card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; color: var(--text-muted); margin-bottom: .75rem;
}
.blog-card-cat {
  background: #dbeafe; color: #1e40af;
  padding: .2em .65em; border-radius: 999px;
  font-weight: 600; font-size: .75rem;
}
.blog-card-title { font-size: 1.05rem; margin-bottom: .6rem; line-height: 1.4; }
.blog-card-title a { color: var(--text-primary); text-decoration: none; }
.blog-card-title a:hover { color: var(--cta-primary); }
.blog-card-excerpt { font-size: .88rem; color: var(--text-secondary); flex: 1; margin-bottom: 1.1rem; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--cta-primary);
  text-decoration: none; margin-top: auto;
}
.blog-card-link:hover { gap: .65rem; }

.blog-pagination {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  padding: .5rem .85rem; border-radius: 8px;
  border: 1.5px solid #e2e8f0; font-size: .88rem;
  color: var(--text-primary); text-decoration: none;
  transition: background .2s, border-color .2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--cta-primary); border-color: var(--cta-primary); color: #fff;
}

.blog-empty {
  text-align: center; padding: 5rem 0;
  color: var(--text-muted);
}
.blog-empty svg { display: block; margin: 0 auto 1rem; opacity: .35; }

/* Single Post */
.single-post-section { background: #f8fafc; }
.single-post-meta {
  font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .5rem;
}
.single-post-inner {
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
}
.single-post-thumb {
  border-radius: 14px; overflow: hidden; margin-bottom: 2rem;
  aspect-ratio: 16/6;
}
.single-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.entry-content {
  font-size: 1.02rem; line-height: 1.85;
  color: var(--text-secondary);
  max-width: 100%;
}
.entry-content h2, .entry-content h3 { color: var(--text-primary); margin: 2rem 0 .75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content a { color: var(--cta-primary); }
.entry-content img { max-width: 100%; border-radius: 10px; }
.entry-content code { background: #f1f5f9; padding: .15em .4em; border-radius: 4px; font-size: .9em; }
.entry-content pre { background: #0f172a; color: #e2e8f0; padding: 1.25rem; border-radius: 10px; overflow-x: auto; margin-bottom: 1.5rem; }

.single-post-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.single-tag {
  background: #f1f5f9; color: var(--text-muted);
  padding: .3em .8em; border-radius: 999px; font-size: .78rem;
}

.single-post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
.sidebar-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 1.5rem;
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-post {
  display: flex; flex-direction: column; gap: .2rem;
  padding: .65rem 0; border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post span { font-size: .88rem; color: var(--text-primary); line-height: 1.4; }
.sidebar-post span:hover { color: var(--cta-primary); }
.sidebar-post time { font-size: .75rem; color: var(--text-muted); }
.sidebar-post--current { pointer-events: none; }
.sidebar-post--current span {
  color: var(--cta-primary);
  font-weight: 600;
  position: relative;
  padding-left: 14px;
}
.sidebar-post--current span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 9px;
  background-image:
    linear-gradient(#7984ba, #7984ba),
    linear-gradient(#074594, #074594);
  background-size: 4px 4px;
  background-position: 0 0, 0 5px;
  background-repeat: no-repeat;
}
.sidebar-cta { background: linear-gradient(160deg, #0f2044, #0a1628); border: none; }
.sidebar-cta h3, .sidebar-cta p { color: #fff; }
.sidebar-cta p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .single-post-inner { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   KARRIERE PAGE
   ========================================= */
.karriere-intro-section { background: #fff; }
.karriere-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.karriere-intro-text h2 { margin-bottom: 1.25rem; }
.karriere-intro-text p  { color: var(--text-secondary); margin-bottom: 1rem; }

.karriere-perks { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }
.karriere-perk  { display: flex; align-items: flex-start; gap: .9rem; }
.karriere-perk-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: #dbeafe; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #1e40af;
}
.karriere-perk strong { display: block; font-size: .95rem; color: var(--text-primary); }
.karriere-perk span   { font-size: .83rem; color: var(--text-muted); }

.karriere-looking-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem;
}
.karriere-looking-card h3 { margin: .75rem 0 1.25rem; }
.karriere-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.karriere-list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: .93rem; color: var(--text-secondary);
}
.karriere-list li::before {
  content: '';
  position: absolute; left: 0; top: .5em;
  width: 7px; height: 7px;
  background: #3b82f6; border-radius: 50%;
}
.karriere-note {
  font-size: .82rem; color: var(--text-muted);
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem; margin: 0;
}

.karriere-form-section { background: #f8fafc; }
.karriere-form-wrap { max-width: 760px; margin: 0 auto; }
.karriere-form-wrap .section-header { margin-bottom: 2.5rem; }

.karriere-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.karriere-field { display: flex; flex-direction: column; gap: .45rem; }
.karriere-field--full { grid-column: 1 / -1; }
.karriere-field label {
  font-size: .85rem; font-weight: 600; color: var(--text-primary);
}
.karriere-field label span { color: #ef4444; }
.karriere-field input,
.karriere-field textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .95rem; font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  transition: border-color .2s;
  resize: vertical;
}
.karriere-field input:focus,
.karriere-field textarea:focus {
  outline: none; border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.karriere-form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-top: 1.75rem; flex-wrap: wrap;
}
.karriere-privacy { font-size: .8rem; color: var(--text-muted); margin: 0; }
.karriere-privacy a { color: var(--cta-primary); text-decoration: underline; }

.karriere-msg {
  margin-top: 1.25rem;
  padding: .9rem 1.25rem;
  border-radius: 10px;
  font-size: .9rem; font-weight: 500;
}
.karriere-msg--success { background: #dcfce7; color: #15803d; }
.karriere-msg--error   { background: #fee2e2; color: #b91c1c; }

@media (max-width: 1024px) {
  .karriere-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .karriere-form-grid { grid-template-columns: 1fr; }
  .karriere-form-footer { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   REFERENZEN PAGE
   ========================================= */
.ref-stats-section { background: #f8fafc; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.ref-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.ref-stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.ref-stat-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--cta-primary, #1d4ed8);
  line-height: 1;
  margin-bottom: .4rem;
}
.ref-stat-card span { font-size: .9rem; color: var(--text-muted); }

.ref-intro-section { background: #fff; }
.ref-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.ref-intro-text h2 { margin-bottom: 1.25rem; }
.ref-intro-text p { color: var(--text-secondary); margin-bottom: 1rem; }

.ref-quote-card {
  background: linear-gradient(160deg, #0f2044 0%, #0a1628 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
}
.ref-quote-icon {
  color: rgba(96,165,250,.6);
  margin-bottom: 1.25rem;
}
.ref-quote-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.ref-quote-author strong { display: block; color: #fff; font-size: .95rem; }
.ref-quote-author span { font-size: .82rem; color: rgba(255,255,255,.5); }

.ref-logos-section { background: #f8fafc; }
.ref-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.ref-logo-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 90px;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.ref-logo-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.ref-logo-card img {
  max-width: 110px; max-height: 44px;
  object-fit: contain; filter: grayscale(100%);
  opacity: .65; transition: filter .2s, opacity .2s;
}
.ref-logo-card:hover img { filter: grayscale(0%); opacity: 1; }
.ref-logo-fallback {
  display: flex;
  font-size: .82rem; font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.trust-section--ref {
  margin-top: 0;
  border-top: 1px solid #e2e8f0;
}

.ref-branchen-section { background: #fff; }
.ref-branchen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.ref-branche-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.ref-branche-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.ref-branche-icon {
  width: 52px; height: 52px;
  background: #dbeafe; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #1e40af;
  margin-bottom: 1.25rem;
}
.ref-branche-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.ref-branche-card p { font-size: .9rem; color: var(--text-secondary); margin: 0; }

@media (max-width: 1024px) {
  .ref-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .ref-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-branchen-grid { grid-template-columns: 1fr; gap: .75rem; }
  .ref-branche-card { padding: 1rem 1.25rem; flex-direction: row; align-items: flex-start; gap: 1rem; }
  .ref-branche-icon { flex-shrink: 0; }
  .ref-logos-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1.5rem; }
  .ref-logos-grid .ref-logo-card { padding: .75rem .6rem; min-height: 56px; }
  .ref-logos-grid .ref-logo-fallback { font-size: .72rem; }
  .ref-logos-grid .ref-logo-card:nth-child(n+9) { display: none; }
  .ref-logos-more { display: block; }
}
.ref-logos-more {
  display: none;
  text-align: center;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =========================================
   MICROSOFT PARTNER BANNER
   ========================================= */
.ms-partner-section {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.75rem 0;
}
.ms-partner-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.ms-partner-headline {
  display: flex; align-items: center; gap: .85rem;
  flex-shrink: 0;
}
.ms-partner-label {
  display: block;
  font-size: 1rem; font-weight: 800;
  color: #111; letter-spacing: -.01em;
  line-height: 1.1;
}
.ms-partner-divider {
  width: 1px; height: 44px;
  background: #e2e8f0; flex-shrink: 0;
}
.ms-partner-badges {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap; flex: 1;
}
.ms-badge {
  display: flex; align-items: center; gap: .75rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: .65rem 1.1rem;
  flex: 1; min-width: 200px;
  transition: border-color .2s, box-shadow .2s;
}
.ms-badge:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(59,130,246,.1);
}
.ms-badge-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: #dbeafe; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #1e40af;
}
.ms-badge-text strong {
  display: block; font-size: .88rem;
  font-weight: 700; color: #111; line-height: 1.2;
}
.ms-badge-text span {
  font-size: .75rem; color: #6b7280;
}

@media (max-width: 768px) {
  .ms-partner-divider { display: none; }
  .ms-partner-inner { flex-direction: column; align-items: center; gap: 1rem; }
  .ms-partner-headline { width: 100%; justify-content: center; }
  .ms-partner-badges { width: 100%; flex-direction: column; }
  .ms-badge { min-width: 0; width: 100%; flex: none; }
}

/* =========================================
   MANAGED SERVICES SPOTLIGHT
========================================= */
.ms-spotlight {
  background: linear-gradient(160deg, #031237 0%, #0f2460 60%, #1a3580 100%);
  padding: 4rem 0;
  color: #fff;
}
.ms-spotlight-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.ms-spotlight-header {
  text-align: center;
  max-width: 640px;
}
.ms-spotlight-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: .5rem 0 .75rem;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.ms-spotlight-header p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.ms-spotlight-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}
.ms-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: background .2s, border-color .2s;
}
.ms-pillar:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.ms-pillar-icon {
  width: 48px; height: 48px;
  background: rgba(99,150,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  margin-bottom: 1rem;
}
.ms-pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
}
.ms-pillar p {
  font-size: .875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.ms-spotlight-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ms-spotlight-link {
  color: #93c5fd;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.ms-spotlight-link:hover { color: #fff; }

@media (max-width: 1024px) {
  .ms-spotlight-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ms-spotlight-pillars { grid-template-columns: 1fr; }
  .ms-spotlight-header h2 { font-size: 1.6rem; }
}

/* =========================================
   SERVICE DETAIL PAGES
   ========================================= */
.service-content-section { background: #f8fafc; }
.service-content-section--nis2 {
  background:
    radial-gradient(ellipse at 10% 60%, rgba(168, 230, 200, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(105, 115, 181, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 75%, rgba(41, 67, 149, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 55% 85%, rgba(168, 230, 200, 0.3) 0%, transparent 48%),
    radial-gradient(ellipse at 30% 15%, rgba(180, 220, 210, 0.4) 0%, transparent 50%),
    #eef2f8;
  padding: 0;
}
.service-content-section--nis2 .nis2-content-inner { background: transparent; }
.service-partner-section { padding-top: 0; }
.service-partner-section .is-partner-badges {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.service-content-inner {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start;
}
/* NIS2 – mesh gradient background */
.nis2-content-inner {
  position: relative;
  display: block;
  border-radius: 0;
  padding: 2rem;
  overflow: visible;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(168, 230, 200, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(105, 115, 181, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 75%, rgba(41, 67, 149, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 55% 85%, rgba(168, 230, 200, 0.3) 0%, transparent 48%),
    radial-gradient(ellipse at 30% 15%, rgba(180, 220, 210, 0.4) 0%, transparent 50%),
    #eef2f8;
}
.nis2-content-inner > * {
  position: relative;
  z-index: 1;
}
.service-sidebar {
  display: flex; flex-direction: column; gap: 1.5rem;
  position: sticky; top: 100px;
}
.service-sidebar .sidebar-card {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  border: 1px solid #e2e8f0;
  transition: box-shadow .2s, transform .2s;
}
.service-sidebar .sidebar-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

/* Service CTA Banner */
.service-cta-banner {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(119,132,186,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(7,69,148,.5) 0%, transparent 48%),
    linear-gradient(135deg, #051a3e 0%, #0a2156 50%, #06133a 100%);
  padding: 5rem 0;
  overflow: hidden;
}
.service-cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
}
.service-cta-text .eyebrow { margin-bottom: 1rem; }
.service-cta-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff; line-height: 1.2; margin-bottom: 1.25rem;
}
.service-cta-highlight { color: #7984ba; }
.service-cta-text p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 520px; margin-bottom: 1.75rem;
}
.service-cta-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.service-cta-list li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.service-cta-list li svg { color: #7984ba; flex-shrink: 0; }

.service-cta-actions {
  display: flex; flex-direction: column; gap: 1rem;
  min-width: 280px;
}
.service-cta-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, #074594, #1d4ed8);
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 1rem 1.75rem; border-radius: 12px; border: none;
  cursor: pointer; text-align: center;
  box-shadow: 0 6px 24px rgba(7,69,148,.5), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .2s, box-shadow .2s;
}
.service-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(7,69,148,.65), inset 0 1px 0 rgba(255,255,255,.15);
}
.service-cta-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.service-cta-btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}

@media (max-width: 1024px) {
  .service-content-inner { grid-template-columns: 1fr; }
  .service-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .service-cta-actions { flex-direction: column; }
}

/* =========================================
   LEGAL PAGES (Datenschutz, Impressum)
   ========================================= */
.legal-section { background: #f8fafc; }
.legal-content {
  max-width: 780px; margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem 3.5rem;
}
.legal-content h2 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 2.25rem 0 .65rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p {
  font-size: .95rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: .85rem;
}
.legal-content ul {
  padding-left: 1.4rem; margin-bottom: .85rem;
}
.legal-content li {
  font-size: .95rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: .3rem;
}
.legal-content a { color: var(--cta-primary); word-break: break-all; }
.legal-stand { font-size: .8rem; color: var(--text-muted); margin-bottom: 2rem; }

@media (max-width: 640px) {
  .legal-content { padding: 2rem 1.5rem; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 160% 120% at -20% 120%, rgba(110,190,160,.22) 0%, transparent 55%),
    radial-gradient(ellipse 150% 110% at 120% -20%, rgba(110,170,200,.20) 0%, transparent 55%),
    radial-gradient(ellipse 180% 140% at -10%  -10%, rgba(120,130,190,.18) 0%, transparent 60%),
    radial-gradient(ellipse 170% 130% at 110% 110%, rgba(80,110,170,.18)  0%, transparent 60%),
    #0d1b3e;
  color: #fff;
}
.eyebrow--light {
  color: #bfdbfe !important;
  background: rgba(255,255,255,.1) !important;
}

.contact-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem; margin-bottom: 5rem;
}
.contact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.contact-card h3 { color: #fff; font-size: 1rem; margin: 0; }
.contact-card p  { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: .5rem;
}
.contact-card-link {
  color: #60a5fa; font-weight: 600; font-size: .95rem;
  margin-top: .25rem;
}
.contact-card-link:hover { opacity: .8; }
.contact-card-sub { font-size: .8rem; color: rgba(255,255,255,.45); }

.contact-bottom {
  display: grid; grid-template-columns: 1fr .85fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,23,42,.25);
}

/* ── Left panel: white form ── */
.contact-form-wrap {
  background: #fff;
  padding: 2.75rem;
}
.contact-form-wrap h3 {
  color: #0F172A; margin-bottom: .35rem;
  font-size: 1.4rem; font-weight: 700;
}
.contact-form-sub { color: #64748B; font-size: .9rem; margin-bottom: 1.75rem; }
.contact-form-sub strong { color: #0F172A; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; color: #374151; font-weight: 500; }
.form-group label span { color: var(--cta-primary); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  color: #0F172A;
  padding: .65rem .9rem;
  font-size: .9rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #94A3B8; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cta-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
  background: #fff;
}
.contact-form select { cursor: pointer; }
.contact-form select option { background: #fff; color: #0F172A; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .5rem; }
/* Honeypot – visually hidden, bots fill it, humans skip it */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.cf-success { text-align: center; padding: 2.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.cf-success h3 { margin: 0; font-size: 1.3rem; color: var(--text-primary); }
.cf-success p  { margin: 0; color: var(--text-secondary); }
.cf-error { color: #ef4444; font-size: .85rem; margin-bottom: .5rem; }
.form-legal { font-size: .78rem; color: #94A3B8; text-align: center; margin: 0; }
.form-legal a { color: #64748B; text-decoration: underline; }

/* ── Right panel: blue gradient ── */
.contact-extra {
  padding: 2.75rem;
  background: linear-gradient(160deg, #0f2044 0%, #0a1628 100%);
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  overflow: hidden;
}
.contact-extra::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(255,255,255,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 0%, rgba(96,165,250,.18) 0%, transparent 45%);
  pointer-events: none;
}
.contact-extra > * { position: relative; z-index: 1; }
.contact-extra h3 { color: #fff; margin-bottom: 1.5rem; font-size: 1.15rem; font-weight: 700; }
.contact-extra-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-extra-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-extra-item .contact-card-icon {
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
}
.contact-extra-item > div { display: flex; flex-direction: column; gap: .2rem; }
.contact-extra-item strong { color: #fff; font-size: .95rem; font-weight: 600; }
.contact-extra-item span  { color: rgba(255,255,255,.72); font-size: .82rem; }
.contact-extra-btn {
  display: inline-block; align-self: flex-start; margin-top: .5rem;
  background: rgba(255,255,255,.18);
  color: #fff; border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  padding: .38rem 1rem; font-size: .8rem; font-weight: 600;
  white-space: nowrap;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.contact-extra-btn:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.5); }
.contact-extra-btn--whatsapp { background: #25d366; border-color: #25d366; color: #fff; text-decoration: none; }
.contact-extra-btn--whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; }
.contact-card-icon--whatsapp { background: #25d366; color: #fff; }

/* ── Rückruf-Panel ─────────────────────────────────────── */
.rueckruf-panel {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), opacity .28s ease;
  grid-column: 1 / -1;
}
.rueckruf-panel.is-open { max-height: 600px; opacity: 1; }
.rueckruf-form {
  margin-top: .75rem;
  padding: 1.25rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: .85rem;
}
.rueckruf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.rueckruf-group { display: flex; flex-direction: column; gap: .3rem; }
.rueckruf-group--full { grid-column: 1 / -1; }
.rueckruf-group label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; }
.rueckruf-group input,
.rueckruf-group select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #fff;
  font-size: .85rem;
  padding: .5rem .75rem;
  width: 100%;
  transition: border-color .2s;
  color-scheme: dark;
}
.rueckruf-group input::placeholder { color: rgba(255,255,255,.35); }
.rueckruf-group input:focus,
.rueckruf-group select:focus { outline: none; border-color: rgba(37,99,235,.7); }
.rueckruf-group select option { background: #0f172a; }
.rueckruf-submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1.1rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none; border-radius: 8px;
  color: #fff; font-size: .82rem; font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.rueckruf-submit:hover { opacity: .88; transform: translateY(-1px); }
.rueckruf-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.rueckruf-success {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 10px;
  margin-top: .75rem;
}
.rueckruf-success strong { display: block; color: #fff; font-size: .9rem; }
.rueckruf-success span  { font-size: .8rem; color: rgba(255,255,255,.65); }
@media (max-width: 600px) {
  .rueckruf-row { grid-template-columns: 1fr; }
}

.contact-extra-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.18);
  margin: 1.5rem 0;
}

.contact-social h4 { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: .85rem; }
.contact-social-icons { display: flex; gap: .65rem; }
.contact-social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.contact-social-icon:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.45); }

.contact-hours h4   { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: .6rem; }
.contact-hours table { border-collapse: collapse; width: 100%; }
.contact-hours td {
  padding: .3rem 0; font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.contact-hours td:last-child { text-align: right; color: rgba(255,255,255,.95); font-weight: 600; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-active) 100%);
  color: var(--text-inverse);
  text-align: center; padding: 5rem 0;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner .button-primary,
.cta-banner .btn-primary {
  background: white; color: var(--cta-primary);
  box-shadow: var(--shadow-md);
}
.cta-banner .button-primary:hover,
.cta-banner .btn-primary:hover { background: #f0f4ff; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(7,69,148,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 80%, rgba(119,132,186,.2) 0%, transparent 45%),
    #0a1628;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo img { height: 52px; width: auto; }
.footer-brand p {
  font-size: .88rem; margin-top: 1rem;
  color: rgba(255,255,255,.5);
  max-width: 260px; line-height: 1.6;
}
.footer-col h4 {
  color: #fff; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; opacity: 1; }
.footer-downloads-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: .9rem;
  transition: color .2s;
}
.footer-downloads-link:hover { color: rgba(255,255,255,.75); }
.footer-bottom {
  padding: 1.25rem 0 5.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.footer-social {
  display: flex; align-items: center; gap: .6rem;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-social a:hover {
  color: #60a5fa;
}

/* =========================================
   PAGE / SINGLE / 404
   ========================================= */
.page-header {
  background: var(--bg-tertiary);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-primary);
}
.entry-content {
  max-width: 800px; margin: 4rem auto; padding: 0 1.5rem;
}
.entry-content h2 { margin: 2rem 0 .75rem; }
.entry-content h3 { margin: 1.5rem 0 .5rem; }
.entry-content p  { margin-bottom: 1.25rem; color: var(--text-muted); }
.entry-content ul,
.entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: .4rem; color: var(--text-muted); }
@media (max-width: 640px) {
  .entry-content { padding-left: 0; padding-right: 0; }
  .nis2-content-inner { padding: 1rem 0; }
}

/* =========================================
   404 PAGE
   ========================================= */
.e404-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #060e1f 0%, #0a1628 50%, #071022 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 2rem;
}

/* Stars */
.e404-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 72%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 42% 9%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 85%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 67% 32%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 91% 15%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 7%  55%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 42%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 90%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 95%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 78%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 38%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 42%, rgba(255,255,255,.5) 0%, transparent 100%);
}

/* Floating blur orb */
.e404-orb {
  position: absolute; top: 12%; right: 8%;
  width: 320px; height: 180px;
  background: rgba(96,165,250,.18);
  filter: blur(60px);
  border-radius: 50%;
  animation: e404-float 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes e404-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-18px) translateX(10px); }
  66%       { transform: translateY(10px) translateX(-8px); }
}

/* Content */
.e404-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 600px;
}
.e404-number {
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #93c5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 .25rem; letter-spacing: -.02em;
}
.e404-title {
  font-size: clamp(22px, 4vw, 32px); font-weight: 700;
  color: #fff; margin: 0 0 1rem;
}
.e404-sub {
  font-size: 1rem; color: rgba(255,255,255,.55);
  line-height: 1.65; margin: 0 0 2.5rem;
}

/* Buttons */
.e404-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.e404-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .75rem 1.5rem; border-radius: 10px;
  font-family: inherit; font-size: .95rem; font-weight: 600;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .2s;
}
.e404-btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,99,235,.5);
}
.e404-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.6); }
.e404-btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
}
.e404-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Divider */
.e404-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 0 0 1.5rem; }

/* Pills */
.e404-explore-label { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0 0 .85rem; }
.e404-pills { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.e404-pill {
  padding: .4rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65); font-size: .82rem;
  font-family: inherit; cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.e404-pill:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); }

/* Brand */
.e404-brand { display: flex; align-items: center; justify-content: center; gap: .5rem; color: rgba(255,255,255,.3); font-size: .8rem; }
.e404-brand img { opacity: .4; height: 48px !important; width: auto !important; }
.e404-brand strong { color: rgba(255,255,255,.45); }

/* Hide header/footer on 404 */
.error404 .site-header,
.error404 .site-footer { display: none; }
.error404 body,
.error404 #page { background: transparent; }

.not-found { text-align: center; padding: 8rem 1.5rem; }
.not-found h1 {
  font-size: 6rem; color: var(--border-primary);
  font-weight: 900; line-height: 1;
}
.not-found h2 { margin-bottom: 1rem; }
.not-found p  { color: var(--text-muted); margin-bottom: 2rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-padding: 72px; }

  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
  .hero-title    { font-size: 52px; }
  .section-title { font-size: 36px; }

  .hero-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image  { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta-soforthilfe { display: none; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-cards  { grid-template-columns: repeat(2, 1fr); }
  .trust-ticker   { gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-padding: 48px; }

  body   { font-size: 15px; }
  h1     { font-size: 36px; line-height: 1.15; }
  h2     { font-size: 28px; line-height: 1.2; }
  h3     { font-size: 21px; }
  p      { font-size: 15px; }
  .hero-title    { font-size: 38px; line-height: 1.1; }
  .hero-subtitle { font-size: 16px; }
  .section-title { font-size: 28px; }
  .card-title    { font-size: 19px; }

  .main-nav { display: none; }
  .nav-cta-soforthilfe { display: none; }
  .hero-badge { font-size: .7rem; padding: .3rem .75rem; margin-bottom: .75rem; }
  .hero-badge--desktop { display: none; }
  .hero-badge--mobile { display: inline; }
  .site-logo img { height: 40px; }
  .main-nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg-secondary);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-primary);
    box-shadow: var(--shadow-md);
    z-index: 50;
  }
  .main-nav.is-open a { padding: .65rem 0; font-size: 1rem; }
  /* .menu-toggle display handled in FULLSCREEN MOBILE MENU section */
  .nav-cta { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; }

  .card, .hero-panel, .stat-box { padding: 20px; }
  .button-primary, .button-outline,
  .button-ghost, .btn { min-height: 44px; padding: 0 16px; }

  .trust-ticker { gap: 1.5rem; }
  .trust-ticker-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  :root { --section-padding: 40px; }

  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  h3 { font-size: 19px; }
  .hero-title    { font-size: 32px; line-height: 1.1; }
  .hero-subtitle { font-size: 15px; }
  .section-title { font-size: 26px; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .cta-primary,
  .hero-actions .cta-secondary,
  .hero-actions .button-primary,
  .hero-actions .button-outline { width: 100%; justify-content: center; }

  .contact-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .about-image { transform: none; filter: none; }
}

@media (max-width: 480px) {
  :root { --section-padding: 32px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn, .button-primary,
  .button-outline { width: 100%; justify-content: center; }
  .trust-ticker { gap: 1.25rem; }
}

/* =========================================
   KONTAKT MODAL
   ========================================= */
.is-modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(5,15,35,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: modal-fade-in .22s ease;
}
.is-modal-overlay[hidden] { display: none; }
@keyframes modal-fade-in { from { opacity:0; } to { opacity:1; } }

/* Popup – split layout */
.is-modal-popup {
  display: flex;
  width: 100%; max-width: 860px;
  max-height: 92vh;
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  overflow: clip;
  animation: modal-slide-up .3s cubic-bezier(.34,1.35,.64,1);
}
@keyframes modal-slide-up {
  from { transform: translateY(28px) scale(.97); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}

/* ── Left blue panel ── */
.is-modal-left {
  width: 340px; flex-shrink: 0;
  background: linear-gradient(160deg, rgba(15,40,90,.45) 0%, rgba(5,15,40,.55) 100%);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  border-right: 1px solid rgba(100,180,255,.25);
  box-shadow:
    inset 0 0 0 1px rgba(100,180,255,.12),
    inset -1px 0 20px rgba(30,80,180,.15);
  color: #fff;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  overflow-y: auto;
  position: relative;
}
.is-modal-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,.18) 0%, rgba(15,40,100,.08) 60%, transparent 100%);
  pointer-events: none;
}
.is-modal-left__title {
  font-size: 1.9rem !important; font-weight: 800 !important;
  line-height: 1.15 !important; color: #fff !important;
  margin: 0 0 .75rem !important;
}
.is-modal-left__sub {
  font-size: .88rem; color: rgba(255,255,255,.75);
  line-height: 1.55; margin: 0 0 2rem;
}

/* Contact items */
.is-modal-contacts { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.is-modal-contact-item { display: flex; align-items: flex-start; gap: .85rem; }
.is-modal-contact-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.is-modal-contact-type { display: block; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.is-modal-contact-val { display: block; font-size: .85rem; color: #fff; text-decoration: none; line-height: 1.4; }
.is-modal-contact-val:hover { text-decoration: underline; }

/* WhatsApp row (above contact list) */
.is-modal-whatsapp {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem .9rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.is-modal-whatsapp:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.is-modal-whatsapp__icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.is-modal-whatsapp > div { flex: 1; min-width: 0; }
.is-modal-whatsapp__arrow { flex-shrink: 0; color: rgba(255,255,255,.5); transition: transform .2s; }
.is-modal-whatsapp:hover .is-modal-whatsapp__arrow { transform: translateX(3px); color: rgba(255,255,255,.85); }

/* Divider */
.is-modal-divider { border: none; border-top: 1px solid rgba(255,255,255,.2); margin: 0 0 1.5rem; }

/* Opening hours */
.is-modal-hours__title { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.55); margin: 0 0 .75rem; }
.is-modal-hours__table { width: 100%; border-collapse: collapse; font-size: .83rem; color: rgba(255,255,255,.85); }
.is-modal-hours__table td { padding: 3px 0; }
.is-modal-hours__table td:last-child { text-align: right; }
.is-modal-hours__table strong { color: #fff; }

/* ── Right white panel ── */
.is-modal-right {
  flex: 1; min-width: 0;
  background: #fff;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: #e2e8f0 transparent;
}

/* Close button */
.is-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #64748b;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.is-modal-close:hover { border-color: #94a3b8; color: #0f172a; background: #f8fafc; }

/* Form grid */
.is-modal-form { display: flex; flex-direction: column; gap: 0; }
.is-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.is-modal-field--full { grid-column: 1 / -1; }

.is-modal-field { display: flex; flex-direction: column; gap: 5px; }
.is-modal-field label {
  font-size: .8rem; font-weight: 600;
  color: #374151;
}
.is-modal-req { color: var(--cta-primary); }

.is-modal-field input[type="text"],
.is-modal-field input[type="email"],
.is-modal-field input[type="tel"],
.is-modal-field select,
.is-modal-field textarea {
  width: 100%; padding: 10px 13px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  color: #0f172a; font-family: inherit; font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none; box-sizing: border-box;
}
.is-modal-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.is-modal-field textarea { resize: vertical; }
.is-modal-field input:focus,
.is-modal-field select:focus,
.is-modal-field textarea:focus {
  border-color: var(--cta-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: #fff;
}
.is-modal-field input::placeholder,
.is-modal-field textarea::placeholder { color: #94a3b8; }

/* Error */
.is-modal-error {
  padding: 10px 14px; margin-bottom: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 9px;
  color: #dc2626; font-size: .875rem;
}
.is-modal-error[hidden] { display: none; }

/* Submit */
.is-modal-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 24px;
  background: var(--cta-primary); border: none; border-radius: 12px;
  color: #fff; font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: .75rem;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.is-modal-submit:hover:not(:disabled) { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.45); }
.is-modal-submit:disabled { opacity: .55; cursor: not-allowed; }
.is-modal-submit__spinner[hidden],
.is-modal-submit__arrow[hidden] { display: none; }

@keyframes is-modal-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.is-modal-spin { animation: is-modal-spin .75s linear infinite; }

/* Privacy */
.is-modal-privacy { font-size: .75rem; color: #94a3b8; text-align: center; margin: 0; }
.is-modal-privacy a { color: #64748b; text-decoration: underline; }

/* Success state */
.is-modal-success[hidden] { display: none; }
.is-modal-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 3rem 1rem; gap: 1rem;
}
.is-modal-success__icon {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  background: #f0fdf4; border-radius: 50%;
  color: #16a34a;
  animation: modal-pop .45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modal-pop { from { transform: scale(.4); opacity:0; } to { transform: scale(1); opacity:1; } }
.is-modal-success__title {
  font-size: 1.5rem !important; font-weight: 700 !important;
  color: #0f172a !important; margin: 0 !important;
}
.is-modal-success__msg { font-size: .9375rem; color: #64748b; max-width: 300px; line-height: 1.55; margin: 0; }
.is-modal-close-success {
  margin-top: .5rem; padding: 11px 28px;
  background: var(--cta-primary); border: none;
  border-radius: 10px; color: #fff;
  font-family: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.is-modal-close-success:hover { background: var(--cta-hover); }

/* ── Modal Responsive ── */
@media (max-width: 700px) {
  .is-modal-overlay { padding: 8px; align-items: flex-end; }
  .is-modal-popup { flex-direction: column; max-height: 96vh; border-radius: 20px 20px 0 0; position: relative; }
  .is-modal-right { position: static; }
  .is-modal-left { width: 100%; padding: 1.25rem 1.25rem 1rem; }
  .is-modal-left__title { font-size: 1.3rem !important; margin-bottom: .35rem !important; }
  .is-modal-left__sub { font-size: .8rem; margin-bottom: .75rem; }
  .is-modal-contacts { flex-direction: row; flex-wrap: wrap; gap: .5rem; margin-bottom: .5rem; }
  .is-modal-contact-item { flex: 1 1 calc(50% - .5rem); min-width: 120px; }
  .is-modal-contact-icon { width: 28px; height: 28px; }
  .is-modal-contact-type { font-size: .63rem; }
  .is-modal-contact-val { font-size: .76rem; }
  .is-modal-divider, .is-modal-hours { display: none; }
  .is-modal-right { padding: 1.25rem; overflow-y: auto; }
  .is-modal-grid { grid-template-columns: 1fr; gap: .75rem; }
  .is-modal-field--full { grid-column: 1; }
}
@media (max-width: 400px) {
  .is-modal-left__title { font-size: 1.15rem !important; }
  .is-modal-contacts { display: none; }
  .is-modal-left { padding: 1rem; }
  .is-modal-right { padding: 1rem; }
}


/* =============================================
   FULLSCREEN MOBILE MENU
   ============================================= */

/* ── Burger Icon Animation ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 100001;
  position: relative;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}

.burger-icon {
  display: flex; flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
}
.burger-line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #074594;
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease, width .3s ease;
}
.burger-line--1 { width: 24px; }
.burger-line--2 { width: 18px; }
.burger-line--3 { width: 24px; }

/* Open state → X */
.menu-is-open .burger-line--1 {
  transform: translateY(8px) rotate(45deg);
  width: 24px;
}
.menu-is-open .burger-line--2 {
  opacity: 0; transform: scaleX(0);
}
.menu-is-open .burger-line--3 {
  transform: translateY(-8px) rotate(-45deg);
  width: 24px;
}
/* Keep burger visible and white when menu open */
.menu-is-open .burger-line {
  background: #fff;
}

/* ── Fullscreen Overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: linear-gradient(160deg, #070f1c 0%, #0d1f3c 60%, #070f1c 100%);
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .35s cubic-bezier(.4,0,.2,1), visibility .35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(37,99,235,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(29,78,216,.08) 0%, transparent 60%);
  pointer-events: none;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex; flex-direction: column;
  min-height: 100%;
  padding: 0 1.5rem 2rem;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

/* ── Top bar ── */
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu__logo img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.mobile-menu__close {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mobile-menu__close:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ── Nav ── */
.mobile-menu__nav {
  flex: 1;
  padding: 1.5rem 0;
  display: flex; flex-direction: column;
  gap: 0;
}

/* Big nav links */
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  letter-spacing: -.02em;
  line-height: 1;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; text-align: left; width: 100%;
  font-family: var(--font-body);
  transition: color .2s, transform .2s;
  /* stagger animation */
  opacity: 0;
  transform: translateY(18px);
}
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover,
.mobile-menu__link:focus-visible { color: #fff; transform: translateX(6px); outline: none; }

.mobile-menu.is-open .mobile-menu__link {
  animation: menu-item-in .45s cubic-bezier(.22,1,.36,1) both;
}
/* Stagger delays */
.mobile-menu__nav > *:nth-child(1) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(1).mobile-menu__link { animation-delay: .05s; }
.mobile-menu__nav > *:nth-child(2) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(2).mobile-menu__link { animation-delay: .1s; }
.mobile-menu__nav > *:nth-child(3) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(3).mobile-menu__link { animation-delay: .15s; }
.mobile-menu__nav > *:nth-child(4) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(4).mobile-menu__link { animation-delay: .2s; }
.mobile-menu__nav > *:nth-child(5) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(5).mobile-menu__link { animation-delay: .25s; }
.mobile-menu__nav > *:nth-child(6) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(6).mobile-menu__link { animation-delay: .3s; }
.mobile-menu__nav > *:nth-child(7) .mobile-menu__link,
.mobile-menu__nav > *:nth-child(7).mobile-menu__link { animation-delay: .35s; }

@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Accordion (Leistungen) ── */
.mobile-menu__accordion { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu__accordion .mobile-menu__link { border-bottom: none; }

.mobile-menu__chevron {
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  opacity: .5;
}
.mobile-menu__accordion-btn[aria-expanded="true"] .mobile-menu__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-menu__accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu__accordion-body.is-open {
  max-height: 600px;
}

.mobile-menu__services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .75rem 0 .5rem;
  width: 100%;
  box-sizing: border-box;
}
.mobile-menu__service-item {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: .5rem .75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1.3;
  min-width: 0;
  box-sizing: border-box;
  word-break: break-word;
}
.mobile-menu__service-item:hover {
  background: rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.35);
  color: rgba(255,255,255,.9);
}
.mobile-menu__all-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600;
  color: rgba(37,99,235,.9);
  text-decoration: none;
  padding: .75rem 0 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .2s;
}
.mobile-menu__all-link:hover { color: #60a5fa; }

.mobile-menu__service-item--featured {
  border-color: rgba(37,99,235,.3);
  background: rgba(37,99,235,.08);
  color: rgba(255,255,255,.8);
  display: flex; flex-direction: column; align-items: flex-start; gap: .3rem;
}
.mobile-menu__service-badge {
  font-size: .62rem; font-weight: 700; letter-spacing: .03em;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; border-radius: 4px;
  padding: .15rem .4rem;
  flex-shrink: 0;
}
.mobile-menu__accordion-divider {
  border-top: 1px solid rgba(255,255,255,.07);
  margin: .5rem 0;
}
.mobile-menu__service-promo {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .75rem;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.mobile-menu__service-promo:hover {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.3);
}
.mobile-menu__service-promo-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.2);
  border-radius: 8px;
  color: #60a5fa;
}
.mobile-menu__service-promo strong {
  display: block; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.85);
}
.mobile-menu__service-promo em {
  display: block; font-size: .72rem; font-style: normal;
  color: rgba(255,255,255,.4);
  margin-top: .1rem;
}

/* ── Bottom CTAs ── */
.mobile-menu__bottom {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu.is-open .mobile-menu__bottom {
  animation: menu-item-in .45s cubic-bezier(.22,1,.36,1) .4s both;
}

.mobile-menu__cta-primary {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  color: #fff; border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  letter-spacing: .02em;
  min-height: 56px; padding: 0 1.5rem;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,99,235,.4), 0 1px 4px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.mobile-menu__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.5);
}

.mobile-menu__cta-phone {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 14px;
  font-size: 1rem; font-weight: 600;
  min-height: 52px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.mobile-menu__cta-phone:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.mobile-menu__social {
  display: flex; justify-content: center; gap: 1.25rem;
  padding-top: .5rem;
}
.mobile-menu__social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.mobile-menu__social a:hover {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* Only show mobile menu on mobile */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ══════════════════════════════════════════
   NIS2 FLOATING ACTION BUTTON
══════════════════════════════════════════ */
.nis2-fab {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  height: 56px;
  background: #ea580c;
  color: #fff;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(234,88,12,.45), 0 2px 8px rgba(0,0,0,.18);
  transition: background .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
}
.nis2-fab:hover {
  background: #c2410c;
  box-shadow: 0 6px 28px rgba(234,88,12,.55), 0 3px 12px rgba(0,0,0,.22);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.nis2-fab:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(37,99,235,.35);
}
.nis2-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nis2-fab__label {
  line-height: 1;
}

/* Pulse animation on page load to draw attention */
@keyframes nis2-fab-pulse {
  0%   { box-shadow: 0 4px 20px rgba(234,88,12,.45), 0 0 0 0 rgba(234,88,12,.4); }
  70%  { box-shadow: 0 4px 20px rgba(234,88,12,.45), 0 0 0 12px rgba(234,88,12,0); }
  100% { box-shadow: 0 4px 20px rgba(234,88,12,.45), 0 0 0 0 rgba(234,88,12,0); }
}
.nis2-fab {
  animation: nis2-fab-pulse 2.5s ease-out 1.5s 2;
}

/* Collapse to icon-only on mobile */
@media (max-width: 480px) {
  .nis2-fab {
    padding: 0;
    width: 56px;
    border-radius: 50%;
    justify-content: center;
    bottom: 20px;
    right: 20px;
  }
  .nis2-fab__label { display: none; }
}

/* ══════════════════════════════════════════
   DOWNLOADS & KUNDENBEREICH
══════════════════════════════════════════ */

/* Notice bar */
.dl-notice-bar {
  background: rgba(37,99,235,.08);
  border-bottom: 1px solid rgba(37,99,235,.15);
  padding: .75rem 0;
  font-size: .875rem;
  color: var(--text-secondary);
}
.dl-notice-bar .container {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.dl-notice-bar svg { flex-shrink: 0; color: var(--cta-primary); }
.dl-notice-bar a { color: var(--cta-primary); font-weight: 500; }
.dl-notice-bar a:hover { text-decoration: underline; }

/* Section wrapper */
.dl-section { padding: 3.5rem 0 4rem; }

/* Category block */
.dl-category { margin-bottom: 5rem; }
.dl-category:last-of-type { margin-bottom: 0; }

.dl-category-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(37,99,235,.12);
}
.dl-category-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 .2rem;
}
.dl-category-header p {
  font-size: .875rem;
  color: var(--text-secondary);
  margin: 0;
}

.dl-category-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37,99,235,.1);
  color: var(--cta-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card grid */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Individual card */
.dl-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.dl-card:hover {
  box-shadow: 0 8px 28px rgba(37,99,235,.12), 0 2px 6px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.dl-card-top {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.dl-card-top h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 .25rem;
  line-height: 1.3;
}

/* Card icon variants */
.dl-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-card-icon--blue   { background: rgba(37,99,235,.1);  color: #2563eb; }
.dl-card-icon--indigo { background: rgba(99,102,241,.1); color: #6366f1; }
.dl-card-icon--red    { background: rgba(239,68,68,.1);  color: #ef4444; }
.dl-card-icon--orange { background: rgba(234,88,12,.1);  color: #ea580c; }
.dl-card-icon--teal   { background: rgba(20,184,166,.1); color: #14b8a6; }
.dl-card-icon--purple { background: rgba(168,85,247,.1); color: #a855f7; }
.dl-card-icon--green  { background: rgba(34,197,94,.1);  color: #22c55e; }

.dl-card p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Meta row */
.dl-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .875rem;
  font-size: .78rem;
  color: var(--text-muted, #94a3b8);
}
.dl-card-meta > span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* Badges */
.dl-badge {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(37,99,235,.1);
  color: var(--cta-primary);
}
.dl-badge--security { background: rgba(239,68,68,.1); color: #ef4444; }
.dl-badge--backup   { background: rgba(20,184,166,.1); color: #0d9488; }

.dl-badge-customer {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .15rem .6rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  background: rgba(234,88,12,.1);
  color: #ea580c;
}
.dl-badge-customer::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Download buttons */
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, color .18s, box-shadow .18s;
  align-self: flex-start;
  background: var(--cta-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
}
.dl-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  color: #fff;
}
.dl-btn--secondary {
  background: transparent;
  color: var(--cta-primary);
  border: 1.5px solid var(--cta-primary);
  box-shadow: none;
}
.dl-btn--secondary:hover {
  background: rgba(37,99,235,.06);
  box-shadow: none;
  color: #1d4ed8;
}

/* Contact CTA strip */
.dl-contact-cta {
  margin-top: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 2.25rem 2.5rem;
}
.dl-contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.dl-contact-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .4rem;
}
.dl-contact-cta p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin: 0;
  max-width: 480px;
}
.dl-contact-cta__actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Hero subtitle on downloads page */
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-top: .6rem;
  max-width: 560px;
}

@media (max-width: 768px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-contact-cta { padding: 1.75rem 1.25rem; }
  .dl-contact-cta__inner { flex-direction: column; align-items: flex-start; }
  .dl-contact-cta__actions { width: 100%; }
}

/* ══════════════════════════════════════════
   PARTNER BADGES  [is_partner_badges]
══════════════════════════════════════════ */
.is-partner-badges-fullwidth {
  width: 100%;
}
.is-partner-badges-fullwidth .is-partner-badges {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* Partner badges inside About section */
.about-partners {
  margin-top: 3rem;
}
.about-partners .is-partner-badges {
  border-radius: 12px;
}

/* Pill style */
.is-partner-badges--pill {
  background: var(--bg-primary, #F8FAFC);
  border-color: var(--border-color);
  padding-bottom: 2.25rem;
}
.is-partner-badges--pill .is-partner-badges__label {
  color: #1e3a8a;
  border-color: rgba(30,58,138,.15);
}
.is-partner-badges--pill .is-partner-badges__logos {
  gap: .75rem;
}

.is-partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(37,99,235,.15);
  transition: background .18s, border-color .18s, box-shadow .18s;
  min-height: 44px;
  min-width: 130px;
}
.is-partner-pill:hover {
  background: #f0f6ff;
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 4px 14px rgba(37,99,235,.12);
}

.is-partner-pill img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(18%) sepia(80%) saturate(700%) hue-rotate(200deg) brightness(95%);
  transition: filter .18s;
}
.is-partner-pill:hover img {
  filter: brightness(0) invert(14%) sepia(90%) saturate(900%) hue-rotate(207deg) brightness(85%);
}

.is-partner-pill__ms {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  color: #1e3a8a;
}
.is-partner-pill__ms svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: brightness(0) invert(18%) sepia(80%) saturate(800%) hue-rotate(204deg) brightness(90%);
}

@media (max-width: 640px) {
  .is-partner-badges--pill .is-partner-badges__logos { gap: .5rem; }
  .is-partner-pill { padding: .5rem 1rem; min-height: 38px; }
  .is-partner-pill img { height: 20px; }
}
.is-partner-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 14px;
  background: var(--bg-secondary, #f8fafc);
  border: 1px solid var(--border-color);
}
.is-partner-badges--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.is-partner-badges--transparent {
  background: transparent;
  border: none;
  padding: 1rem 0;
}

.is-partner-badges__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted, #94a3b8);
  white-space: nowrap;
  padding-bottom: .875rem;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  text-align: center;
}
.is-partner-badges--dark .is-partner-badges__label {
  color: rgba(255,255,255,.35);
}

.is-partner-badges__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  width: 100%;
}

/* Logo slot */
.is-partner-logo {
  display: flex;
  align-items: center;
  transition: opacity .2s;
}

/* Image logos – alle grau wie Label-Text */
.is-partner-logo img {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) opacity(.45);
  transition: filter .2s, opacity .2s;
}
.is-partner-logo:hover img {
  filter: grayscale(1) opacity(.7);
}

/* Microsoft SVG badge – ebenfalls grau */
.is-partner-logo__ms {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted, #94a3b8);
  opacity: .7;
  transition: opacity .2s;
}
.is-partner-logo__ms svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: grayscale(1) opacity(.5);
  transition: filter .2s;
}
.is-partner-logo:hover .is-partner-logo__ms { opacity: 1; }
.is-partner-logo:hover .is-partner-logo__ms svg { filter: grayscale(1) opacity(.8); }

/* Dark variant */
.is-partner-badges--dark .is-partner-logo img {
  filter: grayscale(1) brightness(2) opacity(.4);
}
.is-partner-badges--dark .is-partner-logo:hover img {
  filter: grayscale(1) brightness(2) opacity(.7);
}
.is-partner-badges--dark .is-partner-logo__ms {
  color: rgba(255,255,255,.4);
}

@media (max-width: 640px) {
  .is-partner-badges { padding: 1.25rem; }
  .is-partner-badges__logos { gap: .875rem 1.75rem; }
  .is-partner-logo img { height: 24px; }
}

/* =============================================
   KI KONTEXT – RETRO TERMINAL (C64 GREEN)
   ============================================= */
.ki-terminal-main {
  background: #050e05;
  min-height: 100vh;
  padding: 2rem 0 4rem;
}

.page-template-page-ki-kontext .site-header {
  background: #030f03;
  border-bottom: 1px solid rgba(0,255,80,.25);
  position: relative;
  overflow: visible;
}
.page-template-page-ki-kontext .nav-inner {
  position: relative;
  overflow: visible;
}
.page-template-page-ki-kontext .nav-inner::after,
.page-template-page-ki-kontext .site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,.18) 0px,
      rgba(0,0,0,.18) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,255,80,.015) 0px,
      rgba(0,255,80,.015) 1px,
      transparent 1px,
      transparent 4px
    );
  pointer-events: none;
  z-index: 10;
}
.page-template-page-ki-kontext .site-header img.site-logo,
.page-template-page-ki-kontext .site-header .site-logo img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(400%) hue-rotate(90deg) brightness(120%);
  position: relative; z-index: 11;
}
.page-template-page-ki-kontext .site-header a,
.page-template-page-ki-kontext .site-header .main-nav a,
.page-template-page-ki-kontext .site-header .main-nav__link,
.page-template-page-ki-kontext .site-header .site-logo {
  color: rgba(0,255,80,.8);
  position: relative; z-index: 11;
}
.page-template-page-ki-kontext .burger-line {
  background: #00ff50;
}
.page-template-page-ki-kontext .site-header a:hover,
.page-template-page-ki-kontext .site-header .main-nav a:hover,
.page-template-page-ki-kontext .site-header .main-nav__link:hover {
  color: #00ff50;
}
.page-template-page-ki-kontext .site-footer {
  background: #030f03;
  border-top: 1px solid rgba(0,255,80,.25);
  color: rgba(0,255,80,.7);
  position: relative;
  overflow: hidden;
}
.page-template-page-ki-kontext .site-footer a,
.page-template-page-ki-kontext .site-footer p,
.page-template-page-ki-kontext .site-footer * {
  color: rgba(0,255,80,.7);
  position: relative; z-index: 11;
}
.page-template-page-ki-kontext .site-footer a:hover { color: #00ff50; }
.page-template-page-ki-kontext .footer-logo img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(400%) hue-rotate(90deg) brightness(120%);
  position: relative; z-index: 11;
}
.page-template-page-ki-kontext .nav-cta {
  background: transparent;
  border-color: rgba(0,255,80,.6);
  color: rgba(0,255,80,.9);
  box-shadow: none;
}
.page-template-page-ki-kontext .nav-cta:hover {
  background: rgba(0,255,80,.1);
  border-color: #00ff50;
  color: #00ff50;
}
.page-template-page-ki-kontext .nav-cta-soforthilfe {
  border-color: rgba(0,255,80,.4);
  color: rgba(0,255,80,.7);
  background: transparent;
  box-shadow: none;
}
.page-template-page-ki-kontext .nav-cta-soforthilfe:hover {
  background: rgba(0,255,80,.08);
  border-color: rgba(0,255,80,.7);
  color: #00ff50;
}

/* Dropdown auf KI-Seite: Röhrenmonitor-Style */
.page-template-page-ki-kontext .main-nav__dropdown {
  background: #030f03;
  border: 1px solid rgba(0,255,80,.3);
  box-shadow: 0 0 20px rgba(0,255,80,.15), inset 0 0 40px rgba(0,0,0,.5);
  z-index: 200;
}
.page-template-page-ki-kontext .main-nav__dropdown-item {
  color: rgba(0,255,80,.75);
  font-family: 'Courier New', Courier, monospace;
  font-size: .8rem;
}
.page-template-page-ki-kontext .main-nav__dropdown-item:hover {
  background: rgba(0,255,80,.08);
  color: #00ff50;
}
.page-template-page-ki-kontext .main-nav__dropdown-item svg {
  color: rgba(0,255,80,.5);
}
.page-template-page-ki-kontext .main-nav__dropdown-footer {
  border-top-color: rgba(0,255,80,.2);
  background: rgba(0,255,80,.04);
  margin: .5rem -.5rem -.5rem;
  padding: .6rem .5rem;
  border-radius: 0 0 10px 10px;
}
.page-template-page-ki-kontext .main-nav__dropdown-all {
  color: rgba(0,255,80,.75);
  font-family: 'Courier New', Courier, monospace;
}
.page-template-page-ki-kontext .main-nav__dropdown-all:hover {
  color: #00ff50;
}

.ki-terminal-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  color: #00ff50;
}

.ki-term-art,
.ki-term-robot,
.ki-term-block {
  font-family: 'Courier New', Courier, monospace;
  font-size: .82rem;
  line-height: 1.5;
  color: #00ff50;
  background: transparent;
  white-space: pre;
  overflow-x: auto;
  margin: 0 0 .5rem;
  padding: 0;
  border: none;
  text-shadow: 0 0 8px rgba(0,255,80,.5);
}

.ki-term-robot {
  color: rgba(0,255,80,.55);
  font-size: .75rem;
  margin-bottom: 1.5rem;
}

.ki-term-body {
  margin-top: .5rem;
}

.ki-term-section {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,255,80,.15);
}

.ki-cursor {
  display: inline-block;
  background: #00ff50;
  color: #0a0a0a;
  animation: ki-blink .8s step-end infinite;
}

@keyframes ki-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@media (max-width: 640px) {
  .ki-term-art,
  .ki-term-robot,
  .ki-term-block { font-size: .65rem; }
  .ki-terminal-wrap { padding: 0 .75rem; }
  .ki-term-block { white-space: pre-wrap; word-break: break-word; }
  .ki-term-section { white-space: pre; overflow-x: auto; word-break: normal; }
}

/* =============================================
   DATEV BANNER
   ============================================= */
.datev-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(0,166,81,.28) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(0,91,150,.35) 0%, transparent 40%),
    linear-gradient(135deg, #003d6b 0%, #005533 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
/* dot grid overlay */
.datev-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  border-radius: inherit;
}
/* decorative glow circle */
.datev-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,166,81,.2) 0%, transparent 70%);
  pointer-events: none;
}
.datev-banner--link:hover {
  box-shadow: 0 10px 36px rgba(0,60,110,.45);
  transform: translateY(-2px);
  text-decoration: none;
}

.datev-banner__logo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: .6rem .9rem;
}
.datev-banner__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.datev-banner__content {
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 1;
}

.datev-banner__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: .35rem;
}

.datev-banner__text {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin: 0;
}
.datev-banner__text strong { color: #fff; }

.datev-banner__badges {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.datev-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
  color: rgba(255,255,255,.7);
}

.datev-badge svg {
  color: #6ee7b7;
}

.datev-badge span {
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,.8);
}

@media (max-width: 768px) {
  .datev-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .datev-banner__badges { width: 100%; justify-content: space-between; }
}

/* =========================================
   MANAGED SERVICES PAGE
========================================= */

/* Intro */
.msp-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.msp-intro-text h2 {
  font-size: 1.85rem; font-weight: 800;
  color: #0f172a; margin: .5rem 0 1.25rem;
  letter-spacing: -.03em; line-height: 1.25;
}
.msp-intro-text p { color: #475569; line-height: 1.75; margin-bottom: 1rem; }
/* ── Cost Compare Visual ──────────────────────────────── */
@keyframes msp-bar-rise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.msp-cost-compare {
  display: flex; align-items: center; gap: 1rem;
  align-self: center;
}
.msp-cc-card {
  flex: 1; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
}
.msp-cc-card--bad { border: 1.5px solid #fecaca; }
.msp-cc-card--good { border: 1.5px solid #bbf7d0; }
.msp-cc-header {
  display: flex; align-items: center; gap: .5rem;
  padding: 1rem 1.25rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
}
.msp-cc-card--bad .msp-cc-header { background: #fff1f2; color: #be123c; }
.msp-cc-card--good .msp-cc-header { background: #f0fdf4; color: #15803d; }
.msp-cc-icon {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
}
.msp-cc-icon--bad { background: #fecaca; color: #be123c; }
.msp-cc-icon--good { background: #bbf7d0; color: #15803d; }
.msp-cc-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 130px; padding: 1.25rem 1.25rem .5rem;
  background: #fff;
}
.msp-cc-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  height: var(--h); position: relative;
  transform-origin: bottom;
  animation: msp-bar-rise .6s cubic-bezier(.22,.61,.36,1) both;
}
.msp-cc-bar:nth-child(1) { animation-delay: .05s; }
.msp-cc-bar:nth-child(2) { animation-delay: .15s; }
.msp-cc-bar:nth-child(3) { animation-delay: .25s; }
.msp-cc-bar:nth-child(4) { animation-delay: .35s; }
.msp-cc-bar:nth-child(5) { animation-delay: .45s; }
.msp-cc-bar:nth-child(6) { animation-delay: .55s; }
.msp-cc-bar--bad  { background: linear-gradient(to top, #f87171, #fca5a5); }
.msp-cc-bar--good { background: linear-gradient(to top, #22c55e, #4ade80); }
.msp-cc-month {
  position: absolute; bottom: -1.3rem; left: 50%;
  transform: translateX(-50%);
  font-size: .58rem; color: #94a3b8; white-space: nowrap;
}
.msp-cc-spike {
  position: absolute; top: -1.6rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: .2rem;
  font-size: .58rem; font-weight: 700; color: #ef4444;
  white-space: nowrap;
  animation: msp-spike-pulse 1.8s ease-in-out infinite;
}
@keyframes msp-spike-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.msp-cc-footer {
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  font-size: .7rem; font-weight: 600;
  padding: .85rem 1.25rem 1rem;
  background: #fff;
  border-top: 1px solid;
}
.msp-cc-footer--bad { color: #ef4444; border-color: #fee2e2; }
.msp-cc-footer--good { color: #16a34a; border-color: #dcfce7; }
.msp-cc-vs {
  font-size: .78rem; font-weight: 800; color: #cbd5e1;
  flex-shrink: 0; text-transform: uppercase; letter-spacing: .06em;
}

/* Modules grid */
.msp-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.msp-module-card {
  background: #fff; border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  padding: 2rem 1.75rem;
  transition: box-shadow .2s, border-color .2s;
}
.msp-module-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  border-color: #c7d2fe;
}
.msp-module-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.msp-module-card h3 {
  font-size: 1.05rem; font-weight: 700; color: #0f172a;
  margin: 0 0 .6rem;
}
.msp-module-card p { font-size: .9rem; color: #475569; line-height: 1.65; margin-bottom: .85rem; }
.msp-module-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.msp-module-card ul li {
  font-size: .85rem; color: #475569;
  padding-left: 1.25rem; position: relative;
}
.msp-module-card ul li::before {
  content: "✓"; position: absolute; left: 0;
  color: #16a34a; font-weight: 700; font-size: .8rem;
}

/* Compare */
.msp-compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem; max-width: 900px; margin-inline: auto;
}
.msp-compare-col {
  border-radius: 16px; overflow: hidden;
  border: 1.5px solid #e2e8f0;
}
.msp-compare-col--new { border-color: #6366f1; }
.msp-compare-header {
  display: flex; align-items: center; gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: #f1f5f9;
}
.msp-compare-col--new .msp-compare-header { background: #031237; color: #fff; }
.msp-compare-col--new .msp-compare-header h3 { color: #fff; }
.msp-compare-header h3 { font-size: 1rem; font-weight: 700; margin: 0; color: #374151; }
.msp-compare-list {
  list-style: none; padding: 1.25rem 1.5rem;
  margin: 0; display: flex; flex-direction: column; gap: .75rem;
}
.msp-compare-list li {
  font-size: .9rem; line-height: 1.5;
  padding-left: 1.5rem; position: relative;
}
.msp-compare-list--bad li { color: #6b7280; }
.msp-compare-list--bad li::before {
  content: "✗"; position: absolute; left: 0;
  color: #ef4444; font-weight: 700;
}
.msp-compare-list--good li { color: #374151; }
.msp-compare-list--good li::before {
  content: "✓"; position: absolute; left: 0;
  color: #16a34a; font-weight: 700;
}

/* Audience */
.msp-audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.msp-audience-card {
  background: #fff; border-radius: 14px;
  border: 1.5px solid #e2e8f0; padding: 1.75rem 1.5rem;
  transition: box-shadow .2s;
}
.msp-audience-card:hover { box-shadow: 0 6px 24px rgba(15,23,42,.07); }
.msp-audience-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #e0e7ff; color: #3730a3;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.msp-audience-card h3 { font-size: .95rem; font-weight: 700; color: #0f172a; margin: 0 0 .5rem; }
.msp-audience-card p { font-size: .875rem; color: #475569; line-height: 1.65; margin: 0; }

/* Process */
.msp-process-steps {
  display: flex; align-items: flex-start;
  gap: 1.5rem; margin-top: 2.5rem;
  max-width: 960px; margin-inline: auto;
}
.msp-step {
  flex: 1; text-align: center;
}
.msp-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: #031237; color: #fff;
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.msp-step h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 .6rem; }
.msp-step p { font-size: .9rem; color: #475569; line-height: 1.65; margin: 0; }
.msp-step-arrow {
  color: #94a3b8; padding-top: 1rem; flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .msp-modules-grid { grid-template-columns: repeat(2, 1fr); }
  .msp-audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .msp-intro-inner { grid-template-columns: 1fr; }
  .msp-cost-compare { gap: .75rem; }
  .msp-modules-grid { grid-template-columns: 1fr; }
  .msp-compare-grid { grid-template-columns: 1fr; }
  .msp-audience-grid { grid-template-columns: 1fr 1fr; }
  .msp-process-steps { flex-direction: column; align-items: center; }
  .msp-step-arrow { transform: rotate(90deg); padding: 0; }
}
@media (max-width: 480px) {
  .msp-cost-compare { flex-direction: column; } .msp-cc-vs { display: none; }
  .msp-audience-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PASSWORT-MANAGER LANDING PAGE
========================================= */

/* Hero */
.pm-hero {
  background: linear-gradient(160deg, #031237 0%, #0f2460 55%, #1e3a8a 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.pm-hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: center;
}
.pm-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  align-self: flex-start; width: fit-content;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; padding: .35rem .9rem;
  font-size: .8rem; font-weight: 600; color: #93c5fd;
  margin-bottom: 1.25rem;
}
.pm-hero-text h1 {
  font-size: 2.6rem; font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -.04em;
  margin: 0 0 1rem;
}
.pm-hero-accent {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #38bdf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pm-hero-sub { color: #cbd5e1; font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.75rem; }
.pm-hero-price {
  display: flex; align-items: baseline; gap: .4rem;
  margin-bottom: 2rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: .85rem 1.25rem;
  width: fit-content;
}
.pm-price-from { color: #94a3b8; font-size: .9rem; }
.pm-price-num { color: #fff; font-size: 2rem; font-weight: 900; letter-spacing: -.03em; }
.pm-price-unit { color: #94a3b8; font-size: .85rem; }
.pm-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pm-hero-hint { font-size: .8rem; color: #64748b; margin: 0; }

/* Mockup */
.pm-mockup {
  background: #fff; border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  overflow: hidden; font-size: .875rem;
}
.pm-mockup-header {
  background: #f1f5f9; padding: .75rem 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.pm-mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.pm-mockup-title { font-size: .75rem; color: #94a3b8; margin-left: .5rem; font-weight: 500; }
.pm-mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.pm-mockup-section { display: flex; flex-direction: column; gap: .5rem; }
.pm-mockup-label { font-size: .75rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; }
.pm-mockup-row {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .75rem; background: #f8fafc;
  border-radius: 8px; border: 1px solid #e2e8f0;
}
.pm-mockup-row span:nth-child(2) { flex: 1; font-size: .82rem; color: #374151; font-weight: 500; }
.pm-mockup-stars { font-size: .75rem; color: #94a3b8; letter-spacing: .1em; }
.pm-mockup-badge {
  font-size: .7rem; background: #eff6ff; color: #1d4ed8;
  border-radius: 4px; padding: .15rem .45rem; font-weight: 600;
}
.pm-mockup-divider { height: 1px; background: #e2e8f0; }

/* Pain */
.pm-pain { background: #fff; padding: 4rem 0; }
.pm-pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.pm-pain-card {
  background: #fafafa; border: 1.5px solid #e2e8f0;
  border-radius: 14px; padding: 1.5rem;
  transition: border-color .2s;
}
.pm-pain-card:hover { border-color: #fca5a5; }
.pm-pain-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #fee2e2; color: #b91c1c;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem; flex-shrink: 0;
}
.pm-pain-card p { font-size: .9rem; color: #475569; line-height: 1.65; margin: 0; }
.pm-pain-foot {
  text-align: center; margin-top: 2.5rem;
  font-size: 1rem; font-weight: 600; color: #0f172a;
  padding: 1rem 2rem; background: #eff6ff;
  border-radius: 12px; border: 1.5px solid #bfdbfe;
}

/* Features */
.pm-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.pm-feature {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: #fff; border-radius: 14px;
  border: 1.5px solid #e2e8f0; padding: 1.75rem;
  transition: box-shadow .2s;
}
.pm-feature:hover { box-shadow: 0 6px 24px rgba(15,23,42,.07); }
.pm-feature-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pm-feature h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 .5rem; }
.pm-feature p { font-size: .875rem; color: #475569; line-height: 1.65; margin: 0; }

/* Diff */
.pm-diff-inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 4rem; align-items: center;
}
.pm-diff-text h2 {
  font-size: 1.85rem; font-weight: 800; color: #0f172a;
  margin: .5rem 0 1rem; letter-spacing: -.03em; line-height: 1.25;
}
.pm-diff-text p { color: #475569; line-height: 1.75; margin-bottom: 1rem; }
.pm-diff-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: .6rem; }
.pm-diff-list li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: #374151; font-weight: 500; }
.pm-diff-list svg { color: #16a34a; flex-shrink: 0; }
.pm-diff-compare {
  border-radius: 16px; overflow: hidden;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(15,23,42,.07);
}
.pm-diff-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  padding: .7rem 1rem; border-bottom: 1px solid #f1f5f9;
  font-size: .85rem;
}
.pm-diff-row:last-child { border-bottom: none; }
.pm-diff-row--head {
  background: #f8fafc; font-weight: 700; font-size: .8rem;
  color: #6b7280; text-transform: uppercase; letter-spacing: .05em;
}
.pm-diff-row span:first-child { color: #374151; font-weight: 500; }
.pm-diff-no { color: #9ca3af; }
.pm-diff-yes { color: #16a34a; font-weight: 600; }

/* Pricing */
.pm-pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem; max-width: 780px; margin-inline: auto;
}
.pm-pricing-cards--three {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
}
.pm-pricing-card {
  background: #fff; border-radius: 18px;
  border: 1.5px solid #e2e8f0; padding: 2rem;
  position: relative; display: flex; flex-direction: column;
}
.pm-pricing-card--featured {
  border-color: #3b82f6;
  box-shadow: 0 8px 32px rgba(59,130,246,.15);
}
.pm-pricing-card--dark {
  background: #0f172a; border-color: #1e293b;
}
.pm-pricing-card--goal {
  border-color: #1d4ed8;
  box-shadow: 0 8px 40px rgba(29,78,216,.18);
}
.pm-pricing-badge--goal {
  background: #1d4ed8;
}
.pm-pricing-name--goal {
  color: #1d4ed8; font-size: 1rem; font-weight: 800;
}
.pm-pricing-goal-note {
  font-size: .8rem; color: #6b7280; line-height: 1.55;
  margin: .75rem 0 0; border-top: 1px solid #e2e8f0; padding-top: .75rem;
}
.pm-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #1d4ed8; color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: .25rem .9rem; border-radius: 99px;
  letter-spacing: .04em;
}
.pm-pricing-name { font-size: .9rem; font-weight: 700; color: #6b7280; margin-bottom: 1.25rem; }
.pm-pricing-price { margin-bottom: 1rem; }
.pm-pricing-amount { display: block; font-size: 2.2rem; font-weight: 900; color: #0f172a; letter-spacing: -.04em; line-height: 1; }
.pm-pricing-period { font-size: .85rem; color: #6b7280; margin-top: .25rem; display: block; }
.pm-pricing-renewal { font-size: .8rem; color: #94a3b8; display: block; margin-top: .15rem; }
.pm-pricing-no-service {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: #b45309;
  background: #fef3c7; border: 1px solid #fcd34d;
  border-radius: 8px; padding: .45rem .75rem;
  margin-bottom: 1rem;
}
.pm-pricing-features {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: .55rem; flex: 1;
}
.pm-pricing-features li {
  font-size: .85rem; color: #374151;
  padding-left: 1.4rem; position: relative;
}
.pm-pricing-features li::before {
  content: "✓"; position: absolute; left: 0;
  color: #16a34a; font-weight: 700;
}
.pm-pricing-features--dark li { color: #cbd5e1; }
.pm-pricing-features--dark li::before { color: #60a5fa; }
.pm-pricing-conditions {
  border-top: 1px solid #e2e8f0; padding-top: .9rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.pm-condition-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: .5rem; font-size: .78rem;
}
.pm-condition-label { color: #9ca3af; font-weight: 600; white-space: nowrap; }
.pm-condition-val { color: #374151; text-align: right; line-height: 1.4; }
.pm-pricing-dark-note {
  font-size: .8rem; color: #94a3b8; line-height: 1.55;
  margin: .75rem 0 0; border-top: 1px solid #1e293b; padding-top: .75rem;
}
.pm-pricing-global-hint { font-size: .75rem; color: #9ca3af; text-align: center; margin: 1.5rem 0 0; }
.pm-pricing-hint { font-size: .75rem; color: #9ca3af; text-align: center; margin: .75rem 0 0; }

/* FAQ */
.pm-faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.pm-faq-item {
  background: #fff; border-radius: 12px;
  border: 1.5px solid #e2e8f0; overflow: hidden;
}
.pm-faq-item summary {
  padding: 1.1rem 1.5rem; font-weight: 600; font-size: .95rem;
  color: #0f172a; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.pm-faq-item summary::after { content: "+"; font-size: 1.25rem; color: #6b7280; transition: transform .2s; }
.pm-faq-item[open] summary::after { content: "−"; }
.pm-faq-item p { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: #475569; line-height: 1.7; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .pm-hero-inner { grid-template-columns: 1fr; }
  .pm-hero-visual { display: none; }
  .pm-diff-inner { grid-template-columns: 1fr; }
  .pm-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pm-hero-text h1 { font-size: 2rem; }
  .pm-pain-grid { grid-template-columns: 1fr 1fr; }
  .pm-pricing-cards { grid-template-columns: 1fr; max-width: 440px; }
  .pm-pricing-cards--three { grid-template-columns: 1fr; max-width: 440px; }
  .pm-hero-badge { font-size: .68rem; gap: .35rem; padding: .3rem .75rem; white-space: nowrap; }
  .pm-hero-price { width: 100%; box-sizing: border-box; flex-wrap: wrap; }
  .pm-hero-price .pm-price-unit { flex: 0 0 100%; margin-top: .1rem; }
  .pm-condition-row { flex-direction: column; }
  .pm-condition-val { text-align: left; }
}
@media (max-width: 480px) {
  .pm-pain-grid { grid-template-columns: 1fr; }
  .pm-hero-price { padding: .7rem 1rem; }
  .pm-price-num { font-size: 1.7rem; }
}

/* =========================================
   NIS2 SOLUTIONS SECTION
========================================= */
.nis2-solutions {
  background: #f8fafc;
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}
.nis2-solutions-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.nis2-solutions-header h2 {
  font-size: 1.9rem; font-weight: 800;
  color: #0f172a; margin: .5rem 0 .9rem;
  letter-spacing: -.03em; line-height: 1.25;
}
.nis2-solutions-header p {
  color: #475569; font-size: 1rem; line-height: 1.7;
}
.nis2-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.nis2-solution-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e2e8f0;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow .2s, border-color .2s;
}
.nis2-solution-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
  border-color: #c7d2fe;
}
.nis2-solution-icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nis2-solution-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #6366f1; background: #eef2ff;
  border-radius: 99px; padding: .2rem .7rem;
  margin-bottom: .6rem;
}
.nis2-solution-body h3 {
  font-size: 1.1rem; font-weight: 700;
  color: #0f172a; margin: 0 0 .6rem;
}
.nis2-solution-body p {
  font-size: .9rem; color: #475569;
  line-height: 1.7; margin-bottom: 1rem;
}
.nis2-solution-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.nis2-solution-list li {
  font-size: .85rem; color: #374151;
  padding-left: 1.3rem; position: relative;
}
.nis2-solution-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: #16a34a; font-weight: 700;
}
.nis2-solution-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600; color: #1d4ed8;
  text-decoration: none; transition: gap .2s;
}
.nis2-solution-link:hover { gap: .65rem; }
.nis2-solutions-cta {
  text-align: center;
  background: linear-gradient(135deg, #031237 0%, #294395 100%);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.nis2-solutions-cta p {
  color: #94a3b8; font-size: .95rem;
  line-height: 1.65; margin: 0;
  text-align: left; flex: 1;
}
@media (max-width: 768px) {
  .nis2-solutions-grid { grid-template-columns: 1fr; }
  .nis2-solution-card { flex-direction: column; }
  .nis2-solutions-cta { flex-direction: column; text-align: center; }
  .nis2-solutions-cta p { text-align: center; }
}

/* ── Kernleistung Badge ─────────────────────────────────── */
.nav-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  line-height: 1.4;
  white-space: nowrap;
}
.main-nav__dropdown-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.main-nav__dropdown-item--featured {
  border-left: 2px solid #2563eb;
  padding-left: calc(var(--sp-3, 12px) - 2px);
}
.leistungen-pill--featured {
  border-color: rgba(37,99,235,.5);
  background: rgba(37,99,235,.06);
}

/* ── WIP Placeholder ────────────────────────────────────── */
.wip-placeholder {
  padding: 3rem 2rem;
  border: 1.5px dashed var(--border-primary);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--bg-secondary);
}
.wip-placeholder__icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.08);
  border-radius: 50%;
  color: var(--cta-primary);
}
.wip-placeholder__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text-primary);
}
.wip-placeholder__text {
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   IT-SICHERHEIT PAGE  (.its-*)
═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.its-hero {
  position: relative;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.its-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.its-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
.its-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
}
.its-hero-glow--1 {
  width: 1440px; height: 1440px;
  background: radial-gradient(circle, rgba(30,64,175,.55) 0%, transparent 65%);
  top: -600px; left: -400px; opacity: .6;
}
.its-hero-glow--2 {
  width: 1080px; height: 1080px;
  background: radial-gradient(circle, rgba(124,58,237,.45) 0%, transparent 65%);
  top: -200px; right: -300px; opacity: .5;
}
.its-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.its-hero-text { max-width: 560px; }
.its-hero h1,
.its-hero h2,
.its-hero h3 { color: #fff; }
.its-hero-accent {
  background: linear-gradient(135deg, #93c5fd 0%, #818cf8 50%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.its-hero-sub {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.25rem 0 2rem;
}
.its-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.2) !important; }
.its-hero-phone:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }

/* Shield visual */
.its-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.its-shield-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.its-shield {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, #1e40af, #3730a3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(59,130,246,.4);
}
.its-shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(96,165,250,.3);
  animation: its-pulse 3s ease-out infinite;
}
.its-shield-ring--1 { width: 120px; height: 120px; animation-delay: 0s; }
.its-shield-ring--2 { width: 145px; height: 145px; animation-delay: .8s; }
.its-shield-ring--3 { width: 165px; height: 165px; animation-delay: 1.6s; }
@keyframes its-pulse {
  0%   { opacity: .6; transform: scale(.9); }
  100% { opacity: 0;  transform: scale(1.05); }
}

/* Threat feed */
.its-threat-feed {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .75rem 1rem;
  min-width: 280px;
  font-size: .82rem;
}
.its-threat-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.its-threat-item:last-child { border-bottom: none; }
.its-threat-time { margin-left: auto; color: #64748b; font-size: .75rem; white-space: nowrap; }
.its-threat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  box-shadow: 0 0 6px #ef4444;
  animation: its-blink 1.5s ease-in-out infinite;
}
.its-threat-dot--ok { background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: none; }
@keyframes its-blink {
  0%,100% { opacity: 1; } 50% { opacity: .35; }
}

/* Hero stats bar */
.its-hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.1);
}
.its-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.its-hero-stat {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.its-hero-stat:last-child { border-right: none; }
.its-hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .35rem;
}
.its-hero-stat-num span { font-size: 1.1rem; }
.its-hero-stat-label {
  font-size: .75rem;
  color: #64748b;
  line-height: 1.4;
}

/* ── Services grid ────────────────────────────────────── */
.its-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.its-service-card {
  background: #fff;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.its-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.its-service-card--featured {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}
.its-service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.its-service-badge-wrap {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
.its-service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--text-primary);
}
.its-service-card > p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.its-service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.its-service-features li {
  font-size: .8rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.its-service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #3b82f6;
}

/* ── Managed Security section ─────────────────────────── */
.its-managed {
  background: #0f172a;
  color: #fff;
}
.its-managed .eyebrow { color: #60a5fa; background: rgba(96,165,250,.15); }
.its-managed h1,
.its-managed h2,
.its-managed h3 { color: #fff; }
.its-managed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.its-managed-text h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: .75rem 0 1.25rem;
}
.its-managed-text p {
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.its-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.its-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.its-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }

.its-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.its-managed-card-title {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #60a5fa;
  margin-bottom: 1.25rem;
}
.its-managed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.its-managed-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.its-managed-list li svg { flex-shrink: 0; color: #22c55e; margin-top: .15rem; }
.its-managed-cta-hint {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  color: #64748b;
  text-align: center;
}

/* ── Process steps ────────────────────────────────────── */
.its-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.its-process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, #dbeafe, #bfdbfe, #dbeafe);
}
.its-process-step { text-align: center; position: relative; }
.its-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.its-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.its-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── NIS2 Banner ──────────────────────────────────────── */
.its-nis2 { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.its-nis2-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(245,158,11,.1);
}
.its-nis2-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: #fef3c7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
}
.its-nis2-text { flex: 1; }
.its-nis2-text h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; }
.its-nis2-text p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .its-services-grid { grid-template-columns: repeat(2, 1fr); }
  .its-process-steps { grid-template-columns: repeat(2, 1fr); }
  .its-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .its-hero-inner { grid-template-columns: 1fr; }
  .its-hero-visual { display: none; }
  .its-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .its-hero-stat:nth-child(2) { border-right: none; }
  .its-services-grid { grid-template-columns: 1fr; }
  .its-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .its-process-steps { grid-template-columns: 1fr; }
  .its-nis2-inner { flex-direction: column; text-align: center; }
  .its-hero-stats-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   NETZWERKEINRICHTUNG PAGE  (.nw-*)
═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.nw-hero {
  position: relative;
  background: #0c1a2e;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.nw-hero h1, .nw-hero h2, .nw-hero h3 { color: #fff; }
.nw-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.nw-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 52px 52px;
}
.nw-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(180px);
  opacity: .4;
}
.nw-hero-glow--1 { width: 700px; height: 700px; background: #0e4f6e; top: -200px; left: -150px; }
.nw-hero-glow--2 { width: 500px; height: 500px; background: #0f4c75; top: -100px; right: -100px; }
.nw-hero-nodes { position: absolute; inset: 0; opacity: .6; }

.nw-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.nw-hero-text { max-width: 560px; }
.nw-hero-accent {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0284c7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nw-hero-sub {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.25rem 0 2rem;
}
.nw-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.2) !important; }
.nw-hero-phone:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }

/* Status card */
.nw-hero-status { display: flex; justify-content: center; }
.nw-status-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  min-width: 300px;
  font-size: .82rem;
}
.nw-status-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nw-status-live {
  margin-left: auto;
  font-size: .7rem;
  background: rgba(34,197,94,.15);
  color: #4ade80;
  border-radius: 20px;
  padding: .15rem .55rem;
  font-weight: 600;
}
.nw-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}
.nw-status-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nw-status-row:last-child { border-bottom: none; }
.nw-status-row svg { flex-shrink: 0; opacity: .6; }
.nw-status-val { margin-left: auto; font-weight: 600; font-size: .78rem; }
.nw-status-val--ok { color: #4ade80; }
.nw-status-footer {
  margin-top: .85rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem;
  color: #475569;
  text-align: center;
}

/* Stats bar */
.nw-hero-stats {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nw-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.nw-hero-stat {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.nw-hero-stat:last-child { border-right: none; }
.nw-hero-stat-num {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .35rem;
}
.nw-hero-stat-num span { font-size: 1rem; }
.nw-hero-stat-label { font-size: .73rem; color: #64748b; line-height: 1.4; }

/* ── Services ─────────────────────────────────────────── */
.nw-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.nw-service-card {
  background: #fff;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.nw-service-card--wide { grid-column: span 2; }
.nw-service-card--wide ul { columns: 2; gap: 1rem; }
.nw-service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-2px); }
.nw-service-card--featured { border-color: #0ea5e9; box-shadow: 0 0 0 1px #0ea5e9; }
.nw-service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.nw-service-badge-wrap { position: absolute; top: 1.25rem; right: 1.25rem; }
.nw-service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; }
.nw-service-card > p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.nw-service-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.nw-service-features li {
  font-size: .8rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.nw-service-features li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 5px; height: 5px; border-radius: 50%; background: #0ea5e9;
}

/* ── Managed Network ──────────────────────────────────── */
.nw-managed {
  background: #0c1a2e;
  color: #fff;
}
.nw-managed h1, .nw-managed h2, .nw-managed h3 { color: #fff; }
.nw-managed .eyebrow { color: #22d3ee; background: rgba(34,211,238,.15); }
.nw-managed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.nw-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.nw-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.nw-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.nw-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.nw-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.nw-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.nw-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #22d3ee; margin-bottom: 1.25rem;
}
.nw-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.nw-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.nw-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.nw-managed-cta-hint {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: #64748b; text-align: center;
}

/* ── Process ──────────────────────────────────────────── */
.nw-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.nw-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #bae6fd, #7dd3fc, #bae6fd);
}
.nw-process-step { text-align: center; position: relative; }
.nw-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #e0f2fe; color: #0369a1;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.nw-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.nw-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .nw-services-grid { grid-template-columns: repeat(2, 1fr); }
  .nw-service-card--wide { grid-column: span 2; }
  .nw-process-steps { grid-template-columns: repeat(2, 1fr); }
  .nw-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nw-hero-inner { grid-template-columns: 1fr; }
  .nw-hero-status { display: none; }
  .nw-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nw-hero-stat:nth-child(2) { border-right: none; }
  .nw-services-grid { grid-template-columns: 1fr; }
  .nw-service-card--wide { grid-column: span 1; }
  .nw-service-card--wide ul { columns: 1; }
  .nw-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nw-process-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   CLOUD SOLUTIONS PAGE  (.cs-*)
   ════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.cs-hero {
  position: relative;
  background: #0a0f1e;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.cs-hero h1, .cs-hero h2, .cs-hero h3 { color: #fff; }
.cs-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.cs-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.042) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cs-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(160px); pointer-events: none;
}
.cs-hero-glow--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(99,102,241,.35) 0%, transparent 70%);
  top: -300px; left: -200px; opacity: .5;
}
.cs-hero-glow--2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,.3) 0%, transparent 70%);
  top: -100px; right: -150px; opacity: .4;
}
.cs-hero-glow--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,.25) 0%, transparent 70%);
  bottom: 40px; left: 40%; opacity: .3;
}
.cs-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
}
.cs-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.cs-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}
.cs-hero-accent {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-hero-sub { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin: 0; max-width: 560px; }
.cs-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.cs-hero-phone:hover { background: rgba(255,255,255,.07) !important; }

/* Orbit diagram */
.cs-hero-visual { display: flex; align-items: center; justify-content: center; }
.cs-cloud-diagram {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.cs-cloud-center {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  color: #fff; font-size: .6rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  position: relative; z-index: 2;
  box-shadow: 0 0 40px rgba(99,102,241,.5);
}
/* orbit ring */
.cs-cloud-orbit {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(99,102,241,.3);
  animation: cs-spin 20s linear infinite;
}
@keyframes cs-spin { to { transform: rotate(360deg); } }
.cs-cloud-node {
  position: absolute;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(99,102,241,.4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  color: #a5b4fc; font-size: .58rem; font-weight: 600;
  letter-spacing: .04em;
  /* position on orbit: top:50% left:50% then translate by radius */
  top: 50%; left: 50%;
  transform:
    rotate(var(--deg))
    translate(130px)
    rotate(calc(-1 * var(--deg)));
  animation: cs-counter 20s linear infinite;
  backdrop-filter: blur(4px);
  transition: border-color .2s;
}
.cs-cloud-node:hover { border-color: rgba(99,102,241,.9); }
@keyframes cs-counter { to { transform: rotate(var(--deg)) translate(130px) rotate(calc(-1 * var(--deg) - 360deg)); } }

/* Stats bar */
.cs-hero-stats {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  position: relative;
}
.cs-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cs-hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .5rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.cs-hero-stat:last-child { border-right: none; }
.cs-hero-stat-num {
  font-size: 2rem; font-weight: 800; color: #a5b4fc; line-height: 1;
}
.cs-hero-stat-num span { font-size: 1.1rem; font-weight: 600; color: #818cf8; }
.cs-hero-stat-label { font-size: .72rem; color: #64748b; line-height: 1.4; max-width: 160px; }

/* ── Services grid ────────────────────────────────────── */
.cs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.cs-service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.cs-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: #c7d2fe;
}
.cs-service-card--wide { grid-column: span 2; }
.cs-service-card--featured { border-color: #c7d2fe; background: linear-gradient(135deg, #fafafe 0%, #f5f3ff 100%); }
.cs-service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.cs-service-badge-wrap { position: absolute; top: 1.25rem; right: 1.25rem; }
.cs-service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; }
.cs-service-card > p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.cs-service-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.cs-service-features li {
  font-size: .8rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.cs-service-features li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 5px; height: 5px; border-radius: 50%; background: #6366f1;
}
.cs-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.cs-service-features--cols li { break-inside: avoid; }

/* ── Managed Cloud ────────────────────────────────────── */
.cs-managed {
  background: #0a0f1e;
  color: #fff;
}
.cs-managed h1, .cs-managed h2, .cs-managed h3 { color: #fff; }
.cs-managed .eyebrow { color: #818cf8; background: rgba(129,140,248,.15); }
.cs-managed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cs-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.cs-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.cs-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.cs-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.cs-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.cs-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.cs-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #818cf8; margin-bottom: 1.25rem;
}
.cs-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.cs-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.cs-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.cs-managed-cta-hint {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: #64748b; text-align: center;
}

/* ── Process ──────────────────────────────────────────── */
.cs-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.cs-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #c7d2fe, #a5b4fc, #c7d2fe);
}
.cs-process-step { text-align: center; position: relative; }
.cs-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #ede9fe; color: #6d28d9;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.cs-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.cs-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .cs-services-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-service-card--wide { grid-column: span 2; }
  .cs-process-steps { grid-template-columns: repeat(2, 1fr); }
  .cs-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .cs-hero-inner { grid-template-columns: 1fr; }
  .cs-hero-visual { display: none; }
  .cs-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-hero-stat:nth-child(even) { border-right: none; }
  .cs-services-grid { grid-template-columns: 1fr; }
  .cs-service-card--wide { grid-column: span 1; }
  .cs-service-features--cols { columns: 1; }
  .cs-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs-process-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   TERMINAL SERVER PAGE  (.ts-*)
   ════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.ts-hero {
  position: relative;
  background: #091712;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.ts-hero h1, .ts-hero h2, .ts-hero h3 { color: #fff; }
.ts-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ts-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ts-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(160px); pointer-events: none;
}
.ts-hero-glow--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,185,129,.3) 0%, transparent 70%);
  top: -250px; left: -150px; opacity: .5;
}
.ts-hero-glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(5,150,105,.25) 0%, transparent 70%);
  top: -80px; right: -100px; opacity: .4;
}
.ts-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
}
.ts-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.ts-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; font-weight: 800; margin: 0;
}
.ts-hero-accent {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ts-hero-sub { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin: 0; max-width: 560px; }
.ts-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ts-hero-phone:hover { background: rgba(255,255,255,.07) !important; }

/* Session card */
.ts-hero-visual { display: flex; align-items: center; justify-content: center; }
.ts-session-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(8px);
}
.ts-session-header {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .78rem; color: #94a3b8;
}
.ts-session-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ts-session-dot--ok { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,.6); }
.ts-session-live {
  margin-left: auto;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  color: #10b981; text-transform: uppercase;
}
.ts-session-rows { padding: .5rem 0; }
.ts-session-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .65rem 1.25rem;
  transition: background .15s;
}
.ts-session-row:hover { background: rgba(255,255,255,.04); }
.ts-session-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: #6ee7b7;
  flex-shrink: 0;
}
.ts-session-info { flex: 1; min-width: 0; }
.ts-session-name { display: block; font-size: .82rem; font-weight: 600; color: #e2e8f0; }
.ts-session-app  { display: block; font-size: .72rem; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-session-status {
  font-size: .68rem; font-weight: 600; padding: .2rem .55rem;
  border-radius: 99px; flex-shrink: 0;
}
.ts-session-status--ok { background: rgba(16,185,129,.15); color: #6ee7b7; }
.ts-session-footer {
  display: flex; justify-content: space-between;
  padding: .75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .7rem; color: #475569;
}
.ts-session-footer svg { vertical-align: middle; margin-right: 3px; }

/* Stats bar */
.ts-hero-stats {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  position: relative;
}
.ts-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ts-hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .5rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ts-hero-stat:last-child { border-right: none; }
.ts-hero-stat-num {
  font-size: 2rem; font-weight: 800; color: #6ee7b7; line-height: 1;
}
.ts-hero-stat-num span { font-size: 1.1rem; font-weight: 600; color: #34d399; }
.ts-hero-stat-label { font-size: .72rem; color: #64748b; line-height: 1.4; max-width: 160px; }

/* ── Services grid ────────────────────────────────────── */
.ts-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ts-service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.ts-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: #a7f3d0;
}
.ts-service-card--wide { grid-column: span 2; }
.ts-service-card--featured { border-color: #a7f3d0; background: linear-gradient(135deg, #fafffe 0%, #f0fdf4 100%); }
.ts-service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.ts-service-badge-wrap { position: absolute; top: 1.25rem; right: 1.25rem; }
.ts-service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; }
.ts-service-card > p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.ts-service-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.ts-service-features li {
  font-size: .8rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.ts-service-features li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 5px; height: 5px; border-radius: 50%; background: #10b981;
}
.ts-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.ts-service-features--cols li { break-inside: avoid; }

/* ── Managed Workplace ────────────────────────────────── */
.ts-managed {
  background: #091712;
  color: #fff;
}
.ts-managed h1, .ts-managed h2, .ts-managed h3 { color: #fff; }
.ts-managed .eyebrow { color: #34d399; background: rgba(52,211,153,.15); }
.ts-managed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ts-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.ts-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.ts-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ts-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ts-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.ts-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.ts-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #34d399; margin-bottom: 1.25rem;
}
.ts-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.ts-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.ts-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.ts-managed-cta-hint {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: #64748b; text-align: center;
}

/* ── Process ──────────────────────────────────────────── */
.ts-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.ts-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #a7f3d0, #6ee7b7, #a7f3d0);
}
.ts-process-step { text-align: center; position: relative; }
.ts-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #d1fae5; color: #065f46;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.ts-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.ts-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ts-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-service-card--wide { grid-column: span 2; }
  .ts-process-steps { grid-template-columns: repeat(2, 1fr); }
  .ts-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .ts-hero-inner { grid-template-columns: 1fr; }
  .ts-hero-visual { display: none; }
  .ts-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-hero-stat:nth-child(even) { border-right: none; }
  .ts-services-grid { grid-template-columns: 1fr; }
  .ts-service-card--wide { grid-column: span 1; }
  .ts-service-features--cols { columns: 1; }
  .ts-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ts-process-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   KOLLABORATION PAGE  (.ko-*)
   ════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.ko-hero {
  position: relative;
  background: #080f1e;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.ko-hero h1, .ko-hero h2, .ko-hero h3 { color: #fff; }
.ko-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ko-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ko-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(160px); pointer-events: none;
}
.ko-hero-glow--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(14,165,233,.28) 0%, transparent 70%);
  top: -260px; left: -180px; opacity: .5;
}
.ko-hero-glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  top: -60px; right: -120px; opacity: .4;
}
.ko-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
}
.ko-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.ko-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; font-weight: 800; margin: 0;
}
.ko-hero-accent {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #6366f1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ko-hero-sub { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin: 0; max-width: 560px; }
.ko-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ko-hero-phone:hover { background: rgba(255,255,255,.07) !important; }

/* Comms card */
.ko-hero-visual { display: flex; align-items: center; justify-content: center; }
.ko-comms-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(8px);
}
.ko-comms-header {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .78rem; color: #94a3b8;
}
.ko-comms-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ko-comms-dot--ok { background: #0ea5e9; box-shadow: 0 0 6px rgba(14,165,233,.6); }
.ko-comms-live {
  margin-left: auto;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  color: #0ea5e9; text-transform: uppercase;
}
.ko-comms-rows { padding: .5rem 0; }
.ko-comms-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem 1.25rem;
  transition: background .15s;
}
.ko-comms-row:hover { background: rgba(255,255,255,.04); }
.ko-comms-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ko-comms-info { flex: 1; min-width: 0; }
.ko-comms-label { display: block; font-size: .82rem; font-weight: 600; color: #e2e8f0; }
.ko-comms-sub   { display: block; font-size: .7rem; color: #64748b; }
.ko-comms-status {
  font-size: .68rem; font-weight: 600; padding: .2rem .55rem;
  border-radius: 99px; flex-shrink: 0;
}
.ko-comms-status--ok { background: rgba(14,165,233,.15); color: #7dd3fc; }
.ko-comms-footer {
  display: flex; justify-content: space-between;
  padding: .75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .7rem; color: #475569;
}

/* Stats bar */
.ko-hero-stats {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  position: relative;
}
.ko-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ko-hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .5rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ko-hero-stat:last-child { border-right: none; }
.ko-hero-stat-num {
  font-size: 2rem; font-weight: 800; color: #7dd3fc; line-height: 1;
}
.ko-hero-stat-num span { font-size: 1.1rem; font-weight: 600; color: #38bdf8; }
.ko-hero-stat-label { font-size: .72rem; color: #64748b; line-height: 1.4; max-width: 160px; }

/* ── Services grid ────────────────────────────────────── */
.ko-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ko-service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.ko-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: #bae6fd;
}
.ko-service-card--wide { grid-column: span 2; }
.ko-service-card--featured { border-color: #bae6fd; background: linear-gradient(135deg, #fafeff 0%, #f0f9ff 100%); }
.ko-service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.ko-service-badge-wrap { position: absolute; top: 1.25rem; right: 1.25rem; }
.ko-service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; }
.ko-service-card > p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.ko-service-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.ko-service-features li {
  font-size: .8rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.ko-service-features li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 5px; height: 5px; border-radius: 50%; background: #0ea5e9;
}
.ko-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.ko-service-features--cols li { break-inside: avoid; }

/* ── Managed Kommunikation ────────────────────────────── */
.ko-managed {
  background: #080f1e;
  color: #fff;
}
.ko-managed h1, .ko-managed h2, .ko-managed h3 { color: #fff; }
.ko-managed .eyebrow { color: #38bdf8; background: rgba(56,189,248,.15); }
.ko-managed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ko-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.ko-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.ko-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ko-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ko-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.ko-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}
.ko-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #38bdf8; margin-bottom: 1.25rem;
}
.ko-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.ko-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.ko-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.ko-managed-cta-hint {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: #64748b; text-align: center;
}

/* ── Process ──────────────────────────────────────────── */
.ko-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.ko-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #bae6fd, #7dd3fc, #bae6fd);
}
.ko-process-step { text-align: center; position: relative; }
.ko-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #e0f2fe; color: #0369a1;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.ko-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.ko-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ko-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ko-service-card--wide { grid-column: span 2; }
  .ko-process-steps { grid-template-columns: repeat(2, 1fr); }
  .ko-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .ko-hero-inner { grid-template-columns: 1fr; }
  .ko-hero-visual { display: none; }
  .ko-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ko-hero-stat:nth-child(even) { border-right: none; }
  .ko-services-grid { grid-template-columns: 1fr; }
  .ko-service-card--wide { grid-column: span 1; }
  .ko-service-features--cols { columns: 1; }
  .ko-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ko-process-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   MANAGED SERVICES HERO  (.msp-hero)
   ════════════════════════════════════════════════════════ */
.msp-hero {
  position: relative;
  background: #0a0f1e;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.msp-hero h1, .msp-hero h2, .msp-hero h3 { color: #fff; }
.msp-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.msp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,78,216,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,78,216,.042) 1px, transparent 1px);
  background-size: 48px 48px;
}
.msp-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(160px); pointer-events: none;
}
.msp-hero-glow--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(29,78,216,.3) 0%, transparent 70%);
  top: -280px; left: -200px; opacity: .5;
}
.msp-hero-glow--2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  top: -80px; right: -130px; opacity: .45;
}
.msp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
}
.msp-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.msp-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; font-weight: 800; margin: 0;
}
.msp-hero-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #6366f1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.msp-hero-sub { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin: 0; max-width: 560px; }
.msp-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.msp-hero-phone:hover { background: rgba(255,255,255,.07) !important; }

/* Status card */
.msp-hero-visual { display: flex; align-items: center; justify-content: center; }
.msp-status-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(29,78,216,.25);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(8px);
}
.msp-status-header {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .78rem; color: #94a3b8;
}
.msp-status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.msp-status-dot--ok { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,.6); }
.msp-status-live {
  margin-left: auto;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  color: #22c55e; text-transform: uppercase;
}
.msp-status-rows { padding: .4rem 0; }
.msp-status-row {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem 1.25rem;
  transition: background .15s;
}
.msp-status-row:hover { background: rgba(255,255,255,.04); }
.msp-status-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.msp-status-label { flex: 1; font-size: .8rem; font-weight: 500; color: #cbd5e1; }
.msp-status-val {
  font-size: .68rem; font-weight: 600; padding: .18rem .5rem;
  border-radius: 99px; flex-shrink: 0;
}
.msp-status-val--ok { background: rgba(34,197,94,.15); color: #86efac; }
.msp-status-footer {
  padding: .75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .7rem; color: #475569; text-align: center;
}

/* Stats bar */
.msp-hero-stats {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  position: relative;
}
.msp-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.msp-hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .5rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.msp-hero-stat:last-child { border-right: none; }
.msp-hero-stat-num {
  font-size: 2rem; font-weight: 800; color: #93c5fd; line-height: 1;
}
.msp-hero-stat-num span { font-size: 1.1rem; font-weight: 600; color: #60a5fa; }
.msp-hero-stat-label { font-size: .72rem; color: #64748b; line-height: 1.4; max-width: 160px; }

@media (max-width: 768px) {
  .msp-hero-inner { grid-template-columns: 1fr; }
  .msp-hero-visual { display: none; }
  .msp-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .msp-hero-stat:nth-child(even) { border-right: none; }
}

/* ════════════════════════════════════════════════════════
   MSP – 8-card grid override + Full Managed section
   ════════════════════════════════════════════════════════ */

/* 8 cards: 4 per row on desktop, 2 on tablet, 1 on mobile */
.msp-modules-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .msp-modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .msp-modules-grid { grid-template-columns: 1fr; }
}

/* Full Managed Service section */
.msp-full { background: #0a0f1e; color: #fff; }
.msp-full .section-header { margin-bottom: 5rem; }
.msp-full .section-header h2,
.msp-full .section-header p { color: #fff; }
.msp-full .section-header h2 { color: #f1f5f9; }
.msp-full .section-header p  { color: #94a3b8; }
.msp-full .eyebrow { color: #60a5fa; background: rgba(96,165,250,.15); }

.msp-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.msp-full-cat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: border-color .2s, background .2s;
}
.msp-full-cat:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(99,102,241,.4);
}
.msp-full-cat-header {
  display: flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: #93c5fd;
  margin-bottom: 1rem;
}
.msp-full-cat-header svg { flex-shrink: 0; opacity: .8; }
.msp-full-cat ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.msp-full-cat ul li {
  font-size: .8rem; color: #cbd5e1;
  padding-left: 1.1rem; position: relative; line-height: 1.45;
}
.msp-full-cat ul li::before {
  content: ''; position: absolute; left: 0; top: .52em;
  width: 4px; height: 4px; border-radius: 50%; background: #6366f1;
}

.msp-full-cta {
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.25rem; text-align: center;
}
.msp-full-cta p { color: #94a3b8; font-size: .95rem; max-width: 520px; margin: 0; }

@media (max-width: 1024px) {
  .msp-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .msp-full-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   IT-ADMINISTRATION PAGE  (.ia-*)
   ════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.ia-hero {
  position: relative;
  background: #0d1021;
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.ia-hero h1, .ia-hero h2, .ia-hero h3 { color: #fff; }
.ia-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ia-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ia-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(160px); pointer-events: none;
}
.ia-hero-glow--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(109,40,217,.35) 0%, transparent 70%);
  top: -260px; left: -180px; opacity: .55;
}
.ia-hero-glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.3) 0%, transparent 70%);
  top: -80px; right: -120px; opacity: .45;
}
.ia-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
}
.ia-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.ia-hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; font-weight: 800; margin: 0;
}
.ia-hero-accent {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #6366f1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ia-hero-sub { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin: 0; max-width: 560px; }
.ia-hero-phone { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ia-hero-phone:hover { background: rgba(255,255,255,.07) !important; }

/* Console card */
.ia-hero-visual { display: flex; align-items: center; justify-content: center; }
.ia-console-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(8px);
}
.ia-console-header {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .78rem; color: #94a3b8;
}
.ia-console-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ia-console-dot--ok { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,.6); }
.ia-console-live {
  margin-left: auto;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  color: #22c55e; text-transform: uppercase;
}
.ia-console-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ia-metric {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: .9rem .5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.ia-metric:last-child { border-right: none; }
.ia-metric-val {
  font-size: 1.5rem; font-weight: 800; line-height: 1;
}
.ia-metric-val--ok   { color: #86efac; }
.ia-metric-val--warn { color: #fde68a; }
.ia-metric-label { font-size: .6rem; color: #64748b; line-height: 1.3; }
.ia-console-rows { padding: .4rem 0; }
.ia-console-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .55rem 1.25rem;
  font-size: .78rem;
  transition: background .15s;
}
.ia-console-row:hover { background: rgba(255,255,255,.04); }
.ia-console-row > svg { flex-shrink: 0; color: #6366f1; opacity: .7; }
.ia-console-row > span:nth-child(2) { flex: 1; color: #cbd5e1; }
.ia-console-val {
  font-size: .68rem; font-weight: 600; padding: .18rem .5rem;
  border-radius: 99px; flex-shrink: 0;
}
.ia-console-val--ok { background: rgba(34,197,94,.15); color: #86efac; }
.ia-console-footer {
  padding: .75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .7rem; color: #475569; text-align: center;
}

/* Stats bar */
.ia-hero-stats {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
}
.ia-hero-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ia-hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: .5rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ia-hero-stat:last-child { border-right: none; }
.ia-hero-stat-num { font-size: 2rem; font-weight: 800; color: #c4b5fd; line-height: 1; }
.ia-hero-stat-num span { font-size: 1.1rem; font-weight: 600; color: #a78bfa; }
.ia-hero-stat-label { font-size: .72rem; color: #64748b; line-height: 1.4; max-width: 160px; }

/* ── Services grid ────────────────────────────────────── */
.ia-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ia-service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.ia-service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: #ddd6fe;
}
.ia-service-card--wide { grid-column: span 2; }
.ia-service-card--featured { border-color: #ddd6fe; background: linear-gradient(135deg, #fdfcff 0%, #faf5ff 100%); }
.ia-service-icon {
  width: 54px; height: 54px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.ia-service-badge-wrap { position: absolute; top: 1.25rem; right: 1.25rem; }
.ia-service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; }
.ia-service-card > p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }
.ia-service-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.ia-service-features li {
  font-size: .8rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.ia-service-features li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 5px; height: 5px; border-radius: 50%; background: #8b5cf6;
}
.ia-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.ia-service-features--cols li { break-inside: avoid; }

/* ── Managed Administration ───────────────────────────── */
.ia-managed { background: #0d1021; color: #fff; }
.ia-managed h1, .ia-managed h2, .ia-managed h3 { color: #fff; }
.ia-managed .eyebrow { color: #a78bfa; background: rgba(167,139,250,.15); }
.ia-managed-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.ia-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.ia-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.ia-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ia-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ia-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.ia-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.75rem 2rem;
}
.ia-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #a78bfa; margin-bottom: 1.25rem;
}
.ia-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.ia-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.ia-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.ia-managed-cta-hint {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: #64748b; text-align: center;
}

/* ── Process ──────────────────────────────────────────── */
.ia-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.ia-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #ddd6fe, #c4b5fd, #ddd6fe);
}
.ia-process-step { text-align: center; position: relative; }
.ia-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #ede9fe; color: #6d28d9;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.ia-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.ia-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ia-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ia-service-card--wide { grid-column: span 2; }
  .ia-process-steps { grid-template-columns: repeat(2, 1fr); }
  .ia-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .ia-hero-inner { grid-template-columns: 1fr; }
  .ia-hero-visual { display: none; }
  .ia-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ia-hero-stat:nth-child(even) { border-right: none; }
  .ia-services-grid { grid-template-columns: 1fr; }
  .ia-service-card--wide { grid-column: span 1; }
  .ia-service-features--cols { columns: 1; }
  .ia-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ia-process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   IT-BERATUNG  (.ib-*)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.ib-hero {
  background: #07101a;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden; color: #fff;
}
.ib-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.ib-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ib-hero-glow--1 {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(20,184,166,.35) 0%, transparent 70%);
  top: -280px; right: -200px; opacity: .55;
}
.ib-hero-glow--2 {
  position: absolute; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(6,182,212,.28) 0%, transparent 70%);
  bottom: -160px; left: -140px; opacity: .5;
}
.ib-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: center; position: relative; z-index: 1;
}
.ib-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start; width: fit-content;
  background: rgba(20,184,166,.15);
  border: 1px solid rgba(20,184,166,.35);
  color: #2dd4bf; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.ib-hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 800; margin: 0 0 1.25rem; color: #fff; }
.ib-hero-lead, .ib-hero-sub { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin-bottom: 2rem; max-width: 540px; }
.ib-hero-accent {
  background: linear-gradient(135deg, #5eead4 0%, #22d3ee 50%, #67e8f9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ib-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.ib-hero-stats {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem; padding-top: 2rem;
  position: relative; z-index: 1;
}
.ib-hero-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.ib-hero-stat {
  padding: .75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ib-hero-stat:first-child { padding-left: 0; }
.ib-hero-stat:last-child { border-right: none; }
.ib-hero-stat-num {
  display: block; font-size: 1.5rem; font-weight: 800;
  color: #2dd4bf; line-height: 1.1; margin-bottom: .4rem;
}
.ib-hero-stat-num span { font-size: 1rem; }
.ib-hero-stat-label { font-size: .78rem; color: #94a3b8; line-height: 1.5; display: block; }

/* ── Hero Visual (Assessment Report Card) ─────────────── */
.ib-hero-visual { position: relative; }

/* Report Card */
.ib-report-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 1.5rem 1.75rem;
  backdrop-filter: blur(8px);
}
.ib-report-header {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
  font-size: .75rem; font-weight: 600; color: #94a3b8;
}
.ib-report-header svg { color: #2dd4bf; flex-shrink: 0; }
.ib-report-header span:nth-child(2) { flex: 1; color: #e2e8f0; }
.ib-report-date {
  font-size: .65rem; padding: .2rem .55rem;
  background: rgba(74,222,128,.15); color: #4ade80;
  border-radius: 999px; font-weight: 600;
}

/* Score ring */
.ib-report-score {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ib-score-ring {
  position: relative; flex-shrink: 0;
  width: 80px; height: 80px;
}
.ib-score-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 800; color: #fff;
}
.ib-score-meta { display: flex; flex-direction: column; gap: .25rem; }
.ib-score-label { font-size: .85rem; font-weight: 700; color: #f1f5f9; }
.ib-score-sub { font-size: .7rem; color: #64748b; }

/* Report items */
.ib-report-items { display: flex; flex-direction: column; gap: .45rem; }
.ib-report-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; padding: .4rem .55rem;
  background: rgba(255,255,255,.04); border-radius: 6px;
}
.ib-report-item svg { flex-shrink: 0; }
.ib-report-item--ok svg { color: #4ade80; }
.ib-report-item--warn svg { color: #fbbf24; }
.ib-report-item--bad svg { color: #f87171; }
.ib-report-item > span:nth-child(2) { flex: 1; color: #cbd5e1; }
.ib-item-score { font-size: .68rem; font-weight: 600; color: #4ade80; }
.ib-item-score--warn { color: #fbbf24; }
.ib-item-score--bad { color: #f87171; }
.ib-report-footer {
  margin-top: 1rem; padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .72rem; color: #94a3b8; text-align: center;
}

/* ── Services Grid ────────────────────────────────────── */
.ib-services { padding: clamp(3.5rem, 6vw, 5rem) 0; background: var(--bg-light, #f8fafc); }
.ib-services-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.ib-services-header { text-align: center; margin-bottom: 5rem; }
.ib-services-header .eyebrow { color: #0d9488; background: rgba(13,148,136,.12); }
.ib-services-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.ib-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ib-service-card {
  background: #fff; border-radius: 14px;
  border: 1px solid #e2e8f0; padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.ib-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.ib-service-card--wide { grid-column: span 2; }
.ib-service-card--featured {
  border-color: #99f6e4;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
}
.ib-service-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #f0fdfa; display: flex; align-items: center; justify-content: center;
  color: #0d9488; margin-bottom: 1rem;
}
.ib-service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 1rem;
}
.ib-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.ib-service-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }
.ib-service-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(20,184,166,.1); color: #0d9488;
  font-size: .68rem; font-weight: 600; padding: .25rem .6rem;
  border-radius: 999px; margin-bottom: .75rem; letter-spacing: .05em;
}
.ib-service-features { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.ib-service-features li { font-size: .83rem; color: var(--text-secondary); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.ib-service-features li::before { content: ''; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: #14b8a6; }
.ib-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.ib-service-features--cols li { break-inside: avoid; }

/* ── Managed Beratung Section ─────────────────────────── */
.ib-managed { background: #07101a; color: #fff; }
.ib-managed h1, .ib-managed h2, .ib-managed h3 { color: #fff; }
.ib-managed .eyebrow { color: #2dd4bf; background: rgba(45,212,191,.15); }
.ib-managed-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.ib-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.ib-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.ib-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ib-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.ib-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.ib-managed-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.75rem 2rem;
}
.ib-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #2dd4bf; margin-bottom: 1.25rem;
}
.ib-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.ib-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.ib-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.ib-managed-cta-hint { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: #64748b; text-align: center; }

/* ── Process ──────────────────────────────────────────── */
.ib-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.ib-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #99f6e4, #2dd4bf, #99f6e4);
}
.ib-process-step { text-align: center; position: relative; }
.ib-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #ccfbf1; color: #0d9488;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.ib-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.ib-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ib-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ib-service-card--wide { grid-column: span 2; }
  .ib-process-steps { grid-template-columns: repeat(2, 1fr); }
  .ib-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .ib-hero-inner { grid-template-columns: 1fr; }
  .ib-hero-visual { display: none; }
  .ib-hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ib-hero-stat:nth-child(even) { border-right: none; }
  .ib-services-grid { grid-template-columns: 1fr; }
  .ib-service-card--wide { grid-column: span 1; }
  .ib-service-features--cols { columns: 1; }
  .ib-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ib-process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HYBRID BACKUP  (.hb-*)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.hb-hero {
  background: #0c1420;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden; color: #fff;
}
.hb-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(16,185,129,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hb-hero-glow--1 {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,185,129,.3) 0%, transparent 70%);
  top: -260px; right: -200px; opacity: .55; pointer-events: none;
}
.hb-hero-glow--2 {
  position: absolute; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(6,182,212,.25) 0%, transparent 70%);
  bottom: -160px; left: -140px; opacity: .5; pointer-events: none;
}
.hb-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: center; position: relative; z-index: 1;
}
.hb-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start; width: fit-content;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.35);
  color: #34d399; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hb-hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 800; margin: 0 0 1.25rem; color: #fff; }
.hb-hero-accent {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #22d3ee 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hb-hero-lead { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin-bottom: 2rem; max-width: 540px; }
.hb-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hb-hero-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.hb-hero-stat {
  padding: .75rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hb-hero-stat:last-child { border-right: none; }
.hb-hero-stat-val { font-size: 1.35rem; font-weight: 700; color: #34d399; display: block; }
.hb-hero-stat-lbl { font-size: .75rem; color: #64748b; margin-top: .2rem; }

/* ── Hero Visual (Backup Card) ────────────────────────── */
.hb-hero-visual { position: relative; }
.hb-backup-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 1.5rem 1.75rem;
  backdrop-filter: blur(8px);
}
.hb-backup-header {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.hb-backup-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(16,185,129,.2); display: flex; align-items: center; justify-content: center;
  color: #34d399; flex-shrink: 0;
}
.hb-backup-title { font-size: .78rem; font-weight: 600; color: #f1f5f9; }
.hb-backup-sub { font-size: .68rem; color: #64748b; }
.hb-status-badge {
  margin-left: auto; font-size: .65rem; font-weight: 600;
  padding: .25rem .6rem; border-radius: 999px; flex-shrink: 0;
}
.hb-status-badge--ok { background: rgba(74,222,128,.15); color: #4ade80; }
.hb-backup-jobs { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.hb-backup-job {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem .6rem; background: rgba(255,255,255,.04); border-radius: 7px;
}
.hb-backup-job-info { display: flex; flex-direction: column; gap: .15rem; }
.hb-backup-job-name { font-size: .78rem; color: #e2e8f0; font-weight: 500; }
.hb-backup-job-meta { font-size: .67rem; color: #64748b; }
.hb-backup-job-status { font-size: .78rem; font-weight: 700; }
.hb-backup-job-status--ok { color: #4ade80; }
.hb-backup-footer {
  display: flex; gap: 1.5rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}
.hb-backup-footer-item { display: flex; flex-direction: column; gap: .1rem; }
.hb-backup-footer-val { font-size: .95rem; font-weight: 700; color: #34d399; }
.hb-backup-footer-lbl { font-size: .68rem; color: #64748b; }

/* ── Services Grid ────────────────────────────────────── */
.hb-services { padding: clamp(3.5rem, 6vw, 5rem) 0; background: var(--bg-light, #f8fafc); }
.hb-services-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hb-services-header { text-align: center; margin-bottom: 5rem; }
.hb-services-header .eyebrow { color: #059669; background: rgba(5,150,105,.12); }
.hb-services-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.hb-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hb-service-card {
  background: #fff; border-radius: 14px;
  border: 1px solid #e2e8f0; padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.hb-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.hb-service-card--wide { grid-column: span 2; }
.hb-service-card--featured {
  border-color: #a7f3d0;
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
}
.hb-service-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #ecfdf5; display: flex; align-items: center; justify-content: center;
  color: #059669; margin-bottom: 1rem;
}
.hb-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.hb-service-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }
.hb-service-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(16,185,129,.1); color: #059669;
  font-size: .68rem; font-weight: 600; padding: .25rem .6rem;
  border-radius: 999px; margin-bottom: .75rem; letter-spacing: .05em;
}
.hb-service-features { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.hb-service-features li { font-size: .83rem; color: var(--text-secondary); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.hb-service-features li::before { content: ''; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: #10b981; }
.hb-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.hb-service-features--cols li { break-inside: avoid; }

/* ── Managed Backup Section ───────────────────────────── */
.hb-managed { background: #0c1420; color: #fff; }
.hb-managed h1, .hb-managed h2, .hb-managed h3 { color: #fff; }
.hb-managed .eyebrow { color: #34d399; background: rgba(52,211,153,.15); }
.hb-managed-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hb-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.hb-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.hb-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hb-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.hb-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.hb-managed-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 1.75rem 2rem; }
.hb-managed-card-title { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #34d399; margin-bottom: 1.25rem; }
.hb-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.hb-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.hb-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.hb-managed-cta-hint { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: #64748b; text-align: center; }

/* ── Process ──────────────────────────────────────────── */
.hb-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.hb-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #a7f3d0, #34d399, #a7f3d0);
}
.hb-process-step { text-align: center; position: relative; }
.hb-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #d1fae5; color: #065f46;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.hb-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.hb-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hb-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hb-service-card--wide { grid-column: span 2; }
  .hb-process-steps { grid-template-columns: repeat(2, 1fr); }
  .hb-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .hb-hero-inner { grid-template-columns: 1fr; }
  .hb-hero-visual { display: none; }
  .hb-hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hb-hero-stat:nth-child(even) { border-right: none; }
  .hb-services-grid { grid-template-columns: 1fr; }
  .hb-service-card--wide { grid-column: span 1; }
  .hb-service-features--cols { columns: 1; }
  .hb-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hb-process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   IT-BERECHTIGUNGSMANAGEMENT  (.bm-*)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.bm-hero {
  background: #0f0c1a;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden; color: #fff;
}
.bm-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,58,237,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bm-hero-glow--1 {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
  top: -260px; right: -200px; opacity: .55; pointer-events: none;
}
.bm-hero-glow--2 {
  position: absolute; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(236,72,153,.25) 0%, transparent 70%);
  bottom: -160px; left: -140px; opacity: .5; pointer-events: none;
}
.bm-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: center; position: relative; z-index: 1;
}
.bm-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start; width: fit-content;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.35);
  color: #a78bfa; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.bm-hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 800; margin: 0 0 1.25rem; color: #fff; }
.bm-hero-accent {
  background: linear-gradient(135deg, #c084fc 0%, #e879f9 50%, #f472b6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bm-hero-lead { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin-bottom: 2rem; max-width: 540px; }
.bm-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.bm-hero-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.bm-hero-stat {
  padding: .75rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.bm-hero-stat:last-child { border-right: none; }
.bm-hero-stat-val { font-size: 1.1rem; font-weight: 700; color: #a78bfa; display: block; }
.bm-hero-stat-lbl { font-size: .75rem; color: #64748b; margin-top: .2rem; }

/* ── Hero Visual (Rights Card) ────────────────────────── */
.bm-hero-visual { position: relative; }
.bm-rights-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 1.5rem 1.75rem;
  backdrop-filter: blur(8px);
}
.bm-rights-header {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem;
}
.bm-rights-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(124,58,237,.2); display: flex; align-items: center; justify-content: center;
  color: #a78bfa; flex-shrink: 0;
}
.bm-rights-title { font-size: .78rem; font-weight: 600; color: #f1f5f9; }
.bm-rights-sub { font-size: .68rem; color: #64748b; }
.bm-rights-status {
  margin-left: auto; font-size: .65rem; font-weight: 600;
  padding: .25rem .6rem; border-radius: 999px; flex-shrink: 0;
  background: rgba(74,222,128,.15); color: #4ade80;
}
.bm-rights-rows { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.bm-rights-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem .6rem; background: rgba(255,255,255,.04); border-radius: 7px;
}
.bm-rights-row-group { font-size: .78rem; color: #e2e8f0; flex: 1; }
.bm-rights-row-count { font-size: .7rem; color: #64748b; white-space: nowrap; }
.bm-rights-badge {
  font-size: .65rem; font-weight: 600; padding: .2rem .55rem;
  border-radius: 999px; white-space: nowrap;
}
.bm-rights-badge--ok { background: rgba(74,222,128,.15); color: #4ade80; }
.bm-rights-badge--warn { background: rgba(251,191,36,.15); color: #fbbf24; }
.bm-rights-badge--err { background: rgba(248,113,113,.15); color: #f87171; }
.bm-rights-footer {
  display: flex; gap: 1.5rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}
.bm-rights-footer-item { display: flex; flex-direction: column; gap: .1rem; }
.bm-rights-footer-val { font-size: .95rem; font-weight: 700; color: #a78bfa; }
.bm-rights-footer-lbl { font-size: .68rem; color: #64748b; }

/* ── Services Grid ────────────────────────────────────── */
.bm-services { padding: clamp(3.5rem, 6vw, 5rem) 0; background: var(--bg-light, #f8fafc); }
.bm-services-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.bm-services-header { text-align: center; margin-bottom: 5rem; }
.bm-services-header .eyebrow { color: #7c3aed; background: rgba(124,58,237,.12); }
.bm-services-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.bm-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bm-service-card {
  background: #fff; border-radius: 14px;
  border: 1px solid #e2e8f0; padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.bm-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.bm-service-card--wide { grid-column: span 2; }
.bm-service-card--featured {
  border-color: #ddd6fe;
  background: linear-gradient(135deg, #f5f3ff 0%, #fff 100%);
}
.bm-service-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #f5f3ff; display: flex; align-items: center; justify-content: center;
  color: #7c3aed; margin-bottom: 1rem;
}
.bm-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.bm-service-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }
.bm-service-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(124,58,237,.1); color: #7c3aed;
  font-size: .68rem; font-weight: 600; padding: .25rem .6rem;
  border-radius: 999px; margin-bottom: .75rem; letter-spacing: .05em;
}
.bm-service-features { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.bm-service-features li { font-size: .83rem; color: var(--text-secondary); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.bm-service-features li::before { content: ''; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: #7c3aed; }
.bm-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.bm-service-features--cols li { break-inside: avoid; }

/* ── Managed Section ──────────────────────────────────── */
.bm-managed { background: #0f0c1a; color: #fff; }
.bm-managed h1, .bm-managed h2, .bm-managed h3 { color: #fff; }
.bm-managed .eyebrow { color: #a78bfa; background: rgba(167,139,250,.15); }
.bm-managed-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.bm-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.bm-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.bm-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.bm-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.bm-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.bm-managed-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 1.75rem 2rem; }
.bm-managed-card-title { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #a78bfa; margin-bottom: 1.25rem; }
.bm-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.bm-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.bm-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.bm-managed-cta-hint { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: #64748b; text-align: center; }

/* ── Process ──────────────────────────────────────────── */
.bm-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.bm-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #ddd6fe, #a78bfa, #ddd6fe);
}
.bm-process-step { text-align: center; position: relative; }
.bm-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #ede9fe; color: #6d28d9;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.bm-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.bm-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .bm-services-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-service-card--wide { grid-column: span 2; }
  .bm-process-steps { grid-template-columns: repeat(2, 1fr); }
  .bm-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .bm-hero-inner { grid-template-columns: 1fr; }
  .bm-hero-text { min-width: 0; overflow: hidden; }
  .bm-hero-visual { display: none; }
  .bm-hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .bm-hero-stat:nth-child(even) { border-right: none; }
  .bm-hero-stat { padding: .6rem .75rem; }
  .bm-hero-stat-val { font-size: .9rem; }
  .bm-services-grid { grid-template-columns: 1fr; }
  .bm-service-card--wide { grid-column: span 1; }
  .bm-service-features--cols { columns: 1; }
  .bm-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bm-process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   DATEV  (.dv-*)
   ═══════════════════════════════════════════════════════ */

/* ── Services Grid ────────────────────────────────────── */
.dv-services { padding: clamp(3.5rem, 6vw, 5rem) 0; background: #fff; }
.dv-services-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.dv-services-header { text-align: center; margin-bottom: 5rem; }
.dv-services-header .eyebrow { color: #166534; background: rgba(22,101,52,.12); }
.dv-services-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.dv-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.dv-service-card {
  background: #fff; border-radius: 14px;
  border: 1px solid #e2e8f0; padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.dv-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.dv-service-card--wide { grid-column: span 2; }
.dv-service-card--featured {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}
.dv-service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 1rem;
}
.dv-service-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(22,101,52,.1); color: #166534;
  font-size: .68rem; font-weight: 600; padding: .25rem .6rem;
  border-radius: 999px; margin-bottom: .75rem; letter-spacing: .05em;
}
.dv-service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.dv-service-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }
.dv-service-features { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .55rem; }
.dv-service-features li { font-size: .83rem; color: var(--text-secondary); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.dv-service-features li::before { content: ''; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: #16a34a; }
.dv-service-features--cols { columns: 2; gap: 1.5rem; display: block; }
.dv-service-features--cols li { break-inside: avoid; }

/* ── Zielgruppen ──────────────────────────────────────── */
.dv-targets-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.dv-target-card {
  background: #fff; border-radius: 12px;
  border: 1px solid #e2e8f0; padding: 1.5rem;
  transition: box-shadow .2s;
}
.dv-target-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.dv-target-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: #f0fdf4; color: #166534;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.dv-target-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.dv-target-card p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── NIS2 Section (dark) ──────────────────────────────── */
.dv-nis2 {
  background: #0a1628; color: #fff;
}
.dv-nis2 h2, .dv-nis2 h3 { color: #fff; }
.dv-nis2 .eyebrow { color: #4ade80; background: rgba(74,222,128,.15); }
.dv-nis2-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.dv-nis2-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.dv-nis2-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.dv-nis2-text strong { color: #e2e8f0; }
.dv-nis2-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.dv-nis2-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.dv-nis2-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.dv-nis2-cards { display: flex; flex-direction: column; gap: .75rem; }
.dv-nis2-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 1rem 1.25rem;
}
.dv-nis2-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(74,222,128,.15); color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dv-nis2-card strong { display: block; font-size: .875rem; color: #f1f5f9; margin-bottom: .25rem; }
.dv-nis2-card p { font-size: .78rem; color: #94a3b8; margin: 0; line-height: 1.5; }

/* ── Managed Section (dark) ───────────────────────────── */
.dv-managed { background: #003d6b; color: #fff; }
.dv-managed h2, .dv-managed h3 { color: #fff; }
.dv-managed .eyebrow { color: #4ade80; background: rgba(74,222,128,.15); }
.dv-managed-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.dv-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.dv-managed-text p { color: #bfdbfe; line-height: 1.75; margin-bottom: 1rem; }
.dv-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.dv-managed-link { color: #bfdbfe !important; border-color: rgba(255,255,255,.3) !important; }
.dv-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.1) !important; }
.dv-managed-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 1.75rem 2rem;
}
.dv-managed-card-title {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: #6ee7b7; margin-bottom: 1.25rem;
}
.dv-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.dv-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #bfdbfe; line-height: 1.5; }
.dv-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.dv-managed-cta-hint {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; color: rgba(191,219,254,.6); text-align: center;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .dv-services-grid { grid-template-columns: repeat(2, 1fr); }
  .dv-service-card--wide { grid-column: span 2; }
  .dv-targets-grid { grid-template-columns: repeat(2, 1fr); }
  .dv-nis2-inner, .dv-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .dv-services-grid { grid-template-columns: 1fr; }
  .dv-service-card--wide { grid-column: span 1; }
  .dv-service-features--cols { columns: 1; }
  .dv-targets-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   WEBSEITEN & ONLINE MARKETING  (.wm-*)
   ═══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.wm-hero {
  background: #080d1a;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden; color: #fff;
}
.wm-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.wm-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.wm-hero-glow--1 {
  position: absolute; width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(99,102,241,.45) 0%, transparent 70%);
  top: -380px; right: -260px; opacity: .6;
}
.wm-hero-glow--2 {
  position: absolute; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(139,92,246,.32) 0%, transparent 70%);
  bottom: -260px; left: -180px; opacity: .55;
}
.wm-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 3.5rem; align-items: center; position: relative; z-index: 1;
}
.wm-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start; width: fit-content;
  background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.35);
  color: #a5b4fc; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.wm-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.12;
  font-weight: 800; margin: 0 0 1.25rem; color: #fff;
}
.wm-hero-accent {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wm-hero-lead { font-size: 1.05rem; color: #cbd5e1; line-height: 1.75; margin-bottom: 2rem; max-width: 560px; }
.wm-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.wm-hero-outline { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; display: flex; align-items: center; gap: .4rem; }
.wm-hero-outline:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.wm-hero-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem;
}
.wm-hero-stat { padding: .75rem 1.25rem; border-right: 1px solid rgba(255,255,255,.08); }
.wm-hero-stat:first-child { padding-left: 0; }
.wm-hero-stat:last-child { border-right: none; }
.wm-hero-stat-val { display: block; font-size: 1.15rem; font-weight: 800; color: #a5b4fc; line-height: 1.1; margin-bottom: .3rem; }
.wm-hero-stat-lbl { font-size: .72rem; color: #64748b; line-height: 1.4; display: block; }

/* ── Browser Card ─────────────────────────────────────── */
.wm-browser-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; overflow: hidden; backdrop-filter: blur(8px);
}
.wm-browser-bar {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.04); padding: .65rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wm-browser-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.wm-browser-dot--r { background: #f87171; }
.wm-browser-dot--y { background: #fbbf24; }
.wm-browser-dot--g { background: #4ade80; }
.wm-browser-url {
  flex: 1; font-size: .72rem; color: #64748b;
  background: rgba(255,255,255,.06); padding: .25rem .75rem;
  border-radius: 999px; text-align: center; margin: 0 .5rem;
}
.wm-browser-body { padding: 1.25rem 1.5rem; }
.wm-perf-row { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; justify-content: center; }
.wm-perf-item { text-align: center; }
.wm-perf-ring {
  display: block; width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid; font-size: 1rem; font-weight: 800;
  line-height: 46px; text-align: center; margin: 0 auto .4rem;
}
.wm-perf-ring--98 { color: #4ade80; border-color: #4ade80; }
.wm-perf-ring--96 { color: #a78bfa; border-color: #a78bfa; }
.wm-perf-ring--100 { color: #38bdf8; border-color: #38bdf8; }
.wm-perf-label { font-size: .65rem; color: #64748b; }
.wm-metrics { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.wm-metric-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .3rem; }
.wm-metric-label { font-size: .75rem; color: #94a3b8; }
.wm-metric-val { font-size: .75rem; font-weight: 700; }
.wm-metric-val--up { color: #4ade80; }
.wm-metric-bar { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.wm-metric-bar-fill { height: 100%; border-radius: 2px; }
.wm-browser-tags { display: flex; flex-wrap: wrap; gap: .4rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.08); }
.wm-browser-tag {
  font-size: .63rem; font-weight: 600; padding: .2rem .55rem;
  border-radius: 999px; background: rgba(99,102,241,.15); color: #a5b4fc;
}

/* ── Varianten ────────────────────────────────────────── */
.wm-variants { background: #fff; }
.wm-variants-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.wm-variant-card {
  background: #fff; border-radius: 16px;
  border: 1.5px solid #e2e8f0; padding: 2rem;
  display: flex; flex-direction: column; gap: 0;
  transition: box-shadow .2s, transform .2s;
}
.wm-variant-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); transform: translateY(-3px); }
.wm-variant-card--featured {
  border-color: #c4b5fd;
  background: linear-gradient(160deg, #faf5ff 0%, #fff 60%);
  box-shadow: 0 4px 24px rgba(139,92,246,.12);
}
.wm-variant-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.wm-variant-num {
  font-size: 2.5rem; font-weight: 900; color: #e2e8f0;
  line-height: 1; letter-spacing: -.05em;
}
.wm-variant-num--accent { color: #c4b5fd; }
.wm-variant-type {
  font-size: .65rem; font-weight: 700; padding: .3rem .7rem;
  border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
}
.wm-variant-type--project { background: #f1f5f9; color: #475569; }
.wm-variant-type--managed {
  display: flex; align-items: center; gap: .3rem;
  background: rgba(139,92,246,.12); color: #7c3aed;
}
.wm-variant-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .75rem; line-height: 1.25; }
.wm-variant-card h3 span { display: block; font-size: .85rem; font-weight: 500; color: var(--text-secondary); margin-top: .15rem; }
.wm-variant-lead { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.wm-variant-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.wm-variant-list li {
  font-size: .83rem; color: #334155; padding-left: 1.3rem;
  position: relative; line-height: 1.5;
}
.wm-variant-list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: #6366f1;
}
.wm-variant-card--featured .wm-variant-list li::before { background: #7c3aed; }
.wm-variant-note {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .75rem; color: #64748b; line-height: 1.5;
  background: rgba(139,92,246,.06); border-radius: 8px;
  padding: .65rem .75rem; margin-bottom: 1.25rem;
}
.wm-variant-note svg { flex-shrink: 0; color: #a78bfa; margin-top: .1rem; }
.wm-variant-footer { margin-top: auto; }
.wm-variant-btn { width: 100%; justify-content: center; }

/* ── Difference Section (dark) ────────────────────────── */
.wm-difference { background: linear-gradient(160deg, #0e0a1f 0%, #100d2e 45%, #0d1340 100%); color: #fff; }
.wm-difference-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.wm-difference-quote { position: relative; padding-left: 1.5rem; border-left: 3px solid #6366f1; }
.wm-quote-mark {
  font-size: 6rem; line-height: .7; color: rgba(99,102,241,.25);
  font-family: Georgia, serif; margin-bottom: .5rem; display: block;
}
.wm-difference-quote blockquote {
  font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.75;
  color: #e2e8f0; font-style: italic; margin: 0 0 1.25rem;
}
.wm-difference-quote blockquote strong { color: #a5b4fc; font-style: normal; }
.wm-quote-source { font-size: .78rem; color: #64748b; }
.wm-difference-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wm-compare-col {
  background: rgba(255,255,255,.04); border-radius: 12px;
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.08);
}
.wm-compare-col--good { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.07); }
.wm-compare-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1rem; display: block;
}
.wm-compare-col--bad .wm-compare-label { color: #ef4444; }
.wm-compare-col--good .wm-compare-label { color: #818cf8; }
.wm-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.wm-compare-list li { font-size: .8rem; line-height: 1.5; padding-left: 1.2rem; position: relative; }
.wm-compare-col--bad .wm-compare-list li { color: #94a3b8; }
.wm-compare-col--bad .wm-compare-list li::before { content: '✗'; position: absolute; left: 0; color: #ef4444; font-size: .7rem; }
.wm-compare-col--good .wm-compare-list li { color: #cbd5e1; }
.wm-compare-col--good .wm-compare-list li::before { content: '✓'; position: absolute; left: 0; color: #818cf8; font-size: .7rem; }

/* ── Managed Section (dark) ───────────────────────────── */
.wm-managed { background: #0f0826; color: #fff; }
.wm-managed h2, .wm-managed h3 { color: #fff; }
.wm-managed .eyebrow { color: #a78bfa; background: rgba(139,92,246,.15); }
.wm-managed-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.wm-managed-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin: .75rem 0 1.25rem; }
.wm-managed-text p { color: #94a3b8; line-height: 1.75; margin-bottom: 1rem; }
.wm-managed-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.wm-managed-link { color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important; }
.wm-managed-link:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }
.wm-managed-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 1.75rem 2rem; }
.wm-managed-card-title { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #a78bfa; margin-bottom: 1.25rem; }
.wm-managed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.wm-managed-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: #cbd5e1; line-height: 1.5; }
.wm-managed-list li svg { flex-shrink: 0; color: #4ade80; margin-top: .15rem; }
.wm-managed-cta-hint { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; color: #64748b; text-align: center; line-height: 1.5; }

/* ── Proof Grid ───────────────────────────────────────── */
.wm-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.wm-proof-card {
  background: #fff; border-radius: 12px;
  border: 1px solid #e2e8f0; padding: 1.5rem;
  transition: box-shadow .2s;
}
.wm-proof-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.wm-proof-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: #eef2ff; color: #4f46e5;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.wm-proof-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }
.wm-proof-card p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Process ──────────────────────────────────────────── */
.wm-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.wm-process-steps::before {
  content: ''; position: absolute;
  top: 1.75rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, #c7d2fe, #818cf8, #c7d2fe);
}
.wm-process-step { text-align: center; position: relative; }
.wm-process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #eef2ff; color: #4338ca;
  font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.wm-process-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.wm-process-body p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Leistungen Teaser ────────────────────────────────── */
.leistungen-web-teaser {
  background: linear-gradient(135deg, #0f2460 0%, #1d4ed8 100%);
  padding: 1.25rem 0;
  margin-bottom: 5rem;
}
.leistungen-web-teaser-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.leistungen-web-teaser-label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; color: #bfdbfe;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .35rem;
}
.leistungen-web-teaser-text p { font-size: .875rem; color: #dbeafe; margin: 0; line-height: 1.6; }
.leistungen-web-teaser-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: #1d4ed8 !important;
  font-size: .82rem; font-weight: 600;
  padding: .6rem 1.25rem; border-radius: 8px;
  white-space: nowrap; text-decoration: none;
  transition: background .2s, color .2s;
}
.leistungen-web-teaser-btn:hover { background: #eff6ff; }

/* ── Footer Made with Love ────────────────────────────── */
.footer-made-with-love {
  font-size: .75rem; color: #9ca3af;
  text-decoration: none; transition: color .2s;
}
.footer-made-with-love:hover { color: #f472b6; }
.footer-made-with-love span { color: #f472b6; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .wm-hero-inner { grid-template-columns: 1fr; }
  .wm-hero-visual { display: none; }
  .wm-hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .wm-hero-stat:nth-child(even) { border-right: none; }
  .wm-variants-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .wm-difference-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wm-managed-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wm-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .wm-process-steps { grid-template-columns: repeat(2, 1fr); }
  .wm-process-steps::before { display: none; }
}
@media (max-width: 640px) {
  .wm-difference-compare { grid-template-columns: 1fr; }
  .wm-proof-grid { grid-template-columns: 1fr; }
  .wm-process-steps { grid-template-columns: 1fr; }
  .wm-hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .leistungen-web-teaser-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   LEISTUNGEN HERO  (.lh-*)
   ═══════════════════════════════════════════════════════ */

.lh-hero {
  background: #070c1a;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
}
.lh-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.lh-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.036) 1px, transparent 1px);
  background-size: 48px 48px;
}
.lh-hero-glow--1 {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(29,78,216,.38) 0%, transparent 70%);
  top: -260px; right: -160px; opacity: .6;
}
.lh-hero-glow--2 {
  position: absolute; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(59,130,246,.22) 0%, transparent 70%);
  bottom: -180px; left: -120px; opacity: .5;
}

/* ── Inner layout ──────────────────────────────────────── */
.lh-hero-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3.5rem; align-items: center;
  position: relative; z-index: 1;
  padding-bottom: 3rem;
}
.lh-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.35);
  color: #93c5fd; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.lh-hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.14;
  font-weight: 800; margin: 0 0 1.25rem; color: #fff;
}
.lh-hero-lead {
  font-size: 1.05rem; color: #cbd5e1;
  line-height: 1.75; margin-bottom: 2rem; max-width: 520px;
}
.lh-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.lh-hero-outline {
  color: #cbd5e1 !important; border-color: rgba(255,255,255,.25) !important;
  display: flex; align-items: center; gap: .4rem;
}
.lh-hero-outline:hover { color: #fff !important; background: rgba(255,255,255,.08) !important; }

/* ── Services card ─────────────────────────────────────── */
.lh-services-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(8px);
}
.lh-services-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.lh-services-card-title {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: #64748b;
}
.lh-services-card-count {
  font-size: .72rem; font-weight: 700;
  color: #3b82f6; background: rgba(59,130,246,.12);
  padding: .2rem .6rem; border-radius: 999px;
}
.lh-services-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}
.lh-tile {
  display: flex; flex-direction: column; align-items: center;
  gap: .55rem; padding: 1.1rem .75rem;
  background: rgba(7,12,26,.8);
  transition: background .18s;
  text-align: center;
}
.lh-tile:hover { background: rgba(59,130,246,.08); }
.lh-tile--featured { background: rgba(29,78,216,.15); }
.lh-tile--featured:hover { background: rgba(29,78,216,.22); }
.lh-tile-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); color: #93c5fd;
  flex-shrink: 0;
}
.lh-tile--featured .lh-tile-icon { background: rgba(59,130,246,.2); color: #60a5fa; }
.lh-tile-label {
  font-size: .68rem; font-weight: 600;
  color: #94a3b8; line-height: 1.3;
}
.lh-tile--featured .lh-tile-label { color: #bfdbfe; }
.lh-services-card-footer {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .7rem; color: #475569;
}
.lh-services-card-footer svg { flex-shrink: 0; color: #334155; }

/* ── Stats bar ─────────────────────────────────────────── */
.lh-hero-stats {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  margin-top: 0;
}
.lh-hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.lh-hero-stat {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.lh-hero-stat:last-child { border-right: none; }
.lh-hero-stat-val {
  display: block; font-size: 1rem; font-weight: 800;
  color: #60a5fa; line-height: 1.1; margin-bottom: .25rem;
}
.lh-hero-stat-lbl {
  font-size: .72rem; color: #475569; line-height: 1.4; display: block;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lh-hero-inner { grid-template-columns: 1fr; }
  .lh-hero-visual { display: none; }
  .lh-hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .lh-hero-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .lh-hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .lh-hero-stat { padding: .75rem 1rem; }
}

/* ── Team WIP Blur Overlay ────────────────────────────── */
.au-team-wip {
  position: relative;
}
.au-team-wip .au-team-photo,
.au-team-wip .au-team-grid {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}
.au-team-wip-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  gap: .6rem;
  font-size: .85rem; font-weight: 600; color: #475569;
  background: rgba(248,250,252,.55);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  pointer-events: none;
}

/* ── MSP FAQ ─────────────────────────────────────────────── */
.msp-faq { background: #060d1f; }
.msp-faq h2 { color: #f1f5f9; }
.msp-faq .eyebrow { background: rgba(99,102,241,.15); color: #818cf8; border-color: rgba(99,102,241,.25); }
.msp-faq .section-lead { color: #94a3b8; font-size: 1rem; max-width: 560px; margin: .75rem auto 0; }
.msp-faq-list { max-width: 780px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.msp-faq-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.msp-faq-item[open] { border-color: rgba(99,102,241,.4); }
.msp-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 600; color: #e2e8f0; cursor: pointer; list-style: none; }
.msp-faq-q::-webkit-details-marker { display: none; }
.msp-faq-q:hover { color: #fff; }
.msp-faq-icon { flex-shrink: 0; color: #6366f1; transition: transform .25s; }
.msp-faq-item[open] .msp-faq-icon { transform: rotate(180deg); }
.msp-faq-a { padding: 0 1.5rem 1.25rem; }
.msp-faq-a p { color: #94a3b8; line-height: 1.75; margin: 0; font-size: .95rem; }
.msp-faq-a strong { color: #cbd5e1; font-weight: 600; }
.msp-faq-a em { color: #a5b4fc; font-style: normal; }
@media (max-width: 640px) {
  .msp-faq-q { padding: 1rem 1.25rem; font-size: .95rem; }
  .msp-faq-a { padding: 0 1.25rem 1rem; }
}

/* ── Scroll-to-top button ────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 108px;
  right: 28px;
  z-index: 9989;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transform: translateY(14px) scale(.82);
  transition: opacity .35s cubic-bezier(.34,1.56,.64,1),
              transform .35s cubic-bezier(.34,1.56,.64,1),
              background .2s, box-shadow .2s, color .2s;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.09);
}
.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: rgba(37,99,235,.9);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,99,235,.45), 0 0 0 1px rgba(99,102,241,.4);
  transform: translateY(-3px) scale(1.07);
}
.scroll-top-btn:active {
  transform: translateY(0) scale(.96);
  transition-duration: .1s;
}
.scroll-top-progress {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
}
.scroll-top-track { stroke: rgba(255,255,255,.09); }
.scroll-top-ring  {
  stroke: rgba(99,102,241,.75);
  transition: stroke-dashoffset .12s linear;
}
.scroll-top-btn:hover .scroll-top-ring { stroke: rgba(255,255,255,.6); }
.scroll-top-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .scroll-top-btn { bottom: 100px; right: 20px; width: 40px; height: 40px; }
  .scroll-top-btn .scroll-top-progress { width: 40px; height: 40px; }
}

/* ── Referenzen Hero ─────────────────────────────────────── */
.ref-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #06091a 0%, #0a1628 50%, #070c1a 100%);
  padding: 5rem 0 4rem;
}
.ref-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ref-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(251,191,36,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(251,191,36,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.ref-hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.ref-hero-glow--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(245,158,11,.22) 0%, transparent 65%);
  top: -320px; right: -200px; opacity: .7;
}
.ref-hero-glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.28) 0%, transparent 65%);
  bottom: -200px; left: -100px; opacity: .6;
}
.ref-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.ref-hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .9rem; border-radius: 999px;
  background: rgba(245,158,11,.12); color: #fbbf24;
  border: 1px solid rgba(245,158,11,.25);
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: 1.25rem;
}
.ref-hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 800; color: #fff; margin: 0 0 1.25rem; }
.ref-hero-accent {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ref-hero-lead { color: #cbd5e1; font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; max-width: 520px; }
.ref-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.ref-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.75rem;
}
.ref-stat { text-align: center; }
.ref-stat-num {
  display: block; font-size: 1.8rem; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: .3rem;
}
.ref-stat-num span { font-size: 1.1rem; color: #fbbf24; }
.ref-stat-label { font-size: .75rem; color: #64748b; line-height: 1.4; }
@media (max-width: 768px) {
  .ref-hero-inner { grid-template-columns: 1fr; }
  .ref-hero-stats { grid-template-columns: repeat(4,1fr); gap: .75rem; padding: 1.25rem; }
  .ref-stat-num { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .ref-hero-stats { grid-template-columns: repeat(2,1fr); }
}

/* ── Referenzen WIP blur overlay ─────────────────────────── */
.ref-wip {
  position: relative;
}
.ref-wip > *:not(.ref-wip-overlay) {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}
.ref-wip-overlay {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 20;
  margin: 0 auto;
  width: fit-content;
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem 1.5rem;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: .9rem; font-weight: 600; color: #cbd5e1;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  pointer-events: none;
}
.ref-wip-overlay svg { color: #fbbf24; flex-shrink: 0; }

/* ── WhatsApp – Footer ───────────────────────────────────── */
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .75rem;
  font-size: .82rem; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .15s;
}
.footer-whatsapp:hover { color: var(--text-primary); }
.footer-whatsapp svg { flex-shrink: 0; opacity: .7; }
.footer-whatsapp:hover svg { opacity: 1; }

/* ── WhatsApp – Mobile Menu ──────────────────────────────── */
.mobile-menu__cta-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .85rem 1rem;
  border-radius: 10px;
  background: rgba(37,211,102,.1);
  border: 1.5px solid rgba(37,211,102,.25);
  color: #22c55e;
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.mobile-menu__cta-whatsapp:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.45);
  color: #16a34a;
}
