﻿  :root {
    --teal: #1A4640;
    --teal-deep: #0E2A24;
    --teal-darker: #061410;
    --teal-mid: #2C5E54;
    --cyan: #14B8A6;
    --cyan-glow: #2DD4BF;
    --cyan-deep: #0D9488;
    --amber: #F59E0B;          /* NEW accent â€” warm premium gold */
    --amber-glow: #FBBF24;
    --amber-deep: #B45309;
    --green-ok: #4ADE80;
    --white: #FFFFFF;
    --off-white: #F7F9FA;
    --gray-50: #F2F5F7;
    --gray-100: #E5EAEC;
    --gray-200: #CDD3D6;
    --gray-400: #8B969B;
    --gray-600: #5E6B72;
    --gray-800: #2A363B;
    --ink: #0F1B1F;

    /* ===== Logofarben laut CD-Manual (nicht fuer UI-Elemente verwenden) ===== */
    --logo-dark: #00221C;
    --logo-teal: #235859;
    --logo-paper: #FBF9F6;

    /* ===== Easing & Timing â€” konsistente "Smoothness" ===== */
    --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);     /* sanft auslaufend */
    --ease-out-snap: cubic-bezier(0.16, 1, 0.3, 1);      /* schnell rein, weich raus */
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);       /* symmetrisch */
    --t-fast: 0.18s;
    --t-base: 0.32s;
    --t-slow: 0.55s;

    /* Header â€” inverted, liegt auf dem Hero */
    --site-header-bar-height: 140px;
    --nav-contact-height: 36px;
    --nav-menu-height: calc(var(--site-header-bar-height) - var(--nav-contact-height));
    --site-header-height: var(--site-header-bar-height);
    --breadcrumb-track-height: 34px;
    --site-chrome-height: calc(var(--site-header-height) + var(--breadcrumb-track-height));
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  /* Accessibility â€” wer reduzierte Animationen will, bekommt sie */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .site-header-perspective {
      opacity: 1;
      animation: none;
    }
  }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  ::selection { background: var(--cyan); color: var(--teal-deep); }

  /* ===== PAGE-SYSTEM (SPA-Routing) ===== */
  .page {
    animation: page-fade-in 0.55s var(--ease-out-soft);
  }
  .page[hidden] { display: none !important; }
  @keyframes page-fade-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Nav-Link Active State (auf dunklem inverted Header) */
  .nav-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    filter: drop-shadow(0 0 4px rgba(45, 212, 191, 0.45)) drop-shadow(0 0 12px rgba(20, 184, 166, 0.35));
    transition: color var(--t-base) var(--ease-out-soft),
                filter var(--t-base) var(--ease-out-soft),
                transform var(--t-base) var(--ease-out-soft);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #5eead4;
    box-shadow: 0 0 8px 2px rgba(45, 212, 191, 0.95), 0 0 22px 6px rgba(20, 184, 166, 0.55);
    transition: width var(--t-base) var(--ease-out-snap);
  }
  .nav-link:hover {
    color: #5eead4;
    filter: drop-shadow(0 0 6px rgba(94, 234, 212, 0.95)) drop-shadow(0 0 18px rgba(45, 212, 191, 0.75));
  }
  .nav-link:hover::after { width: 100%; }
  .nav-link.active {
    color: #5eead4;
    font-weight: 700;
    filter: drop-shadow(0 0 6px rgba(94, 234, 212, 0.85)) drop-shadow(0 0 16px rgba(45, 212, 191, 0.6));
  }
  .nav-link.active::after { width: 100%; }

  /* Scroll-aware Nav â€” siehe NAV-Sektion unten */

  /* ===== PAGE HEADER (kleinerer Hero fÃ¼r Unter-Seiten) ===== */
  .page-header {
    padding: 5em 0;
    background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-darker) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
  }
  .page-header-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 25% 60%, rgba(20, 184, 166, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  }
  .page-header-inner { position: relative; z-index: 2; max-width: 820px; }
  .page-header-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 22px;
  }
  .page-header-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: live-pulse 1.8s ease-in-out infinite;
  }
  .page-header-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }
  .page-header-title .accent {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .page-header-lede {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
  }

  /* Glow-Icons im Page-Header (Leistungen) */
  .page-header-icons {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.42;
  }
  @media (max-width: 1200px) {
    .page-header-icons { width: 380px; height: 380px; right: -80px; opacity: 0.3; }
  }
  @media (max-width: 900px) {
    .page-header-icons { display: none; }
  }
  .page-header-icons svg { width: 100%; height: 100%; overflow: visible; }

  /* Service-Preview-Strip im Leistungen-Header */
  .service-preview-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    position: relative;
    z-index: 3;
  }
  .service-preview-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: background var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft),
                color var(--t-base) var(--ease-out-soft),
                transform var(--t-base) var(--ease-out-snap);
  }
  .service-preview-pill:hover {
    background: rgba(20, 184, 166, 0.14);
    border-color: var(--cyan);
    color: var(--white);
    transform: translateY(-3px);
  }
  .service-preview-pill .dot {
    width: 6px; height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .service-preview-pill .dot.cyan {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
  }
  .service-preview-pill .dot.amber {
    background: var(--amber);
    box-shadow: 0 0 8px var(--amber);
  }

  /* ===== TEAM PAGE ===== */
  .team-section {
    padding: 110px 0 130px;
    background: linear-gradient(180deg, #E1EFE5 0%, #CFE5D5 50%, #D2E8DC 100%);
    position: relative;
    overflow: hidden;
  }
  .team-section-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 40% 50% at 15% 40%, rgba(20, 184, 166, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 85% 70%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  }
  .team-featured { position: relative; z-index: 2; margin-bottom: 64px; }
  .team-featured-card {
    background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal) 100%);
    border-radius: 22px;
    padding: 48px 52px;
    color: var(--white);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 44px;
    align-items: center;
    box-shadow: 0 40px 80px -30px rgba(6, 20, 16, 0.4);
    position: relative;
    overflow: hidden;
  }
  .team-featured-card::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .team-featured-avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-deep);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    box-shadow: 0 20px 50px -16px rgba(245, 158, 11, 0.6), inset 0 -8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  .team-featured-avatar::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1.5px dashed rgba(245, 158, 11, 0.45);
    border-radius: 50%;
    animation: spin 40s linear infinite;
    pointer-events: none;
    z-index: 2;
  }
  .team-featured-content { position: relative; z-index: 1; }
  .team-featured-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px;
    margin-bottom: 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .team-featured-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .team-featured-role {
    font-size: 1.05rem;
    color: var(--cyan-glow);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .team-featured-quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
    padding-left: 20px;
    border-left: 3px solid var(--amber);
    max-width: 580px;
  }
  .team-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }
  .team-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 16px;
    padding: 28px 26px;
    text-align: center;
    transition: transform var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft),
                box-shadow var(--t-base) var(--ease-out-soft),
                background var(--t-base) var(--ease-out-soft);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    will-change: transform;
  }
  .team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.55);
    box-shadow: 0 30px 60px -20px rgba(20, 184, 166, 0.35), 0 0 0 1px rgba(20, 184, 166, 0.2);
    background: rgba(255, 255, 255, 0.85);
  }
  .team-card-avatar {
    width: 84px; height: 84px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    margin: 0 auto 18px;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform var(--t-base) var(--ease-out-snap);
  }
  .team-card:hover .team-card-avatar {
    transform: scale(1.08) rotate(-3deg);
  }
  .team-card-status {
    position: absolute;
    top: 18px; right: 18px;
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
  }
  .team-card-status .dot {
    width: 6px; height: 6px;
    background: var(--green-ok);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green-ok);
  }
  .team-card-status.away .dot { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
  .team-card-avatar--photo {
    background: rgba(20, 184, 166, 0.12);
    padding: 0;
  }
  .team-card-avatar--photo img,
  .team-featured-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-featured-avatar--photo {
    padding: 0;
    overflow: hidden;
    font-size: 0;
    background: rgba(245, 158, 11, 0.2);
  }
  .team-empty {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--gray-600);
    font-size: 1.05rem;
    margin: 0 0 48px;
  }
  .team-card-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--teal-deep);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .team-card-role {
    font-size: 0.82rem;
    color: var(--cyan-deep);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .team-card-tenure {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--gray-600);
    margin-bottom: 14px;
  }
  .team-card-divider {
    width: 28px; height: 2px;
    background: var(--cyan);
    margin: 0 auto 14px;
    opacity: 0.6;
  }
  .team-card-quote {
    font-size: 0.86rem;
    color: var(--teal);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
    min-height: 3.2em;
  }
  .team-card-specialties {
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  }
  .team-card-specialty {
    padding: 3px 9px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--teal-deep);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .team-recruiting {
    margin-top: 64px;
    padding: 36px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 184, 166, 0.06) 100%);
    border: 1px dashed var(--amber);
    border-radius: 14px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .team-recruiting-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--teal-deep);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .team-recruiting-title .amber { color: var(--amber-deep); }
  .team-recruiting-desc {
    color: var(--gray-700);
    font-size: 0.96rem;
    line-height: 1.5;
    max-width: 540px;
    margin: 0 auto 18px;
  }
  .team-recruiting-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    background: var(--amber);
    color: var(--teal-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.25s ease;
  }
  .team-recruiting-cta:hover {
    background: var(--amber-deep);
    color: var(--white);
    transform: translateY(-2px);
  }
  @media (max-width: 768px) {
    .team-featured-card { grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; text-align: center; }
    .team-featured-avatar { margin: 0 auto; width: 120px; height: 120px; font-size: 3.4rem; }
    .team-featured-quote { padding-left: 0; border-left: 0; border-top: 2px solid var(--amber); padding-top: 16px; }
    .page-header { padding: 100px 0 60px; }
  }

  /* ===== PRODUKT-DETAIL-SEITEN ===== */
  .product-back-bar {
    background: var(--teal-darker);
    padding: 18px 0;
    border-bottom: 1px solid rgba(20, 184, 166, 0.12);
  }
  .product-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--t-base) var(--ease-out-soft),
                gap var(--t-base) var(--ease-out-snap),
                transform var(--t-base) var(--ease-out-snap);
  }
  .product-back:hover {
    color: var(--cyan);
    gap: 12px;
    transform: translateX(-3px);
  }
  .product-back svg {
    transition: transform var(--t-base) var(--ease-out-snap);
  }
  .product-back:hover svg { transform: translateX(-3px); }

  /* Produkt-Hero (groÃŸzÃ¼giger als Standard Page-Header) */
  .product-hero {
    --product-hero-icon-size: 240px;
    --product-hero-art-size: min(500px, 46vw);
    padding: 80px 0 90px;
    background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-darker) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .product-hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 80% 50%, rgba(20, 184, 166, 0.22) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 15% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  }
  .product-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  @media (min-width: 901px) {
    /* Einheitliche Hero-HÃ¶he wie IT-Sicherheit (Icon-Spalte + Lead-Text) */
    .product-hero-grid {
      min-height: 360px;
    }
  }
  .product-hero-content { max-width: 720px; }
  .product-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px;
    background: rgba(20, 184, 166, 0.14);
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 26px;
  }
  .product-hero-eyebrow .dot {
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: live-pulse 1.8s ease-in-out infinite;
  }
  .product-hero-eyebrow.amber {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--amber);
  }
  .product-hero-eyebrow.amber .dot {
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
  }
  .product-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
  }
  .product-hero-title .accent {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .product-hero-title .amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .product-hero-lede {
    font-size: 1.18rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    min-height: calc(1.18rem * 1.6 * 2);
  }
  .product-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .product-hero-meta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 999px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
  }
  .product-hero-meta-pill svg { color: var(--cyan); }
  .product-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    align-self: stretch;
    min-height: var(--product-hero-icon-size);
  }
  /* Glow-Grafiken (Digital Link, Complete Care) â€” gleiche Spalte wie IT-Sicherheit */
  .product-hero-visual--art {
    overflow: visible;
    z-index: 1;
  }
  .product-hero-icon-large {
    width: var(--product-hero-icon-size);
    height: var(--product-hero-icon-size);
    border-radius: 32px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-deep);
    box-shadow: 0 30px 70px -20px rgba(20, 184, 166, 0.55), inset 0 -10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  .product-hero-icon-large.amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    box-shadow: 0 30px 70px -20px rgba(245, 158, 11, 0.55), inset 0 -10px 30px rgba(0, 0, 0, 0.15);
  }
  .product-hero-icon-large::after {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1.5px dashed rgba(20, 184, 166, 0.4);
    border-radius: 38px;
    animation: spin 50s linear infinite;
  }
  .product-hero-icon-large.amber::after {
    border-color: rgba(245, 158, 11, 0.4);
  }
  .product-hero-art {
    width: var(--product-hero-art-size);
    height: var(--product-hero-art-size);
    flex-shrink: 0;
    pointer-events: none;
    opacity: 0.52;
    z-index: 1;
  }
  .product-hero-art svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .product-hero-art--digital-link {
    opacity: 0.5;
  }
  .product-hero-art--digital-link .dl-orbit {
    transform-origin: 260px 260px;
    animation: dl-orbit-spin 48s linear infinite;
  }
  .product-hero-art--digital-link .dl-pulse {
    animation: dl-pulse-travel 4s ease-in-out infinite;
  }
  .product-hero-art--software {
    opacity: 0.52;
  }
  .product-hero-art--notebook {
    opacity: 0.62;
  }
  .product-hero-art--notebook .nb-orbit {
    transform-origin: 240px 228px;
    animation: dl-orbit-spin 56s linear infinite;
  }
  .product-hero-art--notebook .nb-laptop {
    animation: nb-float 5s ease-in-out infinite;
  }
  .product-hero-art--notebook .nb-signal {
    animation: nb-pulse 3.2s ease-in-out infinite;
  }
  @keyframes nb-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes nb-pulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
  }
  .product-hero-visual--code {
    overflow: visible;
    z-index: 1;
  }
  .product-hero-code-scene {
    position: relative;
    width: min(420px, 42vw);
    perspective: 1400px;
    transform-style: preserve-3d;
  }
  .product-hero-code-scene::after {
    content: '';
    position: absolute;
    inset: -10% -6%;
    border: 1.5px dashed rgba(20, 184, 166, 0.28);
    border-radius: 22px;
    transform: rotate(-5deg);
    pointer-events: none;
    animation: spin 52s linear infinite;
  }
  .product-hero-code-glow {
    position: absolute;
    inset: -18% -12%;
    background: radial-gradient(ellipse 70% 60% at 58% 42%, rgba(45, 212, 191, 0.32) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
  }
  .product-hero-code-back {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.28;
    transform: perspective(1400px) rotateY(-16deg) rotateX(7deg) translate3d(28px, 32px, -40px) scale(0.94);
    filter: blur(0.4px);
    pointer-events: none;
  }
  .product-hero-code-window {
    position: relative;
    z-index: 2;
  }

  .product-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--t-base) var(--ease-out-soft);
  }
  .product-detail-back:hover {
    color: var(--cyan-glow);
  }

  /* Brotkrumen â€” fixed unter der Nav, liegt auf dem Hero (nicht im weiÃŸen Bereich) */
  ol.product-breadcrumb-track {
    position: fixed;
    top: var(--site-header-height);
    left: 0;
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 0;
    margin: 0;
    min-height: var(--breadcrumb-track-height);
    padding: 2px 6px 2px 10px;
    border-radius: 0;
    z-index: 90;
    background:
      linear-gradient(180deg, rgba(20, 184, 166, 0.16) 0%, rgba(20, 184, 166, 0.05) 42%, transparent 100%),
      rgba(4, 18, 15, 0.28);
    border: none;
    border-bottom: 1px solid rgba(20, 184, 166, 0.28);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow:
      inset 0 1px 0 rgba(45, 212, 191, 0.32),
      inset 0 -1px 14px -4px rgba(20, 184, 166, 0.2),
      0 0 36px -6px rgba(20, 184, 166, 0.42),
      0 4px 28px -6px rgba(20, 184, 166, 0.28);
    overflow: hidden;
  }
  ol.product-breadcrumb-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.04) 44%,
      rgba(45, 212, 191, 0.14) 50%,
      rgba(255, 255, 255, 0.04) 56%,
      transparent 70%
    );
    pointer-events: none;
  }
  ol.product-breadcrumb-track::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(45, 212, 191, 0.35) 20%,
      rgba(45, 212, 191, 0.85) 50%,
      rgba(45, 212, 191, 0.35) 80%,
      transparent 100%
    );
    box-shadow: 0 0 14px 1px rgba(45, 212, 191, 0.45);
    pointer-events: none;
  }

  /* ===== SITE HEADER ===== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--site-header-bar-height);
    margin-bottom: calc(-1 * var(--site-header-bar-height));
    background: transparent;
    overflow: visible;
    transition: background var(--t-base) var(--ease-out-soft),
                backdrop-filter var(--t-base) var(--ease-out-soft);
  }
  .site-header.scrolled {
    background: rgba(6, 20, 16, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: none;
  }
  .site-header-row--contact .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .site-header-row--nav {
    height: var(--nav-menu-height);
    overflow: visible;
  }
  .site-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .nav-spacer {
    width: min(400px, 38vw);
    flex-shrink: 0;
  }
  .site-header-brand {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
  }
  .site-header-brand .container {
    height: 100%;
    overflow: visible;
  }
  .site-header-brand .brand {
    pointer-events: auto;
  }

  .hero,
  .product-hero,
  .page-header {
    padding-top: calc(var(--site-header-height) + 16px);
  }
  .has-page-breadcrumb .page-header,
  .has-page-breadcrumb .product-hero:first-of-type {
    padding-top: calc(var(--site-header-height) + var(--breadcrumb-track-height) + 56px);
  }

  .product-breadcrumb-node {
    display: inline-flex;
    align-items: center;
    position: relative;
  }
  .product-breadcrumb-link {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color var(--t-base) var(--ease-out-soft),
                background var(--t-base) var(--ease-out-soft),
                box-shadow var(--t-base) var(--ease-out-soft);
  }
  .product-breadcrumb-link:hover {
    color: var(--cyan-glow);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 14px -4px rgba(20, 184, 166, 0.45);
  }
  .product-breadcrumb-sep {
    position: relative;
    width: 22px;
    height: 1px;
    margin: 0 2px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.05), rgba(45, 212, 191, 0.75), rgba(20, 184, 166, 0.05));
    flex-shrink: 0;
  }
  .product-breadcrumb-sep::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan-glow);
  }
  .product-breadcrumb-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 12px 2px 10px;
    border-radius: 3px;
    background: rgba(20, 184, 166, 0.14);
    border: 1px solid rgba(45, 212, 191, 0.35);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan-glow);
    box-shadow: 0 0 18px -6px rgba(20, 184, 166, 0.45);
  }
  .product-breadcrumb-current::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
    animation: live-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
  }
  @media (max-width: 640px) {
    ol.product-breadcrumb-track {
      padding: 4px 6px 4px 8px;
    }
    .product-breadcrumb-link,
    .product-breadcrumb-current {
      font-size: 0.58rem;
      letter-spacing: 0.07em;
      padding: 4px 8px;
    }
    .product-breadcrumb-current {
      padding: 2px 8px 2px 8px;
    }
    .product-breadcrumb-sep { width: 14px; }
  }

  /* Perspektiv-Panel: DGUV PrÃ¼fprotokoll */
  .inspection-window .inspection-body {
    padding: 18px 20px 20px;
  }
  .inspection-badge {
    display: inline-flex;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cyan-glow);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.28);
  }
  .inspection-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
  .inspection-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.78);
  }
  .inspection-checklist li svg {
    color: var(--green-ok);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(74, 222, 128, 0.45));
  }
  .inspection-devices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  .inspection-device-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.62);
    padding: 5px 9px;
    border-radius: 6px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.18);
  }
  .inspection-plaque {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px dashed rgba(20, 184, 166, 0.35);
  }
  .inspection-plaque-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
  }
  .inspection-plaque-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--cyan-glow);
  }
  .inspection-flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .inspection-flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
  }
  .inspection-flow-num {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--cyan-glow);
    min-width: 22px;
  }

  /* Perspektiv-Panel: Monitoring (/managed-services/) */
  .monitor-window .monitor-body {
    padding: 18px 20px 20px;
  }
  .monitor-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan-glow);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.28);
  }
  .monitor-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-ok);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
    animation: monitor-pulse 2s ease-in-out infinite;
  }
  @keyframes monitor-pulse {
    0%, 100% { opacity: 0.55; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1); }
  }
  .monitor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }
  .monitor-stat {
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.18);
    text-align: center;
  }
  .monitor-stat-val {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .monitor-stat-label {
    display: block;
    margin-top: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.48);
  }
  .monitor-chart {
    height: 56px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }
  .monitor-chart svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .monitor-chart-fill {
    fill: rgba(20, 184, 166, 0.14);
  }
  .monitor-chart-line {
    fill: none;
    stroke: var(--cyan-glow);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(45, 212, 191, 0.65));
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: monitor-chart-draw 4s ease-in-out infinite alternate;
  }
  @keyframes monitor-chart-draw {
    from { stroke-dashoffset: 420; }
    to { stroke-dashoffset: 0; }
  }
  .monitor-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .monitor-services li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
  }
  .monitor-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .monitor-status.ok {
    background: var(--green-ok);
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.65);
  }
  .monitor-svc-name {
    color: rgba(255, 255, 255, 0.88);
  }
  .monitor-svc-meta {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.66rem;
  }
  .monitor-rack {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .monitor-rack-unit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }
  .monitor-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-ok);
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
    flex-shrink: 0;
  }
  .monitor-led.warn {
    background: var(--amber);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.55);
  }
  .monitor-rack-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
  }

  /* Perspektiv-Panel: Fleet (/rental-services/) */
  .rental-window .rental-body {
    padding: 18px 20px 20px;
  }
  .rental-flex-badge {
    display: inline-flex;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan-glow);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.28);
  }
  .rental-fleet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
  .rental-fleet--types {
    grid-template-columns: repeat(4, 1fr);
  }
  .rental-fleet--notebooks {
    grid-template-columns: repeat(3, 1fr);
  }
  .rental-device.is-featured {
    background: rgba(20, 184, 166, 0.14);
    border-color: rgba(20, 184, 166, 0.42);
    box-shadow: 0 0 28px -8px rgba(20, 184, 166, 0.55);
  }
  .rental-device.is-featured .rental-device-meta {
    color: var(--cyan-glow);
  }
  .rental-fleet-status {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rental-fleet-status-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
  }
  .rental-fleet-status-item strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
  }
  .rental-fleet-status-item.is-highlight strong {
    color: var(--cyan-glow);
  }
  .rental-fleet-status-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.14);
  }
  .rental-capex-shift {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 14px;
  }
  .rental-capex-side {
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }
  .rental-capex-side--capex {
    opacity: 0.72;
  }
  .rental-capex-side--opex {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.28);
    box-shadow: 0 0 24px -8px rgba(20, 184, 166, 0.35);
  }
  .rental-capex-tag {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 4px;
  }
  .rental-capex-side--opex .rental-capex-tag {
    color: var(--cyan-glow);
  }
  .rental-capex-term {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
  }
  .rental-capex-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .rental-capex-points li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.52);
    padding-left: 10px;
    position: relative;
  }
  .rental-capex-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
  }
  .rental-capex-side--opex .rental-capex-points li {
    color: rgba(255, 255, 255, 0.72);
  }
  .rental-capex-side--opex .rental-capex-points li::before {
    background: var(--cyan);
  }
  .rental-capex-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--cyan-glow);
    padding: 0 2px;
  }
  .rental-capex-arrow span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.42);
    white-space: nowrap;
  }
  .rental-service-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rental-service-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }
  .rental-service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--cyan-glow);
    min-width: 24px;
  }
  .rental-service-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.75);
  }

  /* CAPEX/OPEX ErklÃ¤rung (Seiteninhalt) */
  .rental-capex-explainer {
    margin-bottom: 48px;
  }
  .rental-capex-explainer-lede {
    max-width: 640px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
  }
  .rental-capex-explainer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .rental-capex-explainer-card {
    padding: 28px 24px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(26, 70, 64, 0.12);
    box-shadow: 0 12px 32px -16px rgba(26, 70, 64, 0.12);
  }
  .rental-capex-explainer-card.featured {
    background: linear-gradient(160deg, rgba(20, 184, 166, 0.08) 0%, var(--white) 100%);
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 20px 48px -18px rgba(20, 184, 166, 0.25);
  }
  .rental-capex-explainer-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 8px;
  }
  .rental-capex-explainer-card.featured .rental-capex-explainer-tag {
    color: var(--cyan-deep);
  }
  .rental-capex-explainer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--teal-deep);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .rental-capex-explainer-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 16px;
  }
  .rental-capex-explainer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .rental-capex-explainer-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--gray-700);
  }
  .rental-capex-explainer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.18;
  }
  .rental-capex-explainer-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 5px;
    height: 3px;
    border-left: 1.5px solid var(--cyan);
    border-bottom: 1.5px solid var(--cyan);
    transform: rotate(-45deg);
  }
  .rental-capex-explainer-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--cyan);
    padding-top: 40px;
  }
  .rental-capex-explainer-arrow span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-600);
    text-align: center;
    max-width: 88px;
    line-height: 1.4;
  }

  @media (max-width: 900px) {
    .rental-capex-explainer-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .rental-capex-explainer-arrow {
      flex-direction: row;
      padding: 0;
      justify-content: center;
    }
    .rental-capex-explainer-arrow svg {
      transform: rotate(90deg);
    }
    .rental-fleet--types {
      grid-template-columns: repeat(2, 1fr);
    }
    .rental-capex-shift {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .rental-capex-arrow {
      flex-direction: row;
      padding: 4px 0;
    }
    .rental-capex-arrow svg {
      transform: rotate(90deg);
    }
  }

  .rental-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color var(--t-base) var(--ease-out-soft),
                background var(--t-base) var(--ease-out-soft);
  }
  .product-hero-code-scene:hover .rental-device {
    border-color: rgba(20, 184, 166, 0.28);
  }
  .rental-device-icon {
    color: var(--cyan-glow);
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.45));
    line-height: 0;
  }
  .rental-device-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
  }
  .rental-device-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.42);
  }
  .rental-cycle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.07);
    border: 1px solid rgba(20, 184, 166, 0.16);
  }
  .rental-cycle-icon {
    flex-shrink: 0;
    animation: spin 14s linear infinite;
  }
  .rental-cycle-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.88);
  }
  .rental-cycle-sub {
    display: block;
    margin-top: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
  }

  @media (min-width: 901px) {
    .product-hero-visual--code .product-hero-code-scene {
      position: absolute;
      right: -4%;
      top: 50%;
      transform: translateY(-50%);
    }
    .product-hero-visual--notebook {
      align-items: flex-start;
      padding-top: 12px;
    }
    .product-hero-visual--notebook .product-hero-code-scene--notebook {
      top: 8%;
      transform: none;
    }
  }
  @media (min-width: 901px) {
    /* 2-Spalten wie IT-Sicherheit; Glow-Grafik wie frÃ¼her page-header-art */
    .product-hero-visual--art .product-hero-art {
      position: absolute;
      right: -6%;
      top: 50%;
      transform: translateY(-50%);
      width: var(--product-hero-art-size);
      height: var(--product-hero-art-size);
      max-width: none;
    }
  }

  /* Produkt-Sektionen (alternierend hell/dunkel) */
  .product-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .product-section:not(.dark):not(.light):not(.cream) {
    background: var(--off-white);
    color: var(--ink);
  }
  .cms-content {
    max-width: 820px;
  }
  .cms-content h2,
  .cms-content h3,
  .cms-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--teal-deep);
    line-height: 1.25;
    margin: 2.2rem 0 0.85rem;
  }
  .cms-content h2 { font-size: 1.65rem; font-weight: 800; }
  .cms-content h3 { font-size: 1.3rem; font-weight: 700; }
  .cms-content h4 { font-size: 1.1rem; font-weight: 700; }
  .cms-content p {
    margin: 0 0 1rem;
    color: var(--gray-800);
    line-height: 1.7;
  }
  .cms-content ul,
  .cms-content ol {
    margin: 0 0 1.25rem 1.2rem;
    color: var(--gray-800);
  }
  .cms-content li { margin: 0.35rem 0; line-height: 1.6; }
  .cms-content hr {
    border: 0;
    border-top: 1px solid var(--gray-100);
    margin: 2rem 0;
  }
  .cms-content strong { color: var(--teal-deep); }
  .cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0 1.75rem;
    font-size: 0.95rem;
  }
  .cms-content th,
  .cms-content td {
    border: 1px solid var(--gray-100);
    padding: 10px 12px;
    text-align: left;
  }
  .cms-content th { background: var(--gray-50); color: var(--teal-deep); }

  /* ===== SUBPAGES GRID (im page-header) ===== */
  .page-header--subpages {
    padding-bottom: 72px;
  }
  .page-header--subpages .page-header-inner {
    max-width: 580px;
    margin-bottom: 8px;
  }
  .page-header-art {
    position: absolute;
    top: 6%;
    right: -3%;
    width: min(500px, 46vw);
    height: min(500px, 46vw);
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
  }
  .page-header-art svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .page-header-art--digital-link {
    opacity: 0.44;
    top: 4%;
    right: -4%;
  }
  .page-header-art--team {
    opacity: 0.48;
    top: 2%;
    right: -2%;
  }
  .page-header-art .dl-orbit {
    transform-origin: 260px 260px;
    animation: dl-orbit-spin 48s linear infinite;
  }
  .page-header-art .dl-pulse {
    animation: dl-pulse-travel 4s ease-in-out infinite;
  }
  .page-header-art--team .team-orbit {
    transform-origin: 260px 255px;
  }
  .page-header-art--team .team-orbit--slow {
    animation: team-orbit-spin 56s linear infinite;
  }
  .page-header-art--team .team-orbit--rev {
    animation: team-orbit-spin-rev 42s linear infinite;
  }
  .page-header-art--team .team-person-ring--amber {
    transform-box: fill-box;
    transform-origin: center;
    animation: team-orbit-spin 28s linear infinite;
  }
  .page-header-art--team .team-person--lead {
    animation: team-float 5.5s ease-in-out infinite;
  }
  .page-header-art--team .team-person--a {
    animation: team-float 6.2s ease-in-out infinite 0.4s;
  }
  .page-header-art--team .team-person--b {
    animation: team-float 5.8s ease-in-out infinite 0.9s;
  }
  .page-header-art--team .team-person--c {
    animation: team-float 6.5s ease-in-out infinite 1.3s;
  }
  .page-header-art--team .team-person--d {
    animation: team-float 5.4s ease-in-out infinite 0.7s;
  }
  .page-header-art--team .team-person--sat {
    animation: team-float 7s ease-in-out infinite 1.6s;
  }
  .page-header-art--team .team-pulse {
    animation: dl-pulse-travel 4.2s ease-in-out infinite;
  }
  @keyframes dl-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes team-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes team-orbit-spin-rev {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
  }
  @keyframes team-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
  }
  @keyframes dl-pulse-travel {
    0%, 100% { opacity: 0.25; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
  }
  @media (max-width: 1200px) {
    .page-header-art {
      width: 380px;
      height: 380px;
      right: -70px;
      opacity: 0.28;
    }
    .page-header-art--digital-link { opacity: 0.3; }
    .page-header-art--team { opacity: 0.34; }
  }
  @media (max-width: 900px) {
    .page-header-art { display: none; }
    .page-header--subpages .page-header-inner { max-width: 720px; }
  }
  .subpages-in-header {
    position: relative;
    z-index: 2;
    margin-top: 36px;
  }
  .subpages-in-header .subpages-lede {
    margin: 0 0 28px;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.65;
  }
  .subpages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .subpages-grid.dense {
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 960px) {
    .subpages-grid,
    .subpages-grid.dense { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .page-header--subpages { padding-bottom: 56px; }
    .subpages-in-header { margin-top: 28px; }
    .subpages-grid,
    .subpages-grid.dense { grid-template-columns: 1fr; }
  }
  .subpage-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px 20px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition:
      transform var(--t-base) var(--ease-out-snap),
      background var(--t-base) var(--ease-out-soft),
      border-color var(--t-base) var(--ease-out-soft),
      box-shadow var(--t-base) var(--ease-out-soft);
  }
  .subpage-card:hover {
    transform: translateY(-4px);
    background: rgba(20, 184, 166, 0.12);
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.45);
  }
  .subpage-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .subpage-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan-glow);
    letter-spacing: 0.06em;
  }
  .subpage-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--cyan-glow);
    background: rgba(20, 184, 166, 0.12);
    transition: transform var(--t-base) var(--ease-out-snap), background var(--t-fast) var(--ease-out-soft);
  }
  .subpage-card:hover .subpage-arrow {
    transform: translateX(3px);
    background: var(--cyan);
    color: var(--teal-deep);
  }
  .subpage-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 750;
    font-size: 1.15rem;
    line-height: 1.25;
    margin: 0;
    color: var(--white);
  }
  .subpage-card-teaser {
    margin: 0;
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
  }
  .subpage-card-cta {
    margin-top: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan-glow);
    letter-spacing: 0.02em;
  }

  .product-section.light {
    background: linear-gradient(180deg, #E4EEE6 0%, #D2E8DC 100%);
    color: var(--teal);
  }
  .product-section.dark {
    background: linear-gradient(180deg, var(--teal-darker) 0%, var(--teal-deep) 100%);
    color: var(--white);
  }
  .product-section.cream {
    background: linear-gradient(180deg, #F5F1E8 0%, #ECE5D2 100%);
    color: var(--teal);
  }
  .product-section-head {
    max-width: 760px;
    margin-bottom: 60px;
  }
  .product-section-head--follow {
    margin-top: 48px;
  }
  .product-section-head--follow .product-section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }
  .product-section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cyan-deep);
    margin-bottom: 14px;
  }
  .product-section.dark .product-section-eyebrow { color: var(--cyan-glow); }
  .product-section-eyebrow .num {
    padding: 3px 8px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 4px;
    font-size: 0.66rem;
  }
  .product-section.dark .product-section-eyebrow .num {
    background: rgba(20, 184, 166, 0.18);
  }
  .product-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .product-section.dark .product-section-title { color: var(--white); }
  .product-section.light .product-section-title,
  .product-section.cream .product-section-title { color: var(--teal-deep); }
  .product-section-title .cyan {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .product-section.light .product-section-title .cyan,
  .product-section.cream .product-section-title .cyan {
    background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .product-section-lede {
    font-size: 1.08rem;
    line-height: 1.6;
    max-width: 680px;
  }
  /* FlieÃŸtext unter Volllbreite-Grids: nicht auf Intro-Breite stauchen */
  .container > .product-section-lede {
    max-width: none;
  }
  .product-section.dark .product-section-lede { color: rgba(255, 255, 255, 0.78); }
  .product-section.light .product-section-lede,
  .product-section.cream .product-section-lede { color: var(--gray-700); }

  /* Feature-Cards-Grid fÃ¼r Leistungsbausteine */
  .product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  /* FÃ¼r 6-Card-Sektionen explizit 3 Spalten, damit kein 4+2-Layout entsteht */
  .product-features-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 900px) {
    .product-features-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px) {
    .product-features-grid.cols-3 { grid-template-columns: 1fr; }
  }
  .product-feature-card {
    background: var(--white);
    border: 1px solid rgba(20, 184, 166, 0.18);
    border-radius: 14px;
    padding: 28px;
    transition: transform var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft),
                box-shadow var(--t-base) var(--ease-out-soft);
    will-change: transform;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .product-section.dark .product-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(20, 184, 166, 0.25);
    backdrop-filter: blur(10px);
  }
  .product-section.cream .product-feature-card {
    background: rgba(255, 255, 255, 0.7);
  }
  .product-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 24px 48px -18px rgba(20, 184, 166, 0.3);
  }
  .product-feature-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 10px 24px -8px rgba(20, 184, 166, 0.5);
    flex-shrink: 0;
  }
  .product-feature-icon.amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    box-shadow: 0 10px 24px -8px rgba(245, 158, 11, 0.5);
    color: var(--white);
  }
  .product-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--teal-deep);
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .product-section.dark .product-feature-title { color: var(--white); }
  .product-feature-desc {
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--gray-700);
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .product-section.dark .product-feature-desc { color: rgba(255, 255, 255, 0.72); }
  /* Wenn keine Liste folgt: kein margin-bottom, damit Karten ohne Liste sauber abschlieÃŸen */
  .product-feature-desc:last-child { margin-bottom: 0; }
  .product-feature-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
  }
  .product-feature-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--gray-700);
  }
  .product-section.dark .product-feature-list li { color: rgba(255, 255, 255, 0.78); }
  .product-feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(20, 184, 166, 0.6);
  }

  /* Vorteile Grid */
  .product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
  /* FÃ¼r 5-Card-Sektionen: 5 Cards in einer Reihe (sauberer als 4+1) */
  .product-benefits-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  @media (max-width: 1100px) {
    .product-benefits-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 700px) {
    .product-benefits-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .product-benefits-grid.cols-5 { grid-template-columns: 1fr; }
  }
  .product-benefit {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 12px;
    padding: 24px;
    transition: transform var(--t-base) var(--ease-out-soft),
                background var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft);
  }
  .product-section.light .product-benefit,
  .product-section.cream .product-benefit {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(20, 184, 166, 0.2);
  }
  .product-benefit:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.08);
  }
  .product-section.light .product-benefit:hover,
  .product-section.cream .product-benefit:hover {
    background: rgba(255, 255, 255, 0.92);
  }
  .product-benefit-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--cyan-deep);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
  }
  .product-section.dark .product-benefit-num { color: var(--cyan-glow); }
  .product-benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .product-section.dark .product-benefit-title { color: var(--white); }
  .product-section.light .product-benefit-title,
  .product-section.cream .product-benefit-title { color: var(--teal-deep); }
  .product-benefit-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .product-section.dark .product-benefit-desc { color: rgba(255, 255, 255, 0.7); }
  .product-section.light .product-benefit-desc,
  .product-section.cream .product-benefit-desc { color: var(--gray-700); }

  /* Service-Level / Tier-Karten (fÃ¼r Managed Services) */
  .product-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .product-tiers-grid--steps {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .product-tiers-grid--steps .product-tier-name {
    font-size: clamp(1.05rem, 2.2vw, 1.32rem);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.25;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .product-tier-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 184, 166, 0.06) 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    transition: transform var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft),
                box-shadow var(--t-base) var(--ease-out-soft);
    display: flex;
    flex-direction: column;
  }
  .product-tier-card.featured {
    background: linear-gradient(160deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-color: var(--cyan);
    box-shadow: 0 20px 50px -16px rgba(20, 184, 166, 0.5);
  }
  .product-tier-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 24px 56px -18px rgba(20, 184, 166, 0.45);
  }
  .product-tier-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .product-tier-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .product-tier-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(20, 184, 166, 0.2);
  }
  .product-tier-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }
  .product-tier-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
  }
  .product-tier-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 5px;
    width: 14px; height: 14px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.18;
  }
  .product-tier-list li::after {
    content: '';
    position: absolute;
    left: 4px; top: 9px;
    width: 5px; height: 3px;
    border-left: 1.5px solid var(--cyan);
    border-bottom: 1.5px solid var(--cyan);
    transform: rotate(-45deg);
  }
  .product-tier-badge {
    position: absolute;
    top: -10px; right: 20px;
    padding: 4px 10px;
    background: var(--cyan);
    color: var(--teal-deep);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .product-section.light .product-tier-card,
  .product-section.cream .product-tier-card {
    background: var(--white);
    border-color: rgba(20, 184, 166, 0.22);
    box-shadow: 0 8px 32px -12px rgba(15, 118, 110, 0.12);
  }
  .product-section.light .product-tier-card.featured,
  .product-section.cream .product-tier-card.featured {
    background: linear-gradient(160deg, #ffffff 0%, rgba(209, 250, 229, 0.9) 100%);
    border-color: var(--cyan);
    box-shadow: 0 16px 48px -14px rgba(20, 184, 166, 0.32);
  }
  .product-section.light .product-tier-card:hover,
  .product-section.cream .product-tier-card:hover {
    box-shadow: 0 20px 48px -16px rgba(20, 184, 166, 0.28);
  }
  .product-section.light .product-tier-num,
  .product-section.cream .product-tier-num {
    color: var(--cyan-deep);
  }
  .product-section.light .product-tier-name,
  .product-section.cream .product-tier-name {
    color: var(--teal-deep);
  }
  .product-section.light .product-tier-desc,
  .product-section.cream .product-tier-desc {
    color: var(--gray-700);
    border-bottom-color: rgba(20, 184, 166, 0.15);
  }
  .product-section.light .product-tier-list li,
  .product-section.cream .product-tier-list li {
    color: var(--gray-700);
  }

  /* "FÃ¼r wen?" Liste */
  .product-target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    list-style: none;
  }
  .product-target-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(20, 184, 166, 0.18);
    border-radius: 12px;
    transition: all var(--t-base) var(--ease-out-soft);
  }
  .product-section.dark .product-target-list li {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(20, 184, 166, 0.25);
    color: rgba(255, 255, 255, 0.85);
  }
  .product-target-list li:hover {
    transform: translateX(4px);
    border-color: var(--cyan);
  }
  .product-target-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--cyan-deep);
  }
  .product-target-list li:not(:has(svg))::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 14px;
    margin-top: 4px;
    border: solid var(--cyan-deep);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
  }
  .product-section.dark .product-target-list li:not(:has(svg))::before {
    border-color: var(--cyan-glow);
  }
  .product-section.dark .product-target-list li svg { color: var(--cyan-glow); }

  /* Vergleich-Block */
  .product-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .product-comparison-col {
    padding: 32px 28px;
    border-radius: 16px;
  }
  .product-comparison-col.us {
    background: linear-gradient(160deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.05) 100%);
    border: 1.5px solid var(--cyan);
  }
  .product-comparison-col.them {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .product-section.light .product-comparison-col.us,
  .product-section.cream .product-comparison-col.us {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-color: var(--cyan-deep);
  }
  .product-section.light .product-comparison-col.them,
  .product-section.cream .product-comparison-col.them {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(26, 70, 64, 0.1);
  }
  .product-comparison-head {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .product-comparison-col.us .product-comparison-head { color: var(--cyan-glow); }
  .product-comparison-col.them .product-comparison-head { color: rgba(255, 255, 255, 0.6); }
  .product-section.light .product-comparison-col.us .product-comparison-head,
  .product-section.cream .product-comparison-col.us .product-comparison-head { color: var(--cyan-deep); }
  .product-section.light .product-comparison-col.them .product-comparison-head,
  .product-section.cream .product-comparison-col.them .product-comparison-head { color: var(--gray-600); }
  .product-comparison-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
  }
  .product-comparison-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.93rem;
    line-height: 1.5;
  }
  .product-comparison-list li svg { flex-shrink: 0; margin-top: 3px; }
  .product-comparison-col.us .product-comparison-list li svg { color: var(--cyan); }
  .product-comparison-col.them .product-comparison-list li svg { color: rgba(255, 255, 255, 0.3); }
  .product-section.light .product-comparison-col.them .product-comparison-list li svg,
  .product-section.cream .product-comparison-col.them .product-comparison-list li svg { color: var(--gray-400); }
  .product-comparison-col.them .product-comparison-list li { color: rgba(255, 255, 255, 0.5); text-decoration: line-through; text-decoration-color: rgba(255, 255, 255, 0.2); }
  .product-section.light .product-comparison-col.them .product-comparison-list li,
  .product-section.cream .product-comparison-col.them .product-comparison-list li { color: var(--gray-600); text-decoration: line-through; text-decoration-color: rgba(26, 70, 64, 0.18); }

  /* Produkt-CTA-Block am Ende der Seite */
  .product-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal-deep) 50%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
  }
  .product-final-cta::before {
    content: '';
    position: absolute;
    top: -150px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 60%);
    opacity: 0.22;
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite;
  }
  .product-final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
  }
  .product-final-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .product-final-cta-title .cyan {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .product-final-cta-lede {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    max-width: 580px;
    margin: 0 auto 36px;
  }
  .product-final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .product-final-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform var(--t-base) var(--ease-out-snap),
                box-shadow var(--t-base) var(--ease-out-soft),
                background var(--t-base) var(--ease-out-soft);
    will-change: transform;
  }
  .product-final-cta-btn.primary {
    background: var(--cyan);
    color: var(--teal-deep);
    box-shadow: 0 16px 36px -12px rgba(20, 184, 166, 0.6);
  }
  .product-final-cta-btn.primary:hover {
    background: var(--cyan-glow);
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -14px rgba(20, 184, 166, 0.8);
  }
  .product-final-cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
  }
  .product-final-cta-btn.secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan-glow);
    transform: translateY(-3px);
  }

  @media (max-width: 900px) {
    .product-hero { --product-hero-icon-size: 180px; }
    .product-hero-grid { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
    .product-hero-visual {
      order: -1;
      min-height: 0;
      align-self: auto;
    }
    .product-hero-visual--code {
      order: -1;
    }
    .product-hero-visual--art .product-hero-art {
      position: static;
      transform: none;
      width: min(320px, 88vw);
      height: min(320px, 88vw);
      margin: 0 auto;
    }
    .product-hero-lede { min-height: 0; }
    .product-hero-visual--code .product-hero-code-scene {
      position: static;
      transform: none;
      width: min(340px, 92vw);
      margin: 0 auto;
    }
    .product-hero-code-window,
    .product-hero-code-back {
      transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    }
    .product-hero-code-back { display: none; }
    .product-hero-code-window .code-body {
      font-size: 0.72rem;
      padding: 16px 18px;
      line-height: 1.6;
    }
    .product-hero-code-window .code-header {
      padding: 10px 16px;
    }
    .product-hero-code-window .code-title {
      font-size: 0.68rem;
    }
    .monitor-window .monitor-body {
      padding: 14px 16px 16px;
    }
    .monitor-stat-val {
      font-size: 0.92rem;
    }
    .monitor-services li {
      font-size: 0.66rem;
      padding: 7px 8px;
    }
    .rental-window .rental-body {
      padding: 14px 16px 16px;
    }
    .rental-device-name {
      font-size: 0.62rem;
    }
    .rental-fleet {
      gap: 6px;
    }
    .inspection-window .inspection-body {
      padding: 14px 16px 16px;
    }
    .inspection-checklist li {
      font-size: 0.66rem;
      padding: 7px 8px;
    }
    .product-hero-art { width: min(320px, 88vw); opacity: 0.45; }
    .product-hero-art--digital-link { opacity: 0.38; }
    .product-comparison { grid-template-columns: 1fr; }
    .product-section { padding: 70px 0; }
    .product-section-head { margin-bottom: 40px; }
  }

  /* ===== HERO TAGLINE (Werbemappe: "Einfach. Sicher. Erledigt.") ===== */
  .hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: rgba(255, 255, 255, 0.88);
    margin: -8px 0 28px;
    letter-spacing: -0.005em;
    animation: fadeUp 0.8s ease 0.15s both;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
  }
  .hero-tagline .word {
    position: relative;
    padding-right: 14px;
    margin-right: 6px;
  }
  .hero-tagline .word::after {
    content: '.';
    position: absolute;
    right: 4px;
    color: var(--cyan);
    font-weight: 900;
  }
  .hero-tagline .word:last-child { padding-right: 0; margin-right: 0; }
  .hero-tagline .word:last-child::after { right: -2px; }

  /* ===== GLÃœHENDE LINE-ART ICONS (Werbemappe-Style) ===== */
  .glow-icons {
    position: absolute;
    top: 14%;
    right: -60px;
    width: 620px;
    height: 620px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
  }
  @media (max-width: 1100px) {
    .glow-icons { display: none; }
  }
  .glow-icons svg { width: 100%; height: 100%; overflow: visible; }
  .glow-icon-stroke {
    fill: none;
    stroke: var(--cyan-glow);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px var(--cyan)) drop-shadow(0 0 14px rgba(20, 184, 166, 0.6));
  }
  .glow-icon-fill {
    fill: var(--cyan);
    filter: drop-shadow(0 0 6px var(--cyan));
  }
  .glow-swoosh {
    fill: none;
    stroke: url(#swoosh-grad);
    stroke-width: 1.8;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.7));
    opacity: 0.9;
  }
  .glow-particle {
    fill: var(--cyan-glow);
    filter: drop-shadow(0 0 6px var(--cyan));
  }
  @keyframes pulse-particle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
  }
  .gp-1 { animation: pulse-particle 3s ease-in-out infinite; }
  .gp-2 { animation: pulse-particle 3.4s ease-in-out infinite 0.5s; }
  .gp-3 { animation: pulse-particle 3.8s ease-in-out infinite 1s; }
  .gp-4 { animation: pulse-particle 3.2s ease-in-out infinite 1.5s; }
  .gp-5 { animation: pulse-particle 3.6s ease-in-out infinite 2s; }
  .gp-6 { animation: pulse-particle 4s ease-in-out infinite 2.5s; }
  .gear-rotate {
    transform-origin: 480px 460px;
    animation: gear-spin 16s linear infinite;
  }
  @keyframes gear-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* ===== MAILARCHIV SPOTLIGHT (kleines Hauptprodukt) ===== */
  .mailarchiv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #061410 0%, #0a2520 50%, #061410 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(20, 184, 166, 0.15);
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
  }
  .mailarchiv-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 20% 50%, rgba(20, 184, 166, 0.16) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 80% 50%, rgba(45, 212, 191, 0.12) 0%, transparent 60%);
  }
  .mailarchiv-mega {
    position: absolute;
    bottom: -8vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(8rem, 22vw, 22rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: rgba(20, 184, 166, 0.04);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
  }
  .mailarchiv-card {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 44px;
    align-items: center;
    padding: 36px 44px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(6, 20, 16, 0.55) 100%);
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.5);
  }
  .mailarchiv-icon {
    width: 110px; height: 110px;
    flex-shrink: 0;
  }
  .mailarchiv-icon svg { width: 100%; height: 100%; overflow: visible; }
  .mailarchiv-icon-stroke {
    fill: none;
    stroke: var(--cyan-glow);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px var(--cyan)) drop-shadow(0 0 16px rgba(20, 184, 166, 0.5));
  }
  .mailarchiv-content { color: var(--white); }
  .mailarchiv-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px;
    margin-bottom: 16px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.4);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .mailarchiv-tag .dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: live-pulse 1.8s ease-in-out infinite;
  }
  .mailarchiv-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .mailarchiv-title .cyan {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mailarchiv-subtitle {
    font-size: 1rem;
    color: var(--cyan-glow);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .mailarchiv-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
    max-width: 560px;
    margin-bottom: 18px;
  }
  .mailarchiv-features {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .mailarchiv-feature {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
  }
  .mailarchiv-feature svg { color: var(--cyan); flex-shrink: 0; }
  .mailarchiv-action {
    display: flex; flex-direction: column; gap: 12px; align-items: stretch;
    flex-shrink: 0;
  }
  .mailarchiv-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    background: var(--cyan);
    color: var(--teal-deep);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px -6px rgba(20, 184, 166, 0.5);
    justify-content: center;
    white-space: nowrap;
  }
  .mailarchiv-cta:hover {
    background: var(--cyan-glow);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(20, 184, 166, 0.7);
  }
  .mailarchiv-poweredby {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .mailarchiv-poweredby strong { color: var(--cyan-glow); font-weight: 700; }

  /* ===== CLOSING MOTTO ===== */
  .closing-motto {
    padding: 110px 0 100px;
    background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal) 50%, var(--teal-deep) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(20, 184, 166, 0.18);
  }
  .closing-motto::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 280px;
    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.2) 0%, transparent 60%);
    pointer-events: none;
  }
  .motto-icons {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1200px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
  }
  @media (max-width: 900px) {
    .motto-icons { opacity: 0.12; width: 130%; }
  }
  .closing-motto-text {
    position: relative; z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5.5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .closing-motto-text .word {
    display: inline-block;
    margin-right: 14px;
  }
  .closing-motto-text .word:last-child { margin-right: 0; }
  .closing-motto-text .stark {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .closing-motto-sub {
    position: relative; z-index: 2;
    margin-top: 26px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  /* ===== START-SEITEN CTA (Anruf / E-Mail) ===== */
  .start-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, #E4EEE6 0%, #D2E8DC 50%, #CFE5D5 100%);
    position: relative;
    overflow: hidden;
  }
  .start-cta-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(20, 184, 166, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  }
  .start-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .start-cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.35);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan-deep);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 22px;
  }
  .start-cta-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: live-pulse 1.8s ease-in-out infinite;
  }
  .start-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--teal-deep);
    margin-bottom: 18px;
    letter-spacing: -0.025em;
  }
  .start-cta-title .cyan {
    background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .start-cta-lede {
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--gray-700);
    max-width: 640px;
    margin: 0 auto 44px;
  }
  .start-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
  }
  .start-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform var(--t-base) var(--ease-out-snap),
                box-shadow var(--t-base) var(--ease-out-soft),
                background var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft),
                color var(--t-base) var(--ease-out-soft);
    text-align: left;
    min-width: 280px;
    will-change: transform;
  }
  .start-cta-btn.primary {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    color: var(--white);
    box-shadow: 0 16px 36px -12px rgba(6, 20, 16, 0.4);
  }
  .start-cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -18px rgba(6, 20, 16, 0.55), 0 0 0 1px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, var(--teal) 0%, var(--cyan-deep) 100%);
  }
  .start-cta-btn.secondary {
    background: var(--white);
    color: var(--teal-deep);
    border: 1px solid rgba(20, 184, 166, 0.3);
    box-shadow: 0 12px 28px -10px rgba(20, 184, 166, 0.2);
  }
  .start-cta-btn.secondary:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    color: var(--cyan-deep);
    box-shadow: 0 22px 46px -14px rgba(20, 184, 166, 0.4);
  }
  .start-cta-btn svg {
    flex-shrink: 0;
    color: var(--cyan);
  }
  .start-cta-btn.primary svg { color: var(--cyan-glow); }
  .start-cta-btn-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .start-cta-btn-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.6;
    margin-bottom: 4px;
  }
  .start-cta-btn-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
  }
  .start-cta-promises {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }
  .start-cta-promise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
  }
  .start-cta-promise svg {
    color: var(--cyan-deep);
    flex-shrink: 0;
  }
  @media (max-width: 640px) {
    .start-cta { padding: 80px 0; }
    .start-cta-btn { min-width: 0; width: 100%; justify-content: flex-start; }
    .start-cta-promises { gap: 14px; flex-direction: column; align-items: center; }
  }

  /* ===== HERO STAMP (coordinates + meta) ===== */

  /* ===== SERVICE-TEAM CARD (ersetzt Heiner-als-Erstkontakt) ===== */
  .service-team-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, rgba(20, 184, 166, 0.08) 0%, rgba(6, 20, 16, 0.55) 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 16px;
    padding: 30px 32px;
    backdrop-filter: blur(10px);
    overflow: hidden;
  }
  .service-team-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .service-team-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.13em;
  }
  .service-team-title .dot {
    width: 7px; height: 7px;
    background: var(--green-ok);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-ok);
    animation: live-pulse 1.6s ease-in-out infinite;
  }
  .service-team-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
  }
  .service-team-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
  }
  .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .team-member:hover {
    background: rgba(20, 184, 166, 0.05);
    transform: translateY(-3px);
  }
  .team-avatar {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.4);
    position: relative;
  }
  .team-member:hover .team-avatar { transform: scale(1.05); }
  .team-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1;
  }
  .team-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
  }
  .team-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
  }
  .team-status .dot {
    width: 5px; height: 5px;
    background: var(--green-ok);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green-ok);
  }
  .team-status .dot.amber {
    background: var(--amber);
    box-shadow: 0 0 6px var(--amber);
  }
  .service-team-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .service-team-promise {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 340px;
    line-height: 1.4;
  }
  .service-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: var(--cyan);
    color: var(--teal-deep);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px -6px rgba(20, 184, 166, 0.5);
    letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .service-phone:hover {
    background: var(--cyan-glow);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(20, 184, 166, 0.7);
  }

  /* ===== BRIEF VOM GESCHÃ„FTSFÃœHRER (editorial) ===== */
  .gf-letter {
    position: relative;
    background: linear-gradient(155deg, #FAF8F2 0%, #F1ECDF 100%);
    color: var(--teal);
    padding: 40px 44px;
    border-radius: 4px;
    box-shadow: 0 30px 60px -25px rgba(6, 20, 16, 0.5), 0 0 0 1px rgba(20, 184, 166, 0.1);
    transform: rotate(-0.5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
  }
  .gf-letter:hover { transform: rotate(0deg); }
  .gf-letter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber) 0%, var(--cyan) 100%);
  }
  .gf-letter::after {
    content: 'BRIEF';
    position: absolute;
    top: 18px; right: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.2em;
  }
  .gf-letter-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px dashed rgba(26, 70, 64, 0.18);
  }
  .gf-letter-mark {
    width: 44px; height: 44px;
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--teal);
    flex-shrink: 0;
    letter-spacing: 0.02em;
  }
  .gf-letter-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.64rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
  }
  .gf-letter-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }
  .gf-letter-body {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--gray-800);
    margin-bottom: 28px;
  }
  .gf-letter-body p { margin-bottom: 14px; }
  .gf-letter-body p:last-child { margin-bottom: 0; }
  .gf-letter-body strong { color: var(--teal); font-weight: 700; }
  .gf-letter-signature {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px dashed rgba(26, 70, 64, 0.18);
  }
  .gf-signature {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--teal);
    line-height: 0.9;
    transform: rotate(-3deg);
    letter-spacing: -0.01em;
  }
  .gf-signature-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 4px;
  }
  .gf-signature-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--teal);
  }
  .gf-signature-role {
    font-size: 0.78rem;
    color: var(--gray-600);
  }
  .gf-letter-stamp {
    position: absolute;
    bottom: 28px; right: 32px;
    width: 84px; height: 84px;
    border: 2.5px solid var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--amber);
    font-family: 'Montserrat', sans-serif;
    transform: rotate(8deg);
    opacity: 0.7;
    pointer-events: none;
  }
  .gf-letter-stamp .stamp-year {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
  }
  .gf-letter-stamp .stamp-label {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 2px;
  }

  /* ===== AUS DER WERKSTATT â€” Tipp-Box ===== */
  .werkstatt-tipp {
    position: relative;
    z-index: 5;
    margin-top: 0;
    margin-bottom: 36px;
    background: linear-gradient(135deg, #F8FAFA 0%, #ECF4F2 100%);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-left: 3px solid var(--amber);
    border-radius: 10px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    box-shadow: 0 8px 24px -10px rgba(20, 70, 64, 0.15);
  }
  .werkstatt-tipp-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--amber-deep);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-align: center;
    padding: 4px 0;
    border-right: 1px dashed rgba(20, 184, 166, 0.25);
    padding-right: 22px;
  }
  .werkstatt-tipp-label .week {
    display: block;
    font-size: 0.6rem;
    color: var(--gray-600);
    margin-top: 3px;
    font-weight: 600;
  }
  .werkstatt-tipp-text {
    font-size: 0.96rem;
    color: var(--teal);
    line-height: 1.5;
  }
  .werkstatt-tipp-text strong { color: var(--teal-deep); font-weight: 700; }
  .werkstatt-tipp-link {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 6px;
    transition: all 0.25s ease;
  }
  .werkstatt-tipp-link:hover {
    background: var(--cyan);
    color: var(--teal-deep);
    gap: 10px;
  }

  /* ===== LIVE DAYS COUNTER ===== */
  .stat-live {
    position: relative;
  }
  .stat-live .live-tag {
    position: absolute;
    top: 0; right: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--green-ok);
    letter-spacing: 0.1em;
  }
  .stat-live .live-tag::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--green-ok);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green-ok);
    animation: live-pulse 1.5s ease-in-out infinite;
  }
  .stat-live .stat-prefix {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6em;
    color: var(--gray-400);
    margin-right: 4px;
    font-weight: 600;
  }


  /* ===== HERO STAMP (coordinates + meta) ===== */
  .hero-stamp {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
  }
  .hero-stamp-item { display: inline-flex; align-items: center; gap: 8px; }
  .hero-stamp-item .sep { color: rgba(255, 255, 255, 0.25); margin: 0 4px; }
  .hero-stamp-item .val { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
  .hero-stamp-item.live .dot {
    width: 7px; height: 7px; background: var(--green-ok); border-radius: 50%;
    box-shadow: 0 0 8px var(--green-ok);
    animation: live-pulse 1.6s ease-in-out infinite;
  }

  /* ===== RADAR SIGNATURE ===== */
  .radar {
    position: absolute;
    top: 100px;
    right: 50%;
    transform: translateX(50%);
    width: 220px; height: 220px;
    pointer-events: none;
    opacity: 0.18;
    z-index: 2;
  }
  @media (min-width: 1100px) {
    .radar { right: -60px; transform: none; top: 360px; opacity: 0.3; }
  }
  .radar-ring {
    position: absolute; inset: 0;
    border: 1px solid var(--cyan);
    border-radius: 50%;
  }
  .radar-ring.r2 { inset: 20%; opacity: 0.6; }
  .radar-ring.r3 { inset: 40%; opacity: 0.4; }
  .radar-ring.r4 { inset: 60%; opacity: 0.3; }
  .radar-sweep {
    position: absolute; inset: 0;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 320deg, var(--cyan) 358deg, transparent 360deg);
    border-radius: 50%;
    animation: radar-spin 5s linear infinite;
    mix-blend-mode: screen;
  }
  .radar-cross {
    position: absolute; inset: 0;
  }
  .radar-cross::before, .radar-cross::after {
    content: ''; position: absolute;
    background: rgba(20, 184, 166, 0.4);
  }
  .radar-cross::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
  .radar-cross::after { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
  .radar-blip {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--cyan-glow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
  }
  .radar-blip-1 { top: 28%; left: 65%; animation: blip-fade 5s linear infinite 1s; }
  .radar-blip-2 { top: 62%; left: 38%; animation: blip-fade 5s linear infinite 2.5s; }
  .radar-blip-3 { top: 45%; left: 72%; animation: blip-fade 5s linear infinite 4s; }
  @keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes blip-fade {
    0% { opacity: 0; transform: scale(0.5); }
    10% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
  }

  /* ===== 30-JAHRE TIMELINE ===== */
  .timeline-section {
    padding: 130px 0;
    background: linear-gradient(180deg, #E4EEE6 0%, #CFE5D5 100%);
    color: var(--teal);
    position: relative;
    overflow: hidden;
  }
  .timeline-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 15% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 85% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  }

  .timeline-mega-year {
    position: absolute;
    top: 40px;
    right: -30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(8rem, 22vw, 22rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: rgba(20, 184, 166, 0.08);
    pointer-events: none;
    z-index: 1;
    user-select: none;
  }

  .timeline-head {
    position: relative; z-index: 5;
    max-width: 780px;
    margin-bottom: 80px;
  }

  .timeline-wrap {
    position: relative;
    z-index: 5;
    padding: 40px 0 20px;
  }

  .timeline-line {
    position: absolute;
    left: 0; right: 0;
    top: 76px;
    height: 2px;
    background-image: linear-gradient(90deg, var(--cyan-deep) 50%, transparent 50%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    z-index: 0;
    opacity: 0.5;
  }
  .timeline-line::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 6px; height: 6px;
    background: var(--cyan-deep);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.6);
  }
  .timeline-line::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    width: 12px; height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 14px var(--cyan), 0 0 28px rgba(20, 184, 166, 0.5);
    animation: live-pulse 2s ease-in-out infinite;
  }

  .timeline-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .milestone {
    position: relative;
    padding-top: 100px;
  }
  .milestone::before {
    content: '';
    position: absolute;
    top: 66px;
    left: 50%;
    width: 22px;
    height: 22px;
    background: #E4EEE6;
    border: 2px solid var(--cyan-deep);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.4);
    transition: all 0.3s ease;
  }
  .milestone:hover::before {
    background: var(--cyan);
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 18px var(--cyan);
  }
  .milestone.now::before {
    width: 28px;
    height: 28px;
    background: var(--cyan);
    border-color: var(--cyan-deep);
    box-shadow: 0 0 16px var(--cyan), 0 0 32px rgba(20, 184, 166, 0.5);
    animation: live-pulse 2.5s ease-in-out infinite;
  }

  .milestone-year {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--cyan-deep);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
  }
  .milestone.now .milestone-year { color: var(--amber-deep); }

  .milestone-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--teal-deep);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .milestone-desc {
    font-size: 0.84rem;
    color: var(--gray-700);
    line-height: 1.55;
  }
  .milestone-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--amber-deep);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }


  /* ===== FIELD OFFICE SPEC CARD ===== */
  .field-office {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    background: rgba(6, 20, 16, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 12px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
  }
  .field-office-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    flex-shrink: 0;
  }
  .field-office-label .dot {
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: live-pulse 2s ease-in-out infinite;
  }
  .field-office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    font-size: 0.7rem;
  }
  .field-office-cell .lbl {
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    display: block;
    font-size: 0.62rem;
  }
  .field-office-cell .val {
    color: var(--white);
    font-weight: 600;
  }
  .field-office-radius {
    flex-shrink: 0;
    text-align: right;
  }
  .field-office-radius .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .field-office-radius .num .unit { font-size: 0.6em; color: var(--cyan-glow); }
  .field-office-radius .lbl { font-size: 0.6rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

  /* ===== SECTION NUMBER (editorial) ===== */
  .sec-num {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .sec-num .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .sec-num.on-dark .num { color: var(--cyan); }
  .sec-num .divider { color: var(--gray-200); }
  .sec-num.on-dark .divider { color: rgba(255, 255, 255, 0.2); }
  .sec-num.on-dark { color: rgba(255, 255, 255, 0.4); }
  .sec-num .total { font-weight: 500; }

  .scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-glow), var(--amber));
    z-index: 200; width: 0%;
    transition: width 0.05s linear;
    box-shadow: 0 0 12px var(--cyan);
  }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* ===== SHARED BACKGROUND UTILITIES ===== */
  .bg-grid-light {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(26, 70, 64, 0.22) 1.2px, transparent 1.8px);
    background-size: 26px 26px;
    pointer-events: none;
  }
  .bg-grid-dark {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(20, 184, 166, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(20, 184, 166, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
  }
  .bg-grid-mask-center { mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%); }
  .bg-grid-mask-fade { mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 100%); }

  .bg-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  .aurora-light {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 18% 28%, rgba(20, 184, 166, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 55% 60% at 82% 72%, rgba(26, 70, 64, 0.4) 0%, transparent 55%),
      radial-gradient(ellipse 50% 45% at 50% 110%, rgba(14, 42, 36, 0.32) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 100% 0%, rgba(20, 184, 166, 0.15) 0%, transparent 55%);
    filter: blur(20px);
    animation: aurora-flow 18s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes aurora-flow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-25px, 25px) scale(1.08); }
  }

  .floating-particle { position: absolute; border-radius: 50%; pointer-events: none; }
  .fp-cyan-dark { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
  .fp-cyan-light { background: var(--cyan); box-shadow: 0 0 8px rgba(20, 184, 166, 0.5); opacity: 0.5; }
  .fp-amber { background: var(--amber); box-shadow: 0 0 12px var(--amber); }

  @keyframes drift-particle { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; } 50% { transform: translateY(-20px) translateX(10px); opacity: 1; } }
  @keyframes drift-particle-2 { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; } 50% { transform: translateY(-15px) translateX(-12px); opacity: 0.9; } }
  @keyframes drift-blob-1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(80px, 40px) scale(1.1); } }
  @keyframes drift-blob-2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-60px, -50px) scale(1.15); } }

  /* ===== TYPOGRAPHY ===== */
  .eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--cyan); }
  .eyebrow.amber { color: var(--amber); }
  .eyebrow.amber::before { background: var(--amber); }

  /* ===== NAV ===== */
  .site-header-row--contact {
    height: var(--nav-contact-height);
  }
  .nav-contact-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.5em;
    height: 100%;
    margin: 0;
    padding: 6px 0 0;
  }
