/* ============================================
   upbox Website v9 – Design System
   SEO-optimiert, erweitert, folder-basiert
   ============================================ */

/* --- Self-hosted Inter (DSGVO-freundlich, kein Google-Fonts-Call) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/InterVariable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/InterVariable-Italic.woff2') format('woff2-variations');
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050B12;
  --bg-light: #0A1420;
  --bg-card: #0E1926;
  --bg-card-strong: #101E2D;
  --text: #F4FAFF;
  --text-muted: #8A96A8;
  --accent: #63D7FF;
  --accent-2: #2EE6D6;
  --accent-hover: #86E3FF;
  --accent-glow: rgba(99, 215, 255, 0.16);
  --accent-glow-strong: rgba(99, 215, 255, 0.24);
  --border: rgba(125, 223, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(125, 223, 255, 0.22);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1140px;
  --section-py: 6rem;
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(circle at top, rgba(99, 215, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #040A10 0%, var(--bg) 24%, #06111B 100%);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p + p {
  margin-top: 1rem;
}

/* --- Section Number (Lupudu-Style) --- */
.section-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: block;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 11, 18, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.03);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.site-logo:hover {
  color: var(--text);
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-logo-text {
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
  text-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.site-nav .btn-nav {
  color: var(--bg);
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.site-nav .btn-nav:hover {
  background: var(--accent-hover);
  color: var(--bg);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Dropdown Navigation (Lösungen) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-caret {
  font-size: 0.75rem;
  line-height: 1;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -0.75rem;
  min-width: 220px;
  background: rgba(4, 12, 26, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, #3dd9ff 100%);
  color: #041018;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 10px 30px rgba(99, 215, 255, 0.16);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--accent-hover) 0%, #57e6ff 100%);
  border-color: rgba(255,255,255,0.24);
  color: #041018;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 16px 36px rgba(99, 215, 255, 0.22);
}

.btn-outline {
  background: rgba(10, 20, 32, 0.66);
  color: var(--accent);
  border-color: var(--border-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn-outline:hover {
  background: rgba(99, 215, 255, 0.08);
  color: var(--accent-hover);
  border-color: rgba(99, 215, 255, 0.32);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Sections --- */
section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(10, 20, 32, 0.96), rgba(9, 18, 28, 0.96));
}

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin-top: 1rem;
}

.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero --- */
.hero {
  padding: 10rem 0 var(--section-py);
  position: relative;
  background:
    linear-gradient(rgba(12, 18, 26, 0.76), rgba(8, 14, 22, 0.82)),
    url('/img/upbox-social-card.webp') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 16, 0.36) 0%, rgba(4, 10, 16, 0.78) 100%),
    radial-gradient(circle at 14% 20%, rgba(99, 215, 255, 0.08), rgba(99, 215, 255, 0) 28%),
    radial-gradient(circle at 82% 16%, rgba(46, 230, 214, 0.05), rgba(46, 230, 214, 0) 24%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 215, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 215, 255, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.36), rgba(0,0,0,0));
  opacity: 0.34;
  pointer-events: none;
}

.hero-panel {
  padding: 2.3rem 2.4rem 2.8rem;
  border: 1px solid rgba(99, 215, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 18, 28, 0.72), rgba(10, 18, 28, 0.48));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(99, 215, 255, 0.18);
  pointer-events: none;
}

.hero-panel::before {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.hero-panel::after {
  right: 16px;
  bottom: 16px;
  border-left: 0;
  border-top: 0;
}

.hero h1 {
  max-width: 800px;
}

.hero .lead {
  font-size: 1.14rem;
  color: rgba(244, 250, 255, 0.76);
  max-width: 700px;
  margin: 1.5rem 0 2.1rem;
  line-height: 1.72;
}

.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 215, 255, 0.16);
  background: rgba(10, 18, 28, 0.62);
  color: rgba(244, 250, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-sub {
  padding: 9rem 0 var(--section-py);
  background:
    linear-gradient(rgba(40, 44, 48, 0.62), rgba(40, 44, 48, 0.62)),
    url('/img/upbox-social-card.webp') center/cover no-repeat !important;
}

.hero-sub .container {
  position: relative;
  z-index: 1;
}

/* --- Hero Solution Logos / Badges --- */
.hero-solution-logos {
  margin: 0 0 2rem;
}

.hero-signal-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 980px;
}

.hero-signal-card {
  position: relative;
  min-height: 148px;
  padding: 1.15rem 1.1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 215, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 19, 29, 0.86), rgba(9, 17, 27, 0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 12px 30px rgba(0,0,0,0.14);
  overflow: hidden;
}

.hero-signal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(99, 215, 255, 0.035), rgba(99, 215, 255, 0));
  pointer-events: none;
}

.hero-signal-card::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-top: 1px solid rgba(99, 215, 255, 0.14);
  border-right: 1px solid rgba(99, 215, 255, 0.14);
  border-top-right-radius: 8px;
}