/*  .nav-contact-list li {
    display: flex;
    align-items: center;
    position: relative;
  } */
/*  .nav-contact-list li + li {
    margin-left: 28px;
    padding-left: 28px;
  } */
/*  .nav-contact-list li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background: linear-gradient(180deg, transparent, rgba(180, 188, 192, 0.55), transparent);
  } */
  .nav-contact-link,
  .nav-contact-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--t-fast) var(--ease-out-soft);
  }
  .nav-contact-link:hover {
    color: var(--cyan-glow);
  }
  .nav-contact-icon {
    flex-shrink: 0;
    color: inherit;
  }
  .nav-contact-hours {
    cursor: default;
  }

  .site-header-perspective {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    color: rgba(142, 150, 155, 0.28);
    -webkit-mask-image: radial-gradient(ellipse 95% 120% at 22% 92%, #000 0%, transparent 78%);
    mask-image: radial-gradient(ellipse 95% 120% at 22% 92%, #000 0%, transparent 78%);
    opacity: 0;
    animation: nav-perspective-in 0.9s var(--ease-out-soft) 0.15s forwards;
		border-bottom: 1px solid var(--cyan);
  }
  .site-header-perspective::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(72, 82, 88, 0.14) 0%, rgba(120, 130, 136, 0.05) 38%, transparent 62%);
    pointer-events: none;
  }