.hero-signal-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(244, 250, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.hero-signal-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.hero-signal-card-accent {
  border-color: rgba(46, 230, 214, 0.18);
  background: linear-gradient(180deg, rgba(11, 23, 31, 0.94), rgba(9, 17, 27, 0.96));
}

.hero-solution-label {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-solution-items {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 215, 255, 0.14);
  background: linear-gradient(180deg, rgba(12, 22, 34, 0.88), rgba(10, 18, 28, 0.76));
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.solution-badge:hover {
  color: #FFFFFF;
  border-color: rgba(56, 251, 219, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.solution-badge-image {
  padding: 0.9rem 1.15rem;
}

.solution-logo-img {
  display: block;
  width: auto;
  height: 26px;
  object-fit: contain;
}

.solution-logo-openclaw {
  height: 24px;
}

.solution-logo-n8n {
  height: 26px;
}

.solution-badge-openclaw {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 2.4rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(7, 14, 22, 0.92), rgba(7, 14, 22, 0.72));
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 65px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
  filter: grayscale(30%);
}

.trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Trust Badge (v2 new) --- */
.trust-badge-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.65rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 12, 26, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}

.trust-badge img {
  height: 85px;
  width: auto;
  display: block;
  padding: 0.3rem 0.48rem;
  border-radius: 8px;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Cards --- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 25, 38, 0.94), rgba(11, 20, 30, 0.98));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 18px 40px rgba(0, 0, 0, 0.16);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(99, 215, 255, 0.025), rgba(99, 215, 255, 0));
}

.card::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-top: 1px solid rgba(99, 215, 255, 0.16);
  border-left: 1px solid rgba(99, 215, 255, 0.16);
  border-top-left-radius: 10px;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(99, 215, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 24px 54px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(99, 215, 255, 0.05);
  background: linear-gradient(180deg, rgba(16, 30, 45, 0.98), rgba(11, 20, 30, 1));
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(99, 215, 255, 0.16);
  background: rgba(99, 215, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.card-icon::before,
.card-icon::after {
  content: '';
  position: absolute;
  display: block;
}

.card-icon::before {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(244, 250, 255, 0.82);
  border-radius: 5px;
}

.card-icon::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  right: 8px;
  top: 8px;
  box-shadow: 0 0 12px rgba(99, 215, 255, 0.26);
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Check List --- */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- Result Metrics --- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.metric {
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-radius: 0 14px 14px 0;
}

.metric-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.metric h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.metric p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding-top: 0.5rem;
}

.step::before {
  content: '0' counter(step);
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--section-py) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: -24% auto auto 50%;
  width: 620px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(56, 251, 219, 0.24) 0%, rgba(56, 251, 219, 0.08) 38%, rgba(56, 251, 219, 0) 74%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: auto 50% -10% auto;
  width: 560px;
  height: 560px;
  transform: translateX(50%);
  background: radial-gradient(circle, rgba(87, 120, 255, 0.16) 0%, rgba(87, 120, 255, 0.05) 40%, rgba(87, 120, 255, 0) 74%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding-top: 2.6rem;
  padding-bottom: 3rem;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 28, 48, 0.68), rgba(13, 27, 46, 0.42));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-section.cta-accent-alt::after {
  inset: auto 50% -6% auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(136, 92, 255, 0.26) 0%, rgba(136, 92, 255, 0.1) 34%, rgba(136, 92, 255, 0) 72%);
}

.cta-section.cta-accent-alt .container {
  background: linear-gradient(180deg, rgba(24, 26, 58, 0.76), rgba(13, 27, 46, 0.42));
  box-shadow: 0 34px 88px rgba(18, 10, 44, 0.34);
  border-color: rgba(163, 140, 255, 0.2);
}

.cta-section .section-num {
  display: block;
  margin-bottom: 1rem;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* --- Split Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* --- FAQ (v2 new) --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.06rem;
  font-weight: 650;
  text-align: left;
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.45;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Comparison Table (v2 new) --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

/* Variante mit nur einer Box: zentriert, max-width */
.comparison-grid-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.comparison-col {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 24, 36, 0.92), rgba(10, 18, 28, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 44px rgba(0,0,0,0.18);
}

.comparison-col::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-top: 1px solid rgba(99, 215, 255, 0.16);
  border-right: 1px solid rgba(99, 215, 255, 0.16);
  border-top-right-radius: 10px;
}

.comparison-col-openclaw {
  border-color: rgba(99, 215, 255, 0.2);
  background: linear-gradient(180deg, rgba(12, 26, 38, 0.95), rgba(10, 18, 28, 0.98));
}

.comparison-col-n8n {
  border-color: rgba(46, 230, 214, 0.16);
  background: linear-gradient(180deg, rgba(12, 24, 34, 0.95), rgba(10, 18, 28, 0.98));
}

.comparison-col h3 {
  margin-bottom: 1.5rem;
}

.comparison-col ul {
  padding-left: 0;
  list-style: none;
}

.comparison-col li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.comparison-col li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(56, 251, 219, 0.6);
}

.comparison-col li:last-child {
  margin-bottom: 0;
}