/*  .site-header-perspective::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 52%, rgba(88, 98, 104, 0.07) 100%);
    pointer-events: none;
  } */
  .nav-perspective-svg {
    display: block;
    position: absolute;
    right: auto;
    left: -10%;
    bottom: -22%;
    width: 86%;
    min-width: 720px;
    height: auto;
    transform: perspective(720px) rotateX(14deg);
    transform-origin: 18% 100%;
  }
  @keyframes nav-perspective-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .brand {
/*    display: flex;
    align-items: flex-start;
    text-decoration: none; */
    color: var(--teal-deep);
/*    flex-shrink: 0; */
  }

  .brand-logo {
    display: block;
    height: 48px;
    width: auto;
    flex-shrink: 0;
  }
  .site-header-brand .brand {
    position: relative;
    display: inline-block;
    overflow: visible;
  }
  .site-header-brand .brand .brand-logo.brand-logo--gloss {
    position: relative;
    z-index: 1;
    height: 176px;
    margin-top: -22px;
    overflow: visible;
  }
  /* Wand-Schatten: Klon braucht feste Breite (absolute + width:auto kollabiert).
     Ohne Auflicht auf der Wand bleibt Schwarz auf #0C0C0C unsichtbar. */
  .site-header-brand .brand-cast {
    position: absolute;
    left: 0;
    top: -22px;
    z-index: 0;
    display: block;
    height: 176px;
    width: calc(176px * 428.6 / 185);
    overflow: visible;
    pointer-events: none;
    transform: perspective(1200px) rotateX(6deg) translate3d(8px, 14px, -12px) scale(1.02);
    transform-origin: 50% 80%;
  }
  .site-header-brand .brand-cast::before {
    content: '';
    position: absolute;
    inset: -8% -4%;
    background: radial-gradient(
      ellipse 68% 56% at 50% 46%,
      rgba(200, 224, 214, 0.4) 0%,
      rgba(150, 184, 176, 0.16) 46%,
      transparent 74%
    );
    filter: blur(6px);
  }
  .site-header-brand .brand-cast .brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    filter: blur(4px) brightness(0);
    opacity: 0.58;
  }
  .site-header-brand .brand-cast .brand-logo-dark,
  .site-header-brand .brand-cast .brand-logo-teal {
    fill: #000;
  }
  .brand-logo-dark { fill: var(--logo-dark); }
  .brand-logo-teal { fill: var(--logo-teal); }

  .nav-links { display: flex; gap: 28px; align-items: center; }

  .nav-item { position: relative; }
  .nav-item > .nav-link,
  .nav-item > .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-caret {
    opacity: 0.7;
    transition: transform var(--t-fast) var(--ease-out-soft);
  }
  .nav-item:hover > .nav-link .nav-caret,
  .nav-item:focus-within > .nav-link .nav-caret {
    transform: rotate(180deg);
  }

  /* Unsichtbare Hit-Area schlieÃŸt die LÃ¼cke zum Dropdown */
  .nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
  }

  .nav-dropdown,
  .nav-submenu {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 268px;
    background:
      linear-gradient(180deg, rgba(45, 212, 191, 0.16) 0%, transparent 32%),
      rgba(6, 20, 16, 0.9);
    border: 1px solid rgba(45, 212, 191, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow:
      inset 0 1px 0 rgba(45, 212, 191, 0.38),
      0 0 28px -8px rgba(45, 212, 191, 0.35),
      0 18px 40px -16px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--t-fast) var(--ease-out-soft),
                transform var(--t-fast) var(--ease-out-soft),
                visibility var(--t-fast);
  }
  .nav-item:hover > .nav-dropdown,
  .nav-item:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-dropdown > li { position: relative; }
  .nav-dropdown a,
  .nav-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background var(--t-fast) var(--ease-out-soft),
                color var(--t-fast) var(--ease-out-soft);
  }
  .nav-dropdown a::before,
  .nav-submenu a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.7);
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.55);
    flex-shrink: 0;
  }
  .nav-dropdown a:hover,
  .nav-submenu a:hover {
    background: transparent;
    color: #5eead4;
  }
  .nav-dropdown a:hover::before,
  .nav-submenu a:hover::before {
    background: #5eead4;
    box-shadow: 0 0 8px #5eead4, 0 0 16px rgba(45, 212, 191, 0.8);
  }
  .nav-dropdown > li.has-children > a::after {
    content: '';
    float: right;
    margin-top: 7px;
    border: solid rgba(255, 255, 255, 0.45);
    border-width: 0 1.5px 1.5px 0;
    padding: 3px;
    transform: rotate(-45deg);
  }

  /* Hit-Area zwischen Dropdown und Submenu (rechts) */
  .nav-dropdown > li.has-children::after {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    width: 12px;
    height: 100%;
  }

  .nav-submenu {
    top: 0;
    left: 100%;
    margin-left: 0;
    padding-left: 0;
  }
  .nav-dropdown > li.has-children:hover > .nav-submenu,
  .nav-dropdown > li.has-children:focus-within > .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    padding: 11px 22px; background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    font-weight: 600 !important; font-size: 0.9rem !important;
    transition: color var(--t-base) var(--ease-out-soft),
                transform var(--t-base) var(--ease-out-snap),
                box-shadow var(--t-base) var(--ease-out-soft);
    display: inline-flex; align-items: center; gap: 8px;
    overflow: hidden; position: relative;
    will-change: transform;
  }
  .nav-cta::before {
    content: ''; position: absolute; inset: 0;
/*    background: var(--cyan); */
    transform: translateY(101%);
    transition: transform var(--t-base) var(--ease-out-soft);
  }
  .nav-cta:hover::before { transform: translateY(0); }
  .nav-cta:hover {
/*   color: var(--teal-deep) !important; */
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(20, 184, 166, 0.5);
  }
  .nav-cta > * { position: relative; z-index: 1; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    padding: calc(var(--site-header-height) + 16px) 0 120px;
    background: var(--teal-darker);
    color: var(--white);
    overflow: hidden;
  }
  .hero-gradient {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 20%, rgba(20, 184, 166, 0.22) 0%, transparent 50%),
      radial-gradient(ellipse 70% 70% at 20% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 55%),
      radial-gradient(ellipse 35% 30% at 90% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 90%, rgba(26, 70, 64, 0.6) 0%, transparent 60%),
      linear-gradient(180deg, #0C0C0C 0%, #96B8B0 70%, var(--teal) 100%);
    animation: gradient-shift 18s ease-in-out infinite;
  }
  @keyframes gradient-shift {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 0.9; }
  }

  .hero-inner {
    position: relative; z-index: 5;
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 60px; align-items: center;
  }
  .hero-content { max-width: 640px; }
  .hero-eyebrow { color: var(--cyan-glow); margin-bottom: 28px; animation: fadeUp 0.7s ease both; }

  .live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 600;
    color: var(--green-ok);
    margin-bottom: 28px;
    text-transform: uppercase; letter-spacing: 0.12em;
    animation: fadeUp 0.7s ease both;
  }
  .live-badge .live-dot {
    width: 8px; height: 8px;
    background: var(--green-ok); border-radius: 50%;
    box-shadow: 0 0 12px var(--green-ok);
    animation: live-pulse 1.8s ease-in-out infinite;
  }
  @keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
  }

  h1.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.1s both;
  }
  h1.hero-title .accent {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 50%, var(--cyan) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 6s ease-in-out infinite;
    display: inline-block;
  }
  @keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .hero-lede {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px; line-height: 1.6;
    animation: fadeUp 0.8s ease 0.2s both;
  }
  .hero-lede strong { color: var(--white); font-weight: 600; }

  .hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeUp 0.8s ease 0.3s both; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px;
    border-radius: 6px; text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.96rem;
    transition: all 0.22s ease;
    cursor: pointer; border: none;
    position: relative; overflow: hidden;
  }
  .btn::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
  }
  .btn:hover::before { width: 400px; height: 400px; }
  .btn > * { position: relative; z-index: 1; }

  .btn-cyan { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%); color: var(--teal-deep); }
  .btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(20, 184, 166, 0.7); }

  .btn-amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-glow) 100%); color: var(--teal-deep); }
  .btn-amber:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(245, 158, 11, 0.6); }

  .btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); }
  .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(20, 184, 166, 0.06); }

  .btn .arrow { transition: transform 0.22s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-quick-stats {
    display: flex; gap: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeUp 0.8s ease 0.4s both;
  }
  .hero-quick-stat .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--cyan); line-height: 1; margin-bottom: 4px; }
  .hero-quick-stat .lbl { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.1em; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== HERO DASHBOARD ===== */
  .hero-dashboard { position: relative; animation: fadeUp 1s ease 0.5s both; perspective: 1500px; }
  .dashboard-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.8) 0%, rgb(26, 70, 64) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px; padding: 24px;
    color: var(--white);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(20, 184, 166, 0.25);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .hero-dashboard:hover .dashboard-card { transform: rotateY(-4deg) rotateX(2deg); }
  .dash-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .dash-title { display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.05em; }
  .dash-controls { display: flex; gap: 6px; }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
  .dash-dot.green { background: var(--green-ok); box-shadow: 0 0 8px var(--green-ok); }
  .dash-status-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .dash-status-row:last-of-type { border-bottom: none; }
  .dash-status-left { display: flex; align-items: center; gap: 12px; }
  .dash-status-icon { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--white); }
  .dash-status-name { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--white); font-weight: 600; margin-bottom: 2px; letter-spacing: 0.02em; }
  .dash-status-sub { font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); }
  .dash-status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(74, 222, 128, 0.18); border: 1px solid rgba(74, 222, 128, 0.4); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: #d6ffe5; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
  .dash-status-badge .pulse-dot { width: 6px; height: 6px; background: var(--green-ok); border-radius: 50%; animation: live-pulse 1.8s ease-in-out infinite; box-shadow: 0 0 8px var(--green-ok); }

  /* Rack-LED strip */
  .rack-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    margin-bottom: 6px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
  }
  .rack-strip-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .rack-leds {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }
  .rack-led {
    width: 7px; height: 14px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
  }
  .rack-led.on {
    background: var(--green-ok);
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7), inset 0 0 4px rgba(255, 255, 255, 0.4);
    animation: led-flicker 4s ease-in-out infinite;
  }
  .rack-led.warn {
    background: var(--amber);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.7), inset 0 0 4px rgba(255, 255, 255, 0.4);
  }
  .rack-led.on:nth-child(3n) { animation-delay: 0.4s; }
  .rack-led.on:nth-child(5n) { animation-delay: 0.8s; }
  .rack-led.on:nth-child(7n) { animation-delay: 1.2s; }
  @keyframes led-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
  }
  .rack-strip-status {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-ok);
    flex-shrink: 0;
    letter-spacing: 0.05em;
  }

  /* Mini metric tile (rack utilization) */
  .dc-meter {
    margin-top: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
  }
  .dc-meter-label { font-size: 0.7rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
  .dc-meter-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }
  .dc-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-ok) 0%, var(--cyan-glow) 100%);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
  }
  .dc-meter-value { font-size: 0.72rem; color: var(--white); font-weight: 700; min-width: 36px; text-align: right; }
  .dash-chart { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .dash-chart-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
  .dash-chart-title { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.1em; }
  .dash-chart-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--cyan); }
  .dash-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; }
  .dash-bar { flex: 1; background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-deep) 100%); border-radius: 2px; opacity: 0.7; animation: bar-pulse 3s ease-in-out infinite; }
  .dash-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
  .dash-bar:nth-child(2) { height: 55%; animation-delay: 0.2s; }
  .dash-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }
  .dash-bar:nth-child(4) { height: 70%; animation-delay: 0.6s; }
  .dash-bar:nth-child(5) { height: 85%; animation-delay: 0.8s; }
  .dash-bar:nth-child(6) { height: 60%; animation-delay: 1s; }
  .dash-bar:nth-child(7) { height: 75%; animation-delay: 1.2s; }
  .dash-bar:nth-child(8) { height: 90%; animation-delay: 1.4s; }
  .dash-bar:nth-child(9) { height: 65%; animation-delay: 1.6s; }
  .dash-bar:nth-child(10) { height: 78%; animation-delay: 1.8s; }
  .dash-bar:nth-child(11) { height: 92%; animation-delay: 2s; }
  .dash-bar:nth-child(12) { height: 88%; animation-delay: 2.2s; }
  @keyframes bar-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

  .floating-card { position: absolute; background: rgba(14, 42, 36, 0.85); backdrop-filter: blur(16px); border: 1px solid rgba(20, 184, 166, 0.25); border-radius: 12px; padding: 14px 16px; color: var(--white); box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6); display: flex; align-items: center; gap: 12px; z-index: 2; }
  .floating-card-1 { top: -24px; right: -32px; animation: float-card 4s ease-in-out infinite; }
  .floating-card-2 { bottom: -20px; left: -32px; animation: float-card 5s ease-in-out infinite 1s; border-color: rgba(245, 158, 11, 0.3); }
  .floating-card-2 .floating-card-icon { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%); }
  .floating-card-2 .floating-card-text strong { color: var(--amber); }
  @keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .floating-card-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal-deep); flex-shrink: 0; }
  .floating-card-text { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; line-height: 1.3; }
  .floating-card-text strong { color: var(--cyan); display: block; font-weight: 700; margin-bottom: 2px; }
  .floating-card-text span { color: rgba(255, 255, 255, 0.6); }

  /* ===== MARQUEE ===== */
  .marquee { background: var(--teal); color: var(--white); padding: 20px 0; overflow: hidden; border-top: 1px solid rgba(20, 184, 166, 0.2); border-bottom: 1px solid rgba(20, 184, 166, 0.2); position: relative; }
  .marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
  .marquee::before { left: 0; background: linear-gradient(90deg, var(--teal), transparent); }
  .marquee::after { right: 0; background: linear-gradient(-90deg, var(--teal), transparent); }
  .marquee-track { display: flex; gap: 48px; animation: marquee 38s linear infinite; width: max-content; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .marquee-item { display: inline-flex; align-items: center; gap: 14px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); white-space: nowrap; }
  .marquee-item .dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan); flex-shrink: 0; }
  .marquee-item.amber .dot { background: var(--amber); box-shadow: 0 0 12px var(--amber); }

  /* ===== STATS ===== */
  .stats { background: linear-gradient(180deg, #E4EEE6 0%, #D2E8DC 100%); padding: 100px 0; border-bottom: 1px solid var(--gray-100); position: relative; overflow: hidden; }
  .stats-blob-1 { position: absolute; top: -200px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-1 22s ease-in-out infinite; }
  .stats-blob-2 { position: absolute; bottom: -300px; right: -200px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(14, 42, 36, 0.45) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-2 28s ease-in-out infinite; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 2; }
  .stat { padding: 0 32px; border-left: 1px solid var(--gray-100); position: relative; transition: transform 0.4s ease; }
  .stat:first-child { padding-left: 0; border-left: none; }
  .stat:hover { transform: translateY(-4px); }
  .stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--teal); letter-spacing: -0.03em; margin-bottom: 12px; display: flex; align-items: baseline; gap: 4px; }
  .stat-num .sup { font-size: 0.45em; color: var(--cyan); }
  .stat-num .sup.amber { color: var(--amber); }
  .stat-spark { height: 24px; margin-bottom: 12px; opacity: 0.6; }
  .stat-label { font-size: 0.92rem; color: var(--gray-600); line-height: 1.5; }

  /* ===== PARTNERS (dark) ===== */
  .partners { padding: 70px 0; background: var(--teal-darker); color: var(--white); border-top: 1px solid rgba(20, 184, 166, 0.1); border-bottom: 1px solid rgba(20, 184, 166, 0.1); position: relative; overflow: hidden; }
  .partners-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 200px; background: radial-gradient(ellipse, rgba(20, 184, 166, 0.15) 0%, transparent 60%); border-radius: 50%; animation: pulse-glow-soft 6s ease-in-out infinite; }
  @keyframes pulse-glow-soft { 0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); } }
  .partners-head { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; position: relative; z-index: 2; }
  .partners-head::before, .partners-head::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: rgba(255, 255, 255, 0.15); }
  .partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; align-items: center; position: relative; z-index: 2; }
  .partner { display: flex; align-items: center; justify-content: center; height: 56px; color: rgba(255, 255, 255, 0.35); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; text-align: center; line-height: 1.1; }
  .partner:hover { color: var(--cyan); transform: translateY(-3px); text-shadow: 0 0 20px rgba(20, 184, 166, 0.5); }

  /* ===== SECTION HEAD ===== */
  .sec-head { max-width: 780px; margin-bottom: 64px; }
  .sec-head .eyebrow { margin-bottom: 24px; }
  .sec-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.04; letter-spacing: -0.035em; color: var(--teal); margin-bottom: 22px; text-transform: uppercase; }
  .sec-title.on-dark { color: var(--white); }
  .sec-title .cyan { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .sec-title .amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-glow) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .sec-lede { font-size: 1.08rem; color: var(--gray-600); line-height: 1.65; max-width: 640px; }
  .sec-lede.on-dark { color: rgba(255, 255, 255, 0.7); }

  /* ===== PORTFOLIO (BENTO) ===== */
  .portfolio { padding: 130px 0; background: linear-gradient(180deg, #D2E8DC 0%, #E1EFE5 50%, #CFE5D5 100%); position: relative; overflow: hidden; }
  .portfolio-blob-1 { position: absolute; top: 5%; right: -250px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(20, 184, 166, 0.28) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-1 25s ease-in-out infinite; }
  .portfolio-blob-2 { position: absolute; bottom: 5%; left: -300px; width: 900px; height: 900px; background: radial-gradient(circle, rgba(14, 42, 36, 0.42) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-2 30s ease-in-out infinite; }
  .portfolio-blob-amber { position: absolute; top: 40%; right: 30%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-1 32s ease-in-out infinite; }

  .bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 18px;
    position: relative;
    z-index: 5;
  }

  .bento-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5FCF8 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-base) var(--ease-out-soft),
                box-shadow var(--t-base) var(--ease-out-soft),
                border-color var(--t-base) var(--ease-out-soft);
    box-shadow: 0 8px 24px -8px rgba(6, 20, 16, 0.15), 0 2px 6px -2px rgba(6, 20, 16, 0.08);
    display: flex;
    flex-direction: column;
    will-change: transform;
  }
  .bento-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(20, 184, 166, 0.05) 100%);
    opacity: 0; transition: opacity var(--t-base) var(--ease-out-soft);
    pointer-events: none;
    border-radius: 18px;
  }
  .bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -22px rgba(6, 20, 16, 0.45),
                0 16px 30px -10px rgba(14, 42, 36, 0.2),
                0 0 0 1px rgba(20, 184, 166, 0.4);
    border-color: var(--cyan);
  }
  .bento-card:hover::after { opacity: 1; }
  .bento-card:hover .bento-icon {
    transform: scale(1.08) rotate(-4deg);
    transition: transform var(--t-base) var(--ease-out-snap);
  }
  .bento-icon { transition: transform var(--t-base) var(--ease-out-soft); }

  /* Big featured card â€” VOLLE BREITE OBEN, 2-spaltiges Innen-Layout */
  .bento-featured {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    padding: 44px 52px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 60%, var(--teal-darker) 100%);
    border-color: rgba(20, 184, 166, 0.4);
    color: var(--white);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: stretch;
  }
  .bento-featured-left, .bento-featured-right {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    z-index: 2;
  }
  .bento-featured-right {
    justify-content: space-between;
    gap: 28px;
  }
  .bento-tiers-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }
  /* Prominenter CTA in der Featured-Card */
  .bento-link-prominent {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--cyan);
    color: var(--teal-deep) !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: transform var(--t-base) var(--ease-out-snap),
                background var(--t-base) var(--ease-out-soft),
                box-shadow var(--t-base) var(--ease-out-soft),
                gap var(--t-base) var(--ease-out-snap);
    box-shadow: 0 12px 28px -10px rgba(20, 184, 166, 0.6);
    width: fit-content;
    margin-top: auto;
    will-change: transform;
  }
  .bento-link-prominent:hover {
    background: var(--cyan-glow);
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -14px rgba(20, 184, 166, 0.8);
    gap: 16px;
  }
  @media (max-width: 1050px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento-featured { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  }
  @media (max-width: 640px) {
    .bento { grid-template-columns: 1fr; }
  }
  .bento-featured::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 60%);
    opacity: 0.22; border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
  }
  .bento-featured::after { background: none; }
  .bento-featured:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -25px rgba(20, 184, 166, 0.4); border-color: var(--cyan); }
  @keyframes pulse-glow { 0%, 100% { transform: scale(1); opacity: 0.22; } 50% { transform: scale(1.15); opacity: 0.32; } }
  .bento-featured-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(20, 184, 166, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at 100% 0%, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 0%, transparent 70%); pointer-events: none; }

  .bento-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    color: var(--cyan-deep);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 20px;
    align-self: flex-start;
  }
  .bento-featured .bento-tag { background: rgba(20, 184, 166, 0.15); border-color: rgba(20, 184, 166, 0.4); color: var(--cyan-glow); }
  .bento-tag.amber { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.35); color: var(--amber-deep); }

  .bento-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -6px rgba(20, 184, 166, 0.5);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .bento-featured .bento-icon { width: 64px; height: 64px; box-shadow: 0 12px 30px -8px rgba(20, 184, 166, 0.6); }
  .bento-icon.amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%); box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.5); }
  .bento-icon.teal { background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-deep) 100%); box-shadow: 0 8px 20px -6px rgba(14, 42, 36, 0.5); }

  .bento-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
  }
  .bento-featured .bento-title { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
  .bento-featured .bento-title .cyan { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

  .bento-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cyan-deep);
    margin-bottom: 14px;
    text-transform: none;
    letter-spacing: 0;
  }
  .bento-featured .bento-subtitle { color: var(--cyan-glow); font-size: 1rem; margin-bottom: 18px; }

  .bento-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .bento-featured .bento-desc { color: rgba(255, 255, 255, 0.72); font-size: 1.02rem; line-height: 1.65; margin-bottom: 28px; }

  .bento-list {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
  .bento-list li {
    color: var(--gray-800);
    font-size: 0.86rem;
    padding-left: 18px;
    position: relative;
    font-weight: 500;
    line-height: 1.4;
  }
  .bento-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
  }
  .bento-featured .bento-list li { color: rgba(255, 255, 255, 0.85); font-size: 0.94rem; padding-left: 22px; }
  .bento-featured .bento-list li::before { width: 7px; height: 7px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); top: 8px; }

  /* Service level tiers (only inside featured) */
  .bento-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .tier {
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  .tier:hover { background: rgba(20, 184, 166, 0.1); border-color: rgba(20, 184, 166, 0.4); transform: translateY(-2px); }
  .tier-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
  }
  .tier-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
  }

  .bento-link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--teal); text-decoration: none;
    font-weight: 600; font-size: 0.88rem;
    transition: color var(--t-base) var(--ease-out-soft),
                gap var(--t-base) var(--ease-out-snap);
    align-self: flex-start;
  }
  .bento-link svg { transition: transform var(--t-base) var(--ease-out-snap); }
  .bento-card:hover .bento-link { color: var(--cyan-deep); gap: 14px; }
  .bento-card:hover .bento-link svg { transform: translateX(4px); }

  .bento-featured .bento-link { color: var(--cyan); font-size: 0.96rem; }
  .bento-featured:hover .bento-link { color: var(--cyan-glow); }

  /* Special amber treatment for software card */
  .bento-card.amber-accent { border-color: rgba(245, 158, 11, 0.3); }
  .bento-card.amber-accent:hover { border-color: var(--amber); box-shadow: 0 30px 60px -20px rgba(245, 158, 11, 0.25); }
  .bento-card.amber-accent .bento-link { color: var(--amber-deep); }
  .bento-card.amber-accent:hover .bento-link { color: var(--amber); }
  .bento-card.amber-accent .bento-list li::before { background: var(--amber); }
  .bento-card.amber-accent .bento-subtitle { color: var(--amber-deep); }

  /* Use-case pills inside bento cards */
  .bento-usecase {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(20, 184, 166, 0.25);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .bento-usecase-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-right: 4px;
  }
  .bento-featured .bento-usecase { border-top-color: rgba(20, 184, 166, 0.3); }
  .bento-featured .bento-usecase-label { color: rgba(255, 255, 255, 0.5); }
  .bento-pill {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cyan-deep);
    white-space: nowrap;
  }
  .bento-featured .bento-pill {
    background: rgba(20, 184, 166, 0.12);
    border-color: rgba(20, 184, 166, 0.35);
    color: var(--cyan-glow);
  }
  .bento-card.amber-accent .bento-pill {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--amber-deep);
  }
  .bento-card.amber-accent .bento-usecase { border-top-color: rgba(245, 158, 11, 0.25); }

  /* ===== COMPARISON SECTION ===== */
  .vergleich {
    padding: 130px 0;
    background: linear-gradient(180deg, #E1EFE5 0%, #CFE5D5 50%, #E4EEE6 100%);
    color: var(--teal);
    position: relative;
    overflow: hidden;
  }
  .vergleich-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 30% 30%, rgba(20, 184, 166, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 75% 75%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  }
  .vergleich-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
  }
  .vergleich-col {
    border-radius: 18px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
  }
  .vergleich-col.col-us {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(20, 184, 166, 0.08) 100%);
    border: 1.5px solid rgba(20, 184, 166, 0.4);
    box-shadow: 0 30px 60px -25px rgba(20, 184, 166, 0.3);
  }
  .vergleich-col.col-them {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 70, 64, 0.1);
  }

  .vergleich-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(26, 70, 64, 0.1);
  }
  .vergleich-col-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .col-us .vergleich-col-icon {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4);
  }
  .col-them .vergleich-col-icon {
    background: rgba(26, 70, 64, 0.06);
    color: rgba(26, 70, 64, 0.4);
  }
  .vergleich-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
  }
  .col-us .vergleich-col-title { color: var(--teal-deep); }
  .col-them .vergleich-col-title { color: rgba(26, 70, 64, 0.55); }
  .vergleich-col-sub {
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
  }
  .col-us .vergleich-col-sub { color: var(--cyan-deep); }

  .vergleich-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .vergleich-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--teal);
  }
  .col-them .vergleich-list li { color: var(--gray-600); }
  .vergleich-list li .check-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.15);
    color: var(--cyan-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .col-them .vergleich-list li .check-icon {
    background: rgba(26, 70, 64, 0.06);
    color: rgba(26, 70, 64, 0.3);
  }
  .col-us .vergleich-list li { color: var(--teal-deep); }
  .col-them .vergleich-list li { color: var(--gray-600); }
  .col-them .vergleich-list li { text-decoration: line-through; text-decoration-color: rgba(26, 70, 64, 0.18); text-decoration-thickness: 1px; }

  /* ===== SOFTWARE DEEP-DIVE ===== */
  .software-feature {
    padding: 130px 0;
    background: var(--teal-darker);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .software-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 85% 70%, rgba(20, 184, 166, 0.15) 0%, transparent 60%),
      linear-gradient(180deg, var(--teal-darker) 0%, var(--teal-deep) 100%);
  }

  .software-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .software-h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .software-h2 .amber { background: linear-gradient(135deg, var(--amber) 0%, var(--amber-glow) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

  .software-text { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }

  .software-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }
  .sw-feature {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
  }
  .sw-feature:hover { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.3); transform: translateY(-3px); }
  .sw-feature-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-deep);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  }
  .sw-feature-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
    margin-bottom: 2px;
    text-transform: uppercase;
  }
  .sw-feature-sub { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); }

  /* Code visual */
  .code-window {
    background: rgba(14, 42, 36, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.1);
    transform: perspective(1500px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .code-window:hover { transform: perspective(1500px) rotateY(-2deg) rotateX(1deg); }

  .code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
  }
  .code-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .code-title .amber { color: var(--amber); }
  .code-dots { display: flex; gap: 6px; }
  .code-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
  .code-dot:nth-child(1) { background: #FF5F57; }
  .code-dot:nth-child(2) { background: var(--amber); }
  .code-dot:nth-child(3) { background: var(--green-ok); }

  .code-body {
    padding: 22px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
  }
  .code-line { display: block; }
  .c-comment { color: rgba(255, 255, 255, 0.4); }
  .c-key { color: var(--amber); }
  .c-string { color: var(--cyan); }
  .c-fn { color: var(--amber-glow); }
  .c-num { color: var(--green-ok); }
  .code-indent { padding-left: 20px; }
  .code-indent-2 { padding-left: 40px; }

  .code-cursor {
    display: inline-block;
    width: 8px; height: 16px;
    background: var(--amber);
    vertical-align: middle;
    margin-left: 2px;
    animation: cursor-blink 1s ease-in-out infinite;
  }
  @keyframes cursor-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

  /* Hero: perspektivisches Code-Fenster (/software/) */
  .product-hero-visual--code .code-window {
    border-color: rgba(20, 184, 166, 0.38);
    box-shadow:
      0 44px 90px -28px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(20, 184, 166, 0.14),
      0 0 72px -8px rgba(20, 184, 166, 0.38);
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .product-hero-visual--code .product-hero-code-window {
    transform: perspective(1400px) rotateY(-11deg) rotateX(5deg);
  }
  .product-hero-visual--code .product-hero-code-back {
    transform: perspective(1400px) rotateY(-16deg) rotateX(7deg) translate3d(28px, 32px, -40px) scale(0.94);
  }
  .product-hero-visual--code .product-hero-code-scene:hover .product-hero-code-window {
    transform: perspective(1400px) rotateY(-8deg) rotateX(3deg) translateY(-4px);
  }
  .product-hero-visual--code .code-title .accent {
    color: var(--cyan-glow);
  }
  .product-hero-visual--code .code-dot:nth-child(2) {
    background: var(--cyan);
  }
  .product-hero-visual--code .c-key,
  .product-hero-visual--code .c-fn {
    color: var(--cyan-glow);
  }
  .product-hero-visual--code .code-cursor {
    background: var(--cyan-glow);
  }

  /* ===== PROCESS (dark) ===== */
  .process { padding: 130px 0; background: var(--teal-darker); color: var(--white); position: relative; overflow: hidden; }
  .process-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(20, 184, 166, 0.18) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 85% 75%, rgba(20, 184, 166, 0.15) 0%, transparent 60%), linear-gradient(180deg, var(--teal-darker) 0%, var(--teal-deep) 100%); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
  .process-steps::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px; background-image: linear-gradient(90deg, var(--cyan) 50%, transparent 50%); background-size: 12px 2px; background-repeat: repeat-x; z-index: 0; opacity: 0.5; }
  .step { position: relative; z-index: 1; text-align: left; }
  .step-num { width: 80px; height: 80px; background: rgba(14, 42, 36, 0.6); border: 1.5px solid rgba(20, 184, 166, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cyan); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.6rem; margin-bottom: 24px; position: relative; transition: all 0.4s ease; backdrop-filter: blur(8px); }
  .step-num::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px dashed transparent; transition: border-color 0.4s ease; }
  .step:hover .step-num { background: var(--cyan); color: var(--teal-deep); border-color: var(--cyan); transform: scale(1.05); box-shadow: 0 0 40px rgba(20, 184, 166, 0.6); }
  .step:hover .step-num::after { border-color: var(--cyan); animation: spin 8s linear infinite; }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .step-icon { position: absolute; top: -6px; right: -6px; width: 32px; height: 32px; background: var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal-deep); border: 3px solid var(--teal-darker); transition: all 0.4s ease; box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4); }
  .step h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; text-transform: uppercase; }
  .step p { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; line-height: 1.55; }

  /* ===== WARUM ===== */
  .warum { padding: 130px 0; background: linear-gradient(180deg, #CFE5D5 0%, #BFD9C9 100%); position: relative; overflow: hidden; }
  .warum-blob-1 { position: absolute; top: -200px; right: -200px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-1 26s ease-in-out infinite; }
  .warum-blob-2 { position: absolute; bottom: -250px; left: -200px; width: 900px; height: 900px; background: radial-gradient(circle, rgba(14, 42, 36, 0.45) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-2 30s ease-in-out infinite; }
  .warum-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .warum-points { display: flex; flex-direction: column; gap: 12px; }
  .warum-point { padding: 32px 28px; background: linear-gradient(180deg, #FFFFFF 0%, #F5FCF8 100%); border-radius: 14px; border: 1px solid rgba(20, 184, 166, 0.2); display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; transition: all 0.3s ease; box-shadow: 0 10px 28px -10px rgba(6, 20, 16, 0.22), 0 2px 6px -2px rgba(6, 20, 16, 0.08); }
  .warum-point:hover { border-color: rgba(20, 184, 166, 0.5); transform: translateX(8px); box-shadow: 0 16px 32px -16px rgba(14, 42, 36, 0.15); }
  .warum-point:hover .warum-point-num { color: var(--cyan); transform: scale(1.05); }
  .warum-point-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--cyan-deep); line-height: 0.9; letter-spacing: -0.03em; transition: all 0.3s ease; }
  .warum-point h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--teal); margin-bottom: 6px; text-transform: uppercase; }
  .warum-point p { color: var(--gray-600); font-size: 0.93rem; line-height: 1.6; }

  /* ===== TESTIMONIAL ===== */
  .testimonial { padding: 130px 0; background: var(--teal-darker); color: var(--white); position: relative; overflow: hidden; }
  .testimonial::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 60%); }
  .testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
  .testimonial-quote { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.3; color: var(--white); letter-spacing: -0.015em; margin-bottom: 32px; position: relative; padding-left: 36px; }
  .testimonial-quote::before { content: '"'; position: absolute; left: -12px; top: -28px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 6rem; color: var(--cyan); line-height: 1; opacity: 0.6; }
  .testimonial-quote em { font-style: normal; color: var(--cyan); }
  .testimonial-author { display: flex; align-items: center; gap: 16px; padding-left: 36px; }
  .testimonial-avatar { width: 56px; height: 56px; background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal-deep); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3); }
  .testimonial-author-info { display: flex; flex-direction: column; }
  .testimonial-author-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); }
  .testimonial-author-role { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
  .testimonial-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .t-stat-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; padding: 28px 24px; backdrop-filter: blur(10px); transition: all 0.3s ease; }
  .t-stat-card:hover { background: rgba(20, 184, 166, 0.08); border-color: rgba(20, 184, 166, 0.3); transform: translateY(-4px); }
  .t-stat-card.amber:hover { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.3); }
  .t-stat-card .t-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--cyan); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
  .t-stat-card.amber .t-num { color: var(--amber); }
  .t-stat-card .t-label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

  /* ===== FAQ ===== */
  .faq { padding: 130px 0; background: linear-gradient(180deg, #BFD9C9 0%, #D2E8DC 100%); position: relative; overflow: hidden; }
  .faq-blob-1 { position: absolute; top: 10%; left: -200px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(20, 184, 166, 0.28) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-2 28s ease-in-out infinite; }
  .faq-blob-2 { position: absolute; bottom: 0; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(14, 42, 36, 0.42) 0%, transparent 60%); border-radius: 50%; animation: drift-blob-1 25s ease-in-out infinite; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item { border-bottom: 1px solid var(--gray-100); cursor: pointer; transition: background var(--t-base) var(--ease-out-soft); }
  .faq-item:first-child { border-top: 1px solid var(--gray-100); }
  .faq-question { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--teal); text-transform: uppercase; transition: color var(--t-base) var(--ease-out-soft), padding-left var(--t-base) var(--ease-out-soft); }
  .faq-item:hover .faq-question { color: var(--cyan); padding-left: 14px; }
  .faq-toggle { flex-shrink: 0; width: 38px; height: 38px; border: 1.5px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); transition: background var(--t-base) var(--ease-out-soft), border-color var(--t-base) var(--ease-out-soft), color var(--t-base) var(--ease-out-soft), transform 0.45s var(--ease-out-soft), box-shadow var(--t-base) var(--ease-out-soft); position: relative; background: var(--white); }
  .faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: currentColor; transition: transform 0.4s var(--ease-out-soft); border-radius: 1px; }
  .faq-toggle::before { width: 14px; height: 2px; }
  .faq-toggle::after { width: 2px; height: 14px; }
  .faq-item.open .faq-toggle { background: var(--cyan); color: var(--teal-deep); border-color: var(--cyan); transform: rotate(180deg); box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4); }
  .faq-item.open .faq-toggle::after { transform: scaleY(0); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out-soft), padding 0.45s var(--ease-out-soft); color: var(--gray-600); line-height: 1.65; padding-right: 60px; }
  .faq-item.open .faq-answer { max-height: 320px; padding-bottom: 26px; }

  /* ===== CTA ===== */
  .cta { padding: 0 0 120px; background: var(--white); position: relative; }
  .cta-box { background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal-deep) 50%, var(--teal) 100%); color: var(--white); border-radius: 24px; padding: 72px 64px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
  .cta-box::before { content: ''; position: absolute; top: -200px; right: -150px; width: 700px; height: 700px; background: radial-gradient(circle, var(--cyan) 0%, transparent 60%); opacity: 0.25; border-radius: 50%; animation: pulse-glow 6s ease-in-out infinite; }
  .cta-box::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(20, 184, 166, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at 0% 100%, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 0% 100%, black 0%, transparent 70%); pointer-events: none; }
  .cta-content { position: relative; z-index: 1; }
  .cta-content .eyebrow { margin-bottom: 24px; }
  .cta h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -0.035em; text-transform: uppercase; margin-bottom: 22px; }
  .cta h2 .cyan { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .cta p { color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; line-height: 1.6; }
  .cta-contact { position: relative; z-index: 1; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 32px; backdrop-filter: blur(10px); }
  .cta-contact-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan); margin-bottom: 20px; }
  .contact-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: padding-left 0.3s ease; }
  .contact-row:hover { padding-left: 8px; }
  .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-row:first-child { padding-top: 0; }
  .contact-row:hover .contact-icon { background: var(--cyan); color: var(--teal-deep); }
  .contact-icon { width: 38px; height: 38px; background: rgba(20, 184, 166, 0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--cyan); flex-shrink: 0; transition: all 0.3s ease; }
  .contact-info { display: flex; flex-direction: column; }
  .contact-label { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
  .contact-value { font-size: 0.92rem; color: var(--white); font-weight: 500; text-decoration: none; }

  /* ===== FOOTER ===== */
  footer { background: var(--teal-darker); color: rgba(255, 255, 255, 0.7); padding: 80px 0 36px; position: relative; overflow: hidden; }
  footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent); opacity: 0.5; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .footer-brand .brand { color: var(--white); margin-bottom: 22px; }
  .footer-brand .brand-logo { height: 48px; }
  .footer-brand .brand-logo-dark,
  .footer-brand .brand-logo-teal { fill: var(--logo-paper); }
  .footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 320px; color: rgba(255, 255, 255, 0.6); }
  .footer-col h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255, 255, 255, 0.65); text-decoration: none; font-size: 0.9rem; transition: all 0.2s ease; }
  .footer-col a:hover { color: var(--cyan); padding-left: 8px; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.83rem; color: rgba(255, 255, 255, 0.45); flex-wrap: wrap; gap: 16px; }
  .footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
  .footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-out-soft);
  }
  .footer-legal a:hover { color: var(--cyan-glow); }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease-out-soft), transform 0.85s var(--ease-out-soft); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-dashboard { max-width: 480px; margin: 0 auto; }
    .floating-card-1, .floating-card-2 { display: none; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-featured { grid-column: 1 / 3; grid-row: auto; }
  }
  @media (max-width: 1000px) {
    .container { padding: 0 24px; }
    .software-grid { grid-template-columns: 1fr; gap: 48px; }
    .warum-grid, .faq-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 48px; }
    .cta-box { grid-template-columns: 1fr; padding: 56px 36px; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
    .stat { padding: 0 16px; }
    .stat:nth-child(3) { padding-left: 0; border-left: none; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .portfolio, .warum, .faq, .testimonial, .process, .software-feature, .vergleich, .timeline-section { padding: 90px 0; }
    .vergleich-grid { grid-template-columns: 1fr; gap: 14px; }
    .timeline-track { grid-template-columns: 1fr; gap: 40px; }
    .timeline-line { display: none; }
    .milestone { padding-top: 0; padding-left: 56px; }
    .milestone::before { top: 8px; left: 14px; }
    .timeline-mega-year { font-size: 8rem; top: 10px; right: -10px; }
    .field-office { grid-template-columns: 1fr; gap: 16px; }
    .field-office-radius { text-align: left; }
    .field-office-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .heiner-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
    .heiner-avatar { width: 76px; height: 76px; font-size: 2.6rem; }
    .heiner-name { font-size: 1.4rem; }
    .service-team-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .service-team-bottom { flex-direction: column; align-items: stretch; }
    .service-phone { justify-content: center; }
    .gf-letter { padding: 32px 28px; }
    .gf-letter-stamp { width: 64px; height: 64px; }
    .werkstatt-tipp { grid-template-columns: 1fr; text-align: center; gap: 14px; padding: 18px 20px; }
    .werkstatt-tipp-label { border-right: 0; padding-right: 0; padding-bottom: 12px; border-bottom: 1px dashed rgba(20, 184, 166, 0.25); }
    .werkstatt-tipp-link { justify-self: center; }
    .mailarchiv-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; text-align: center; }
    .mailarchiv-icon { width: 84px; height: 84px; margin: 0 auto; }
    .mailarchiv-features { justify-content: center; }
    .mailarchiv-desc { margin-left: auto; margin-right: auto; }
    .closing-motto-text .word { display: block; margin: 0 0 8px; }
    .hero { padding: calc(var(--site-header-height) + 24px) 0 90px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .site-header-brand .brand .brand-logo.brand-logo--gloss { height: 76px; margin-top: -4px; }
    .site-header-brand .brand-cast {
      top: -4px;
      height: 76px;
      width: calc(76px * 428.6 / 185);
    }
    .nav-spacer { width: 140px; }
    :root {
      --site-header-bar-height: 80px;
      --nav-contact-height: 28px;
    }
    .nav-contact-list li + li {
      margin-left: 16px;
      padding-left: 16px;
    }
    .nav-contact-link,
    .nav-contact-hours {
      font-size: 0.75rem;
      gap: 6px;
    }
    .nav-contact-hours { display: none; }
    .bento-featured { padding: 32px; }
    .bento-featured .bento-title { font-size: 1.5rem; }
    .bento-tiers { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 700px) {
    .bento { grid-template-columns: 1fr; }
    .bento-featured { grid-column: 1; }
    .stats-grid { grid-template-columns: 1fr; gap: 24px 0; }
    .stat { padding: 0; border-left: none !important; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
    .stat:last-child { border-bottom: none; padding-bottom: 0; }
    .software-features, .testimonial-stats { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn { justify-content: center; }
    .hero-quick-stats { gap: 20px; flex-wrap: wrap; }
    .bento-tiers { grid-template-columns: 1fr; }
  }