/* --- Footer --- */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.94), rgba(5, 11, 18, 1));
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-col {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col strong {
  color: var(--text);
  font-weight: 600;
}

.footer-col-title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-trust img {
  display: block;
  height: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer-trust .footer-trust-jtl {
  max-width: 130px;
}

.footer-trust .footer-trust-exali {
  max-width: 100px;
}

.footer-trust img:hover {
  opacity: 1;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

.footer-copy a {
  color: var(--text-muted);
}

.footer-copy a:hover {
  color: var(--text);
}

/* --- Kontaktformular --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(10, 18, 28, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.form-row .required {
  color: var(--accent);
  font-weight: 700;
}

.form-row .optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  background: rgba(4, 12, 26, 0.7);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), background-color var(--transition);
  width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(4, 12, 26, 0.9);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-row-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-row-consent a {
  color: var(--accent);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.form-hint .required {
  color: var(--accent);
}

/* Erfolgs-/Fehler-Status nach Form-Submit */
.form-status {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.form-status--ok {
  background: rgba(56, 251, 219, 0.08);
  border: 1px solid rgba(56, 251, 219, 0.4);
  color: var(--text);
}

.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: var(--text);
}

.footer-copy-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* --- Wawiagent v6: atmosphere + effects --- */
.hero-wawi {
  overflow: hidden;
}

/* Background-Video (Cyber/Matrix-Look) für Hero */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.2) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.2) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(99, 215, 255, 0.14) 0%, rgba(99, 215, 255, 0.04) 28%, rgba(99, 215, 255, 0) 52%),
    radial-gradient(circle at 82% 18%, rgba(46, 230, 214, 0.11) 0%, rgba(46, 230, 214, 0.03) 26%, rgba(46, 230, 214, 0) 48%),
    linear-gradient(180deg, rgba(4, 12, 26, 0.16), rgba(4, 12, 26, 0.34));
  filter: blur(10px);
}

.section-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.64), rgba(10, 22, 40, 0.78)),
    url('../img/agent-background-wide-1.png') center/cover no-repeat;
}

.section-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.46) 0%, rgba(4, 12, 26, 0.38) 35%, rgba(4, 12, 26, 0.58) 100%),
    radial-gradient(circle at 50% 0%, rgba(56, 251, 219, 0.08), rgba(56, 251, 219, 0) 42%);
  pointer-events: none;
}

.section-showcase .container,
.section-bg .container {
  position: relative;
  z-index: 1;
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-bg-knowledge {
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.64), rgba(10, 22, 40, 0.7)),
    url('../img/wawi-agent-background-1.png') center/cover no-repeat;
}

.section-bg-knowledge::before {
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.3) 0%, rgba(4, 12, 26, 0.4) 100%),
    radial-gradient(circle at 18% 24%, rgba(56, 251, 219, 0.08), rgba(56, 251, 219, 0) 36%);
}

.section-bg-results {
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.6), rgba(10, 22, 40, 0.68)),
    url('../img/wawi-agent-background-2.png') center 34%/cover no-repeat;
}

.section-bg-results::before {
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.24) 0%, rgba(4, 12, 26, 0.28) 42%, rgba(4, 12, 26, 0.4) 100%),
    radial-gradient(circle at 78% 18%, rgba(56, 251, 219, 0.07), rgba(56, 251, 219, 0) 34%),
    radial-gradient(circle at 50% 78%, rgba(56, 251, 219, 0.05), rgba(56, 251, 219, 0) 38%);
}

.section-bg-onboarding {
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.64), rgba(10, 22, 40, 0.72)),
    url('../img/wawi-agent-background-3.png') center/cover no-repeat;
}

.section-bg-onboarding::before {
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.34) 0%, rgba(4, 12, 26, 0.42) 100%),
    radial-gradient(circle at 50% 0%, rgba(56, 251, 219, 0.06), rgba(56, 251, 219, 0) 38%);
}

.section-bg-orientation {
  background:
    linear-gradient(180deg, rgba(6, 14, 24, 0.68), rgba(10, 22, 40, 0.74)),
    url('../img/wawi-agent-background-4.png') center/cover no-repeat;
}

.section-bg-orientation::before {
  background:
    linear-gradient(180deg, rgba(4, 12, 26, 0.3) 0%, rgba(4, 12, 26, 0.4) 100%),
    radial-gradient(circle at 24% 22%, rgba(56, 251, 219, 0.06), rgba(56, 251, 219, 0) 36%),
    radial-gradient(circle at 74% 20%, rgba(87, 120, 255, 0.08), rgba(87, 120, 255, 0) 34%);
}

.workflow-section .step {
  padding: 1.4rem 1.35rem 1rem;
  border: 1px solid rgba(99, 215, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.85), rgba(13, 27, 46, 0.62));
}

.grid-2-solutions,
.grid-3-benefits,
.grid-3-offers,
.grid-2-resources {
  align-items: stretch;
}

.benefit-card {
  padding-top: 2.15rem;
}

.benefit-card .card-icon {
  margin-bottom: 1.15rem;
}

.benefit-card-integration .card-icon::before {
  border-radius: 4px;
}

.benefit-card-integration .card-icon::after {
  box-shadow: 0 0 14px rgba(99, 215, 255, 0.32);
}

.benefit-card-agent .card-icon::before {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(99, 215, 255, 0.08);
}

.benefit-card-workflow .card-icon::before {
  width: 17px;
  height: 10px;
  border-radius: 3px;
}

.offer-card {
  padding-top: 2.15rem;
  background: linear-gradient(180deg, rgba(14, 25, 38, 0.96), rgba(9, 18, 28, 1));
}

.offer-card::before {
  background: linear-gradient(180deg, rgba(99, 215, 255, 0.04), rgba(99, 215, 255, 0));
}

.offer-card .btn-group {
  margin-top: auto;
}

.offer-card-operations {
  border-color: rgba(99, 215, 255, 0.16);
}

.offer-card-reporting {
  border-color: rgba(46, 230, 214, 0.14);
}

.offer-card-speed {
  border-color: rgba(255, 255, 255, 0.1);
}

.offer-card-operations .card-icon::before {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.offer-card-reporting .card-icon::before {
  width: 16px;
  height: 12px;
  border: 0;
  border-bottom: 2px solid rgba(244, 250, 255, 0.82);
  border-left: 2px solid rgba(244, 250, 255, 0.82);
  transform: rotate(-45deg) translateY(1px);
  border-radius: 2px;
}

.offer-card-speed .card-icon::before {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  clip-path: polygon(45% 0, 100% 0, 62% 48%, 100% 48%, 36% 100%, 52% 60%, 16% 60%);
  background: rgba(244, 250, 255, 0.82);
  border: 0;
}

.resource-card {
  min-height: 100%;
  padding-top: 2.15rem;
}

.resource-card-guide {
  border-color: rgba(99, 215, 255, 0.16);
}

.resource-card-tool {
  border-color: rgba(46, 230, 214, 0.14);
}

.resource-card-guide .card-icon::before {
  width: 14px;
  height: 16px;
  border-radius: 3px;
}

.resource-card-tool .card-icon::before {
  width: 16px;
  height: 12px;
  border-radius: 999px;
}

.faq-list-v7 {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11, 20, 30, 0.76), rgba(9, 17, 27, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 42px rgba(0,0,0,0.18);
}

.solution-card-logo {
  display: block;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.15rem;
}

.solution-card-logo-openclaw {
  height: 34px;
}

.solution-card-logo-n8n {
  height: 28px;
}

.solution-card-logo-jtlwawi {
  height: 32px;
}

.solution-card-logo-jtlshop {
  height: 32px;
}

/* Mobile: Solution-Card-Logos 30% größer für bessere Lesbarkeit */
@media (max-width: 768px) {
  .solution-card-logo-openclaw { height: 44px; }
  .solution-card-logo-n8n { height: 36px; }
  .solution-card-logo-jtlwawi { height: 42px; }
  .solution-card-logo-jtlshop { height: 42px; }
}

.hero-product-logo {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card.reveal-item.is-visible,
.metric.reveal-item.is-visible,
.step.reveal-item.is-visible {
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    opacity 0.2s ease;
}

.card.reveal-item.is-visible:hover,
.metric.reveal-item.is-visible:hover,
.step.reveal-item.is-visible:hover {
  transform: translateY(-4px);
}

.reveal-parent .section-header,
.reveal-parent .card,
.reveal-parent .metric,
.reveal-parent .step,
.reveal-parent .split-content > *,
.reveal-parent .split-visual > *,
.reveal-parent .faq-item,
.hero-wawi .reveal-fade {
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .btn,
  .trust-logos img {
    transition: none;
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .split,
  .comparison-grid,
  .hero-signal-panel {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(4, 12, 26, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  /* Mobile dropdown: stack flat instead of overlay */
  .nav-dropdown {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    align-self: auto !important;
  }
  .nav-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0.5rem 0 0.25rem 1rem !important;
    margin: 0.25rem 0 0 0 !important;
    box-shadow: none !important;
    width: 100%;
  }
  .nav-caret {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
  }
  .footer-trust {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-trust img {
    margin: 0;
  }
  .footer-links {
    align-items: center;
  }

  .trust-bar .container,
  .trust-badge-row {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 4.5rem;
  }

  body {
    font-size: 1rem;
  }

  .hero,
  .hero-sub {
    padding-top: 8.5rem;
  }

  .trust-badge {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.95rem 1.15rem;
  }

  .trust-badge img {
    height: 64px;
  }

  .hero-solution-items,
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-signal-card {
    min-height: auto;
  }

  .solution-badge,
  .btn {
    width: 100%;
  }
}


/* ============================================
   v11 — Cyber-Industrial-Tuning (ehem. v10b-overlay, jetzt integriert)
   ============================================ */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2-variations');
}

:root {
  --accent: #38FBDB !important;
  --accent-hover: #5cffe6 !important;
  --accent-2: #38FBDB !important;
  --accent-glow: rgba(56, 251, 219, 0.45) !important;
  --bg: #0a0e12 !important;
  --bg-light: #0d1218 !important;
  --bg-card: #111722 !important;
  --bg-card-strong: #131c28 !important;
  --border: rgba(56, 251, 219, 0.20) !important;
  --border-soft: rgba(56, 251, 219, 0.10) !important;
  --border-strong: rgba(56, 251, 219, 0.35) !important;
  --radius: 4px !important;
  --radius-lg: 6px !important;
}

/* --- Hintergrund: deutlich industrieller --- */
body {
  background:
    linear-gradient(180deg, #06090d 0%, #0a0e12 50%, #06080b 100%) !important;
  position: relative;
  font-family: 'Inter', -apple-system, sans-serif;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(56,251,219,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56,251,219,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
}
/* Header bleibt fixed (Original-Verhalten) — nur Inhalt über die Hintergrund-Overlays heben */
main, section, footer, .trust-bar { position: relative; z-index: 1; }
.site-header { z-index: 200 !important; /* über die Scanlines (9999 hat pointer-events:none, aber stacking-mäßig sicher) */ }
.nav-dropdown { z-index: 210; }
.nav-dropdown-menu { z-index: 220 !important; }

/* --- Typografie --- */
h1, h2, h3,
.section-num,
.btn, .btn-primary, .btn-outline,
.btn-nav,
.site-nav a,
.footer-col-title,
.faq-question,
.aurora-pill,
.section-headline,
.trust-label,
.footer-copy,
.nav-dropdown-menu a {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
}

.section-num {
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #38FBDB !important;
  text-shadow: 0 0 10px rgba(56, 251, 219, 0.4) !important;
}

h1 .text-accent, h2 .text-accent, .text-accent {
  color: #38FBDB !important;
  text-shadow: 0 0 18px rgba(56, 251, 219, 0.4);
}

/* --- HEADER: terminal-Look --- */
.site-header {
  background: rgba(6, 9, 13, 0.92) !important;
  border-bottom: 1px solid #38FBDB !important;
  border-bottom-color: rgba(56, 251, 219, 0.4) !important;
  box-shadow: 0 0 20px rgba(56, 251, 219, 0.18) !important;
  backdrop-filter: blur(10px);
}
/* Logo-Text bleibt weiß (wie ursprünglich), nur Schrift auf Space Grotesk + Italic */
body .site-header .site-logo .site-logo-text,
body .site-header a.site-logo span.site-logo-text {
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  color: #FFFFFF !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 0 10px rgba(56, 251, 219, 0.18) !important;
}
.site-nav a {
  font-size: 0.78rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  color: rgba(56, 251, 219, 0.55) !important;
  transition: color 0.2s, text-shadow 0.2s;
}
.site-nav a:hover {
  color: #38FBDB !important;
  text-shadow: 0 0 10px rgba(56, 251, 219, 0.6) !important;
}
.site-nav a.active {
  color: #38FBDB !important;
}
.site-nav a.active::after {
  background: #38FBDB !important;
  box-shadow: 0 0 6px rgba(56, 251, 219, 0.6);
}
.site-nav .btn-nav,
.site-nav a.btn-nav {
  background: transparent !important;
  color: #38FBDB !important;
  border: 1px solid #38FBDB !important;
  border-radius: 0 !important;
  box-shadow: 0 0 12px rgba(56, 251, 219, 0.4) !important;
  padding: 0.55rem 1.2rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}
.site-nav .btn-nav:hover {
  background: #38FBDB !important;
  color: #04101a !important;
  box-shadow: 0 0 24px rgba(56, 251, 219, 0.7) !important;
}
.nav-dropdown-menu {
  background: rgba(6, 9, 13, 0.98) !important;
  border: 1px solid rgba(56, 251, 219, 0.3) !important;
  border-radius: 0 !important;
  box-shadow: 0 0 24px rgba(56, 251, 219, 0.2) !important;
  /* Gap zum Toggle schließen, sodass Hover beim Hinüberfahren erhalten bleibt */
  margin-top: 0 !important;
  padding-top: 0.75rem !important;
  background-clip: padding-box;
}
/* .nav-dropdown div nimmt volle Header-Höhe ein, Toggle wird darin zentriert.
   So liegt der Toggle exakt auf gleicher Linie wie Dashboard/Guide/Kontakt. */
.nav-dropdown {
  align-self: stretch !important;
  display: inline-flex !important;
  align-items: center !important;
}
.nav-dropdown-toggle {
  padding: 0 !important;
  line-height: 1.5 !important;
}
.nav-dropdown-menu a {
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.78rem !important;
  color: rgba(56, 251, 219, 0.55) !important;
}
.nav-dropdown-menu a:hover {
  background: rgba(56, 251, 219, 0.1) !important;
  color: #38FBDB !important;
}

/* Mobile-Override für Nav-Dropdown — muss NACH den Desktop-!important-Regeln stehen,
   sonst werden display: inline-flex und align-items: center vom Desktop-Block übernommen
   und die Top-Level-Items unterhalb der Lösungen werden weggedrückt. */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    align-self: auto !important;
  }
}

/* --- HERO: Sidebars per Pseudo-Elemente links/rechts --- */
.hero, .hero-wawi, .hero-sub {
  background: transparent !important;
  position: relative;
}
.hero {
  border-bottom: 1px solid rgba(56, 251, 219, 0.18);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hero::before {
  left: 0;
  border-right: 1px solid rgba(56, 251, 219, 0.18);
  box-shadow: 4px 0 12px rgba(56, 251, 219, 0.05) inset;
}
.hero::after {
  right: 0;
  border-left: 1px solid rgba(56, 251, 219, 0.18);
  box-shadow: -4px 0 12px rgba(56, 251, 219, 0.05) inset;
}

/* Subpage-Heroes: Pseudo-Strips deaktivieren, weil eigene op-vstrip-Divs eingefügt werden */
.hero-sub::before, .hero-sub::after { display: none !important; }
.hero-sub .op-vstrip { z-index: 6; }

/* Subpages: Bar ausblenden — LEDs (Punkte) und Text-Label bleiben */
.hero-sub .op-vstrip-bar { display: none !important; }
.hero-panel {
  border: 1px solid rgba(56, 251, 219, 0.25) !important;
  border-radius: 4px !important;
  background: rgba(7, 11, 16, 0.62) !important;
  box-shadow:
    0 0 0 1px rgba(56, 251, 219, 0.04) inset,
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(56, 251, 219, 0.10) !important;
}

h1 {
  font-family: 'Space Grotesk', sans-serif !important;
  letter-spacing: -0.01em !important;
  font-weight: 800 !important;
}

/* --- BUTTONS: scharf, glühend, CAPS --- */
.btn, .btn-primary, .btn-outline {
  border-radius: 0 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 1rem 1.8rem !important;
  transition: all 0.25s ease !important;
}
.btn-primary {
  background: #38FBDB !important;
  color: #04101a !important;
  border: 1px solid #38FBDB !important;
  box-shadow: 0 0 24px rgba(56, 251, 219, 0.5) !important;
}
.btn-primary:hover {
  background: #5cffe6 !important;
  color: #04101a !important;
  box-shadow: 0 0 36px rgba(56, 251, 219, 0.7), inset 0 0 12px rgba(255,255,255,0.2) !important;
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(56, 251, 219, 0.04) !important;
  color: #38FBDB !important;
  border: 1px solid #38FBDB !important;
  box-shadow: 0 0 12px rgba(56, 251, 219, 0.3) !important;
}
.btn-outline:hover {
  background: rgba(56, 251, 219, 0.12) !important;
  border-color: #5cffe6 !important;
  color: #5cffe6 !important;
  box-shadow: 0 0 22px rgba(56, 251, 219, 0.5) !important;
}

/* --- TRUST-BAR --- */
.trust-bar {
  background: rgba(6, 9, 13, 0.7) !important;
  border-top: 1px solid rgba(56, 251, 219, 0.18) !important;
  border-bottom: 1px solid rgba(56, 251, 219, 0.18) !important;
}
.trust-label {
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  font-size: 0.72rem !important;
  color: rgba(56, 251, 219, 0.55) !important;
  font-weight: 700 !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  text-align: center;
}

/* Trust-Bar auf engen Viewports umbrechen */
.trust-bar .container,
.trust-bar > div {
  flex-wrap: wrap !important;
  gap: 0.75rem 1.5rem !important;
  text-align: center;
  justify-content: center !important;
}
.trust-logos {
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 1rem 1.5rem !important;
}
@media (max-width: 480px) {
  .trust-label {
    letter-spacing: 0.16em !important;
    font-size: 0.68rem !important;
    width: 100%;
  }
  .trust-logos img { max-height: 28px; }
}

/* --- KARTEN: scharfer Cyan-Frame --- */
.card {
  border-radius: 4px !important;
  border: 1px solid rgba(56, 251, 219, 0.18) !important;
  background: rgba(13, 18, 25, 0.55) !important;
  position: relative;
}
.card:hover {
  border-color: rgba(56, 251, 219, 0.45) !important;
  box-shadow: 0 0 18px rgba(56, 251, 219, 0.12) !important;
}
.card-link:hover {
  border-color: #38FBDB !important;
  box-shadow: 0 0 22px rgba(56, 251, 219, 0.22) !important;
}

/* --- COMPARISON-COLS --- */
.comparison-col {
  border-radius: 4px !important;
  border: 1px solid rgba(56, 251, 219, 0.2) !important;
}

/* --- FAQ — neues Design: ganze Zeile klickbar, Chevron rechts, dezent --- */
.faq-list, .faq-list-v7 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border-top: 1px solid rgba(56, 251, 219, 0.18) !important;
}
.faq-item {
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(56, 251, 219, 0.18) !important;
  background: transparent !important;
  transition: background-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
  position: relative;
}
.faq-item:hover { background: rgba(56, 251, 219, 0.04) !important; }
.faq-item.open {
  background: rgba(56, 251, 219, 0.06) !important;
  box-shadow: inset 3px 0 0 #38FBDB;
}

/* Frage-Button: voller Reihe, Pfeil rechts via Pseudo-Element */
.faq-question {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  width: 100% !important;
  padding: 1.5rem 1.25rem 1.5rem 1.5rem !important;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #E8F4F8 !important;
  text-align: left !important;
  line-height: 1.45 !important;
}
.faq-question::after {
  content: '›' !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: rgba(56, 251, 219, 0.55) !important;
  transition: transform 0.25s ease, color 0.25s !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: 0 !important;
  position: static !important;
  line-height: 1 !important;
  transform: rotate(90deg);
}
.faq-item.open .faq-question {
  color: #38FBDB !important;
}
.faq-item.open .faq-question::after {
  transform: rotate(270deg);
  color: #38FBDB !important;
}

/* Antwort-Bereich — standardmäßig zugeklappt, beim Öffnen ausfahren */
.faq-answer {
  padding: 0 3rem 0 1.5rem !important;
  background: transparent !important;
  border: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
}
.faq-item.open .faq-answer {
  padding: 0 3rem 1.5rem 1.5rem !important;
  max-height: 600px !important;
}
.faq-answer p {
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  max-width: 780px;
}

/* --- CTA-Section: Top/Bottom-Lines + Glow, kein Streifenmuster --- */
.cta-section {
  border: 0 !important;
  border-top: 1px solid rgba(56, 251, 219, 0.4) !important;
  border-bottom: 1px solid rgba(56, 251, 219, 0.4) !important;
  background: rgba(7, 11, 16, 0.78) !important;
  box-shadow:
    0 -10px 30px rgba(56, 251, 219, 0.08),
    0 10px 30px rgba(56, 251, 219, 0.08) !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  text-shadow: 0 0 12px rgba(56, 251, 219, 0.3);
}
.cta-section .container {
  position: relative;
  z-index: 1;
}

/* --- JTL-Servicepartner-Badge klein in der Nav --- */
.nav-partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
  cursor: help;
}
.nav-partner-badge img {
  height: 28px;
  width: auto;
  display: block;
}
.nav-partner-badge:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(56, 251, 219, 0.45));
}

/* --- SVG-Icon-Box in den Karten (Cyber-Industrial-Stil) --- */
.card-svg {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(56, 251, 219, 0.32);
  background: rgba(56, 251, 219, 0.06);
  color: #38FBDB;
  margin-bottom: 1.1rem;
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card-svg svg {
  width: 22px;
  height: 22px;
  display: block;
}
/* Mounting-Bracket-Corners */
.card-svg::before, .card-svg::after,
.card-svg > i.bracket {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border: 1px solid #38FBDB;
}
.card-svg::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.card-svg::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.card-link:hover .card-svg,
.card:hover .card-svg {
  background: rgba(56, 251, 219, 0.14);
  border-color: #38FBDB;
  box-shadow: 0 0 14px rgba(56, 251, 219, 0.32);
}

/* --- Mini-Icons (Emoji) in allen Karten entfernen --- */
.card-icon,
.card .card-icon,
.benefit-card::before,
.benefit-card-integration::before,
.benefit-card-agent::before,
.benefit-card-workflow::before,
.offer-card::before,
.offer-card-operations::before,
.offer-card-reporting::before,
.offer-card-speed::before,
.resource-card::before,
.resource-card-guide::before,
.resource-card-tool::before {
  display: none !important;
  content: none !important;
}

/* --- FOOTER: deutlich industrieller, blickdichter Hintergrund (kein Grid-Durchschein) --- */
.site-footer {
  background-color: #04070b !important;
  background-image:
    linear-gradient(180deg, rgba(56, 251, 219, 0.06) 0%, transparent 100px),
    linear-gradient(180deg, #06090d 0%, #04070b 100%) !important;
  border-top: 1px solid rgba(56, 251, 219, 0.55) !important;
  box-shadow: 0 -2px 24px rgba(56, 251, 219, 0.18) !important;
  position: relative;
  z-index: 2;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to bottom, rgba(56, 251, 219, 0.4), transparent);
  pointer-events: none;
}
.footer-col-title {
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #38FBDB !important;
  text-shadow: 0 0 10px rgba(56, 251, 219, 0.35);
  margin-bottom: 1rem !important;
}
.footer-col strong {
  color: #38FBDB !important;
}
.footer-copy {
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  font-size: 0.7rem !important;
  color: rgba(56, 251, 219, 0.5) !important;
}
.footer-links a,
.footer-col a {
  font-size: 0.85rem;
  color: rgba(56, 251, 219, 0.55) !important;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer-links a:hover,
.footer-col a:hover {
  color: #38FBDB !important;
  text-shadow: 0 0 8px rgba(56, 251, 219, 0.45);
}

/* --- Solution-Badges (OpenClaw / n8n) im Hero --- */
.solution-badge {
  border-radius: 4px !important;
  border: 1px solid rgba(56, 251, 219, 0.18) !important;
  transition: all 0.2s !important;
}
.solution-badge:hover {
  border-color: #38FBDB !important;
  box-shadow: 0 0 22px rgba(56, 251, 219, 0.28) !important;
}

/* --- Mobile: Sidebars nicht sinnvoll, ausblenden --- */
@media (max-width: 880px) {
  .hero::before, .hero::after { display: none; }
}

/* ============================================
   Operator-Hero (v10b-Style, voll umgebaut)
   ============================================ */
.op-hero {
  position: relative;
  padding: 8rem 0 6rem !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(56, 251, 219, 0.18);
}
/* Hero-Pseudo-Sidebars deaktivieren — wir haben jetzt eigene Strips */
.op-hero::after { display: none !important; }

/* Dunkleres Overlay über dem Video, damit Text besser lesbar ist */
.op-hero::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  border: 0 !important;
  background:
    linear-gradient(180deg, rgba(4, 8, 12, 0.45) 0%, rgba(4, 8, 12, 0.62) 60%, rgba(4, 8, 12, 0.85) 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  box-shadow: none !important;
}

/* Video etwas leiser, damit Industrial-Look stimmt */
.op-hero .hero-bg-video {
  opacity: 0.32 !important;
}

/* Inhalt über das Overlay heben — Strips bleiben absolute (sonst rutschen sie in den Flow) */
.op-hero .container { position: relative; z-index: 4; }
.op-hero .op-vstrip { z-index: 6; }

/* Vertikale Strips */
.op-vstrip {
  position: absolute;
  top: 5rem; bottom: 2rem;
  width: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  z-index: 6;
  pointer-events: none;
}
@media (min-width: 1100px) { .op-vstrip { display: flex; } }
.op-vstrip-left { left: 0; border-right: 1px solid rgba(56, 251, 219, 0.18); }
.op-vstrip-right { right: 0; border-left: 1px solid rgba(56, 251, 219, 0.18); }
.op-vstrip-led {
  width: 6px; height: 6px; border-radius: 50%;
  background: #38FBDB;
  box-shadow: 0 0 8px #38FBDB;
}
.op-vstrip-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(56, 251, 219, 0.55);
  font-weight: 600;
  white-space: nowrap;
}
.op-vstrip-bar {
  width: 2px; height: 64px;
  background: rgba(56, 251, 219, 0.25);
}

/* Hero-Grid 2-spaltig */
.op-hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4rem;
  align-items: center;
  /* KEIN eigenes Padding — .container hat schon eines */
}
@media (max-width: 980px) {
  .op-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* TEST: Daten-Karten ausblenden, Hero-Text als reiner Block (kein Grid) */
.op-hero-cards { display: none !important; }
.op-hero-grid {
  display: block !important;
  padding: 0 !important;
}
.op-hero-text {
  max-width: 820px;
  text-align: left !important;
  margin: 0 !important;
}
.op-hero-text .op-h1 { text-align: left !important; }
.op-hero-text .op-lead { text-align: left !important; }
.op-hero-text .op-btn-group { justify-content: flex-start !important; }

/* Eyebrow */
.op-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.op-eyebrow-line { width: 32px; height: 1px; background: #38FBDB; }
.op-eyebrow-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #38FBDB;
  font-weight: 700;
}

/* Multi-Line Headline */
.op-h1 {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: clamp(2.6rem, 7vw, 5.5rem) !important;
  font-weight: 900 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 2rem !important;
  text-transform: uppercase;
  max-width: none !important;
}
.op-h1-line { display: block; }
.op-h1-white { color: #FFFFFF; }
.op-h1-cyan {
  color: #38FBDB;
  text-shadow: 0 0 24px rgba(56, 251, 219, 0.45);
}
.op-h1-muted {
  color: rgba(132, 148, 143, 0.45);
}

/* Lead mit Cyan-Border-Akzent */
.op-lead {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 540px;
  margin: 0 0 0 !important;
  border-left: 2px solid rgba(56, 251, 219, 0.4);
  padding: 0.8rem 1rem 0.8rem 1.1rem;
  background: rgba(13, 18, 25, 0.5);
  backdrop-filter: blur(4px);
}

/* Buttons / Aufteilung */
.op-btn-group {
  margin-top: 2rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.op-btn {
  border-radius: 0 !important;
  padding: 1rem 1.6rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.7rem !important;
}
.op-arrow { font-size: 1rem; }
.op-eye { font-size: 0.7rem; }

/* Daten-Karten rechts */
.op-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.op-card {
  position: relative;
  background: rgba(8, 12, 18, 0.78);
  border: 1px solid rgba(56, 251, 219, 0.32);
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 18px rgba(56, 251, 219, 0.12);
}
.op-card-stream { border-color: #38FBDB; box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 22px rgba(56, 251, 219, 0.22); }

.op-bracket {
  position: absolute;
  width: 8px; height: 8px;
  border-color: #38FBDB; border-style: solid; border-width: 0;
}
.op-bracket-tl { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.op-bracket-tr { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.op-bracket-bl { bottom: -1px; left: -1px; border-bottom-width: 1px; border-left-width: 1px; }
.op-bracket-br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

.op-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(56, 251, 219, 0.18);
}
.op-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.op-card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #38FBDB;
  box-shadow: 0 0 8px #38FBDB;
  animation: op-pulse 1.6s infinite ease-in-out;
}
@keyframes op-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.op-metric { margin-bottom: 0.85rem; }
.op-metric:last-child { margin-bottom: 0; }
.op-metric-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.op-metric-row strong {
  color: #38FBDB;
  font-weight: 700;
}
.op-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.op-bar-fill {
  height: 100%;
  background: #38FBDB;
  box-shadow: 0 0 6px rgba(56, 251, 219, 0.6);
}
.op-segments {
  display: flex;
  gap: 3px;
  height: 4px;
}
.op-seg {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
}
.op-seg.on {
  background: #38FBDB;
  box-shadow: 0 0 5px rgba(56, 251, 219, 0.55);
}

/* Stream-Chart */
.op-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(56, 251, 219, 0.32);
}
.op-chart-bar {
  flex: 1;
  background: rgba(56, 251, 219, 0.55);
  display: block;
}
.op-chart-bar-peak {
  background: #38FBDB;
  box-shadow: 0 0 10px #38FBDB;
}
.op-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}
