/* ============================================================
   SAFE AGENTS – styles.css
   Design inspired by Adobe.com layout quality
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors – Schwarz/Weiß + Grün (Logo-Augen/Haken) + Rot (Logo-Kreuze) */
  --color-primary:       #0a0a0a;
  --color-primary-dark:  #000000;
  --color-accent:        #16a34a;   /* Grün – Roboter-Augen, Checklisten-Haken */
  --color-accent-dark:   #15803d;   /* Dunkelgrün – Hover */
  --color-accent-light:  #bbf7d0;   /* Hellgrün */
  --color-red:           #ef4444;   /* Rot – Checklisten-Kreuze, Problem-Sektion */
  --color-red-dark:      #dc2626;   /* Dunkelrot – Hover */

  /* Backgrounds */
  --color-bg-dark:       #0a0a0a;
  --color-bg-primary:    #111111;
  --color-bg-white:      #ffffff;
  --color-bg-light:      #f5f5f5;
  --color-bg-card:       #ffffff;

  /* Text */
  --color-text:          #111111;
  --color-text-muted:    #6b7280;
  --color-text-white:    #ffffff;
  --color-text-white-muted: rgba(255, 255, 255, 0.72);

  /* Borders */
  --color-border:        #e5e5e5;
  --color-border-dark:   rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-size-xs:   11px;
  --font-size-sm:   13px;
  --font-size-base: 16px;
  --font-size-md:   18px;
  --font-size-lg:   22px;
  --font-size-xl:   28px;
  --font-size-2xl:  36px;
  --font-size-3xl:  48px;

  /* Spacing */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;

  /* Layout */
  --nav-height:    136px;
  --banner-height: 40px;
  --max-width:     1280px;
  --content-pad:   40px;

  /* Misc */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 100px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
  --transition:  180ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.announcement-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  height: var(--banner-height);
  background-color: var(--color-primary-dark);
  padding: 0 var(--content-pad);
}

.announcement-text {
  color: var(--color-text-white-muted);
  font-size: var(--font-size-sm);
  font-weight: 400;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: color var(--transition);
}

.announcement-link:hover { color: var(--color-accent-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  gap: var(--sp-xl);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.3px;
}

/* Bild-Logo Navigation */
.nav-logo-img {
  height: 128px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Bild-Logo Footer */
.footer-logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--sp-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-item > a:hover { color: var(--color-accent); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-left: auto;
  flex-shrink: 0;
}

.nav-login {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-login:hover { color: var(--color-text); }

/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  height: 42px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background-color var(--transition),
              border-color var(--transition),
              color var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  border: 2px solid var(--color-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline-dark:hover {
  border-color: var(--color-text);
  background-color: rgba(0,0,0,0.04);
}

.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: var(--font-size-base);
  border-radius: var(--radius-md);
}

.btn-sm {
  height: 34px;
  padding: 0 16px;
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

/* Subtle gradient overlay so text stays readable over blobs */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, transparent 30%, rgba(15,31,48,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative Blobs */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
}

.blob-1 {
  width: 500px;
  height: 380px;
  background: radial-gradient(circle, #16a34a 0%, #15803d 50%, transparent 80%);
  left: -120px;
  top: -20px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  transform: rotate(-15deg);
  filter: blur(50px);
  opacity: 0.35;
}

.blob-2 {
  width: 320px;
  height: 280px;
  background: radial-gradient(circle, rgba(200,200,200,0.5) 0%, rgba(150,150,150,0.2) 55%, transparent 80%);
  left: 220px;
  top: 40px;
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  transform: rotate(10deg);
  filter: blur(55px);
  opacity: 0.25;
}

.blob-3 {
  width: 440px;
  height: 320px;
  background: radial-gradient(circle, #22c55e 0%, #16a34a 50%, transparent 80%);
  right: 60px;
  top: -30px;
  border-radius: 70% 30% 40% 60% / 40% 70% 30% 60%;
  transform: rotate(20deg);
  filter: blur(52px);
  opacity: 0.3;
}

.blob-4 {
  width: 360px;
  height: 260px;
  background: radial-gradient(circle, rgba(180,180,180,0.4) 0%, rgba(100,100,100,0.2) 55%, transparent 80%);
  right: -80px;
  top: 80px;
  border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
  transform: rotate(-8deg);
  filter: blur(45px);
  opacity: 0.2;
}

.blob-5 {
  width: 700px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.12) 0%, transparent 70%);
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  opacity: 0.8;
}

/* Hero Spotlight SVG */
.hero-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 138%;
  height: 169%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: spotlight-fade 1.5s ease 0.3s forwards;
}
@keyframes spotlight-fade {
  to { opacity: 1; }
}

/* Hero Split Layout */
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  gap: 48px;
}

/* Hero Content (left column) */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--sp-lg);
  flex: 1;
  max-width: 560px;
}

/* CSS-Roboter-Container (rechte Spalte im Hero) */
.hero-3d {
  flex: 1;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#robot-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background-color: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-headline {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-headline span {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-white-muted);
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-legal {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   TRUST STATS BAR
   ============================================================ */
.trust-bar {
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-xl) var(--content-pad);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 var(--sp-3xl);
  flex: 1;
  text-align: center;
}

.trust-stat__number {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1px;
  line-height: 1;
}

.trust-stat__label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-sm);
}

.section-label--muted {
  color: var(--color-text-muted);
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 560px;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-3xl);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background-color: var(--color-bg-light);
  padding: var(--sp-4xl) var(--content-pad);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.problem-icon {
  font-size: 32px;
  line-height: 1;
}

.problem-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.problem-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.problem-card .problem-stat {
  display: inline-block;
  font-size: 52px;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
  letter-spacing: -1.5px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background-color: var(--color-bg-white);
  padding: var(--sp-4xl) var(--content-pad);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background-color: var(--color-bg-white);
  padding: var(--sp-2xl) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: background-color var(--transition);
  border-top: 3px solid transparent;
}

.feature-card:hover {
  background-color: #fafafa;
  border-top-color: var(--color-accent);
}

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: var(--radius-md);
  font-size: var(--font-size-md);
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.feature-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
}

/* Feature Mockup (visual placeholder) */
.feature-visual {
  margin-top: var(--sp-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, #f8fafc 0%, #f0f4f8 100%);
  border: 1px solid var(--color-border);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mock UI header row with icon + title */
.feature-visual::before {
  content: '';
  display: block;
  height: 12px;
  width: 45%;
  background: linear-gradient(90deg, #1a3a5c 0%, #2d5a8e 100%);
  border-radius: 6px;
  opacity: 0.7;
}

.feature-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mock-row {
  height: 9px;
  border-radius: 5px;
  background: linear-gradient(90deg, #cbd5e1 0%, #e2e8f0 100%);
}

.mock-row--short { width: 55%; }
.mock-row--medium { width: 78%; }
.mock-row--long { width: 93%; }
.mock-row--accent {
  background: linear-gradient(90deg, var(--color-accent) 0%, #fb923c 100%);
  width: 38%;
  opacity: 0.85;
}

/* Mock table-like row */
.mock-table-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mock-cell {
  height: 9px;
  border-radius: 4px;
  background: #e2e8f0;
}

.mock-cell--sm { width: 20%; }
.mock-cell--md { width: 35%; }
.mock-cell--accent {
  background: rgba(249, 115, 22, 0.25);
  width: 15%;
}

/* ============================================================
   LEAD MAGNET SECTION (Hormozi)
   ============================================================ */
.lead-magnet-section {
  background-color: var(--color-bg-primary);
  padding: var(--sp-4xl) var(--content-pad);
  position: relative;
  overflow: hidden;
}

.lead-magnet-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lead-magnet-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lead-magnet-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xl);
}

.lead-magnet-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background-color: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lead-magnet-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.lead-magnet-title span {
  color: var(--color-accent);
}

.lead-magnet-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-white-muted);
  line-height: 1.65;
}

/* Value Stack Checklist */
.value-stack {
  display: flex;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.value-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(249,115,22,0.25);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 12px;
  flex-shrink: 0;
}

/* Email Form */
.lead-form {
  display: flex;
  gap: var(--sp-sm);
  width: 100%;
  max-width: 500px;
}

.lead-form-input {
  flex: 1;
  height: 52px;
  padding: 0 var(--sp-md);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background-color: rgba(255,255,255,0.1);
  color: var(--color-text-white);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: border-color var(--transition), background-color var(--transition);
  outline: none;
}

.lead-form-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.lead-form-input:focus {
  border-color: var(--color-accent);
  background-color: rgba(255,255,255,0.15);
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.55);
}

.social-proof-avatars {
  display: flex;
}

.avatar-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  margin-left: -8px;
}

.avatar-bubble:first-child { margin-left: 0; }
.avatar-bubble--1 { background-color: #0284c7; }
.avatar-bubble--2 { background-color: #059669; }
.avatar-bubble--3 { background-color: #7c3aed; }
.avatar-bubble--4 { background-color: #dc2626; }
.avatar-bubble--5 { background-color: #d97706; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background-color: var(--color-bg-white);
  padding: var(--sp-4xl) var(--content-pad);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background-color: var(--color-bg-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--color-accent);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(22, 163, 74, 0.18);
  transform: translateY(-6px);
}

.pricing-card--featured:hover {
  transform: translateY(-9px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tier {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-currency {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  align-self: flex-start;
  padding-top: 8px;
}

.pricing-period {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(249,115,22,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-accent);
  margin-top: 1px;
}

.pricing-divider {
  height: 1px;
  background-color: var(--color-border);
}

/* ============================================================
   FOUNDERS SECTION
   ============================================================ */
.founders-section {
  background-color: var(--color-bg-light);
  padding: var(--sp-4xl) var(--content-pad);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  transition: box-shadow var(--transition);
}

.founder-card:hover {
  box-shadow: var(--shadow-hover);
}

.founder-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
  margin-bottom: var(--sp-md);
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.founder-avatar.founder-photo {
  width: 180px;
  height: 220px;
  border-radius: 12px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.founder-photo {
  object-fit: cover;
  object-position: center top;
  width: 180px;
  height: 220px;
  border-radius: 12px;
  border: none;
}

.founder-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.founder-role {
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 2px;
}

.founder-bio {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
}

.founder-companies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  align-items: center;
}

.company-tag {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background-color: var(--color-bg-light);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-bg-primary);
  padding-top: var(--sp-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-pad) var(--sp-3xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.footer-logo-text {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: #ffffff;
}

.footer-brand-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-white-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--sp-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--color-text-white-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--sp-md) var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   DISPLAY CARDS (Features-Sektion)
   ============================================================ */
.display-cards-grid {
  display: grid;
  grid-template-areas: 'stack';
  place-items: center;
  padding: var(--sp-3xl) 0 240px;
  min-height: 580px;
  animation: fade-in-up 0.7s ease both;
  /* Visuelles Zentrum der gestapelten Karten ausgleichen */
  transform: translateX(-64px);
}

.display-card {
  grid-area: stack;
  position: relative;
  width: 32rem;
  min-height: 11rem;
  height: auto;
  transform: skewY(-8deg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.7s ease, filter 0.7s ease, border-color 0.3s;
  cursor: default;
  box-sizing: border-box;
}

/* Gradient-Fade rechts (fades into section background) */
.display-card::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -5%;
  height: 110%;
  width: 10rem;
  background: linear-gradient(to left, var(--color-bg-light), transparent);
  border-radius: 0 12px 12px 0;
  pointer-events: none;
  z-index: 1;
}

.display-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

/* Card 1 – Schritt 1 (hinten) */
.display-card--back {
  filter: grayscale(40%);
  opacity: 0.85;
}
.display-card--back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  transition: opacity 0.7s;
  z-index: 2;
  pointer-events: none;
}
.display-card--back:hover {
  transform: skewY(-8deg) translateY(-60px);
  filter: grayscale(0%);
  opacity: 1;
}
.display-card--back:hover::before {
  opacity: 0;
}

/* Card 2 – Schritt 2 (mitte) */
.display-card--mid {
  transform: skewY(-8deg) translateX(64px) translateY(60px);
  filter: grayscale(20%);
  opacity: 0.92;
}
.display-card--mid::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: opacity 0.7s;
  z-index: 2;
  pointer-events: none;
}
.display-card--mid:hover {
  transform: skewY(-8deg) translateX(64px) translateY(-40px);
  filter: grayscale(0%);
  opacity: 1;
}
.display-card--mid:hover::before {
  opacity: 0;
}

/* Card 3 – Schritt 3 (vorne, immer sichtbar) */
.display-card--front {
  transform: skewY(-8deg) translateX(128px) translateY(120px);
}
.display-card--front:hover {
  transform: skewY(-8deg) translateX(128px) translateY(60px);
}

/* Card-Inhalte */
.display-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.display-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.display-card-icon svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
}
.display-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
  white-space: normal;
  line-height: 1.3;
  position: relative;
  z-index: 3;
}
.display-card-desc {
  font-size: 15px;
  color: var(--color-text);
  margin: 0;
  white-space: normal;
  line-height: 1.5;
  position: relative;
  z-index: 3;
}
.display-card-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0;
  position: relative;
  z-index: 3;
}

/* ============================================================
   HAMBURGER NAVIGATION (Mobile)
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Panel (inside sticky header) */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--sp-md);
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-md) var(--content-pad);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-nav--open {
  display: flex;
}

.mobile-nav-links li a {
  display: block;
  padding: 13px 0;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.mobile-nav-links li:last-child a {
  border-bottom: none;
}

.mobile-nav-links li a:hover {
  color: var(--color-accent);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 900px) {
  /* Hero: Stack vertikal */
  .hero-split {
    flex-direction: column;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 24px;
    gap: 32px;
  }
  .hero-content {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-3d {
    width: 100%;
    min-height: 300px;
  }
  .hero-3d spline-viewer {
    min-height: 300px;
  }
  .hero-headline {
    font-size: var(--font-size-2xl);
  }

  /* DisplayCards: vertical stack on mobile */
  .display-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-bottom: 40px;
  }
  .display-card,
  .display-card--back,
  .display-card--mid,
  .display-card--front {
    transform: none !important;
    filter: none !important;
    width: min(32rem, 92vw);
    height: auto;
    min-height: 9rem;
  }
  .display-card::before,
  .display-card::after {
    display: none;
  }

  /* ---- Reduce content padding & nav height ---- */
  :root {
    --content-pad: 20px;
    --nav-height: 110px;
  }

  /* ---- Logo: etwas kleiner auf Tablet ---- */
  .nav-logo-img { height: 102px; }

  /* ---- Hero GHS card: never overflow on mobile ---- */
  .hero-ghs-card { max-width: 100%; }

  /* ---- Pricing grid: centered and constrained ---- */
  .pricing-grid { max-width: 480px; margin-left: auto; margin-right: auto; }

  /* ---- Fix: reset display-cards-grid horizontal offset ---- */
  .display-cards-grid { transform: none; }

  /* ---- Nav: hide desktop links, show hamburger ---- */
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  /* ---- Trust bar: 2×2 grid ---- */
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-stat {
    flex: 0 0 50%;
    padding: var(--sp-lg) var(--sp-md);
  }

  /* ---- Problem: 1 column ---- */
  .problem-grid { grid-template-columns: 1fr; }

  /* ---- Features grid ---- */
  .features-grid { grid-template-columns: 1fr; }

  /* ---- Pricing: 1 column ---- */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }

  /* ---- Founders: 1 column ---- */
  .founders-grid { grid-template-columns: 1fr; }

  /* ---- Footer: 2 columns ---- */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* ---- Lead form: vertical stack ---- */
  .lead-form { flex-direction: column; align-items: stretch; }
  .lead-form .btn { width: 100%; justify-content: center; }

  /* ---- Robot: scale down so it fits below hero text ---- */
  #robot-container {
    zoom: 0.75;
    min-height: 0;
  }
  .hero-3d { min-height: auto; }
}

/* ============================================================
   HERO GHS-KARTE (Gefahrstoffverzeichnis Mockup)
   ============================================================ */
.hero-ghs-card {
  margin-top: var(--sp-lg);
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  animation: fade-in-up 0.8s ease 0.4s both;
}

/* Header-Zeile */
.hero-ghs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}
.hero-ghs-header svg {
  color: var(--color-accent);
  flex-shrink: 0;
}
.hero-ghs-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
}
.hero-ghs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Zeilen-Container */
.hero-ghs-rows {
  padding: 6px 0;
}

/* Einzelne Zeile */
.hero-ghs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  transition: background 0.2s;
}
.hero-ghs-row:hover {
  background: rgba(255, 255, 255, 0.05);
}
.hero-ghs-row--alert {
  background: rgba(239, 68, 68, 0.06);
}
.hero-ghs-row--alert:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* GHS-Diamant-Icon */
.hero-ghs-diamond {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-ghs-diamond svg {
  transform: rotate(-45deg);
}
.hero-ghs-diamond--fire  { background: #dc2626; }
.hero-ghs-diamond--skull { background: #7c3aed; }
.hero-ghs-diamond--warn  { background: #d97706; }

/* Echte GHS-Piktogramm-Bilder (ersetzt CSS-Diamanten) */
.hero-ghs-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

/* Text-Felder */
.hero-ghs-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  min-width: 80px;
}
.hero-ghs-cas {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Courier New', monospace;
  flex: 1;
}
.hero-ghs-ok {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 20px;
  padding: 1px 8px;
}
.hero-ghs-update {
  font-size: 11px;
  font-weight: 600;
  color: #f97316;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 20px;
  padding: 1px 8px;
  white-space: nowrap;
}

/* Footer */
.hero-ghs-footer {
  padding: 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

/* ============================================================
   RESPONSIVE – 600px (Smartphones)
   ============================================================ */
@media (max-width: 600px) {
  :root { --content-pad: 16px; }

  /* Logo & Nav auf kleinen Handys — groß genug für lesbaren Text */
  :root { --nav-height: 100px; }
  .nav-logo-img { height: 92px; }

  /* Announcement banner: wrap to 2 lines */
  .announcement-banner {
    flex-direction: column;
    height: auto;
    padding: 8px var(--content-pad);
    gap: 4px;
    text-align: center;
  }

  /* Hero: smaller headline */
  .hero-headline { font-size: clamp(26px, 7vw, 32px); }

  /* Robot: scale down further on small screens */
  #robot-container { zoom: 0.6; }

  /* Trust bar: stay 2-col (already set at 900px) */

  /* Section titles */
  .section-title { font-size: var(--font-size-xl); }

  /* Demo section: hide Export button, stack toolbar */
  .demo-toolbar { flex-wrap: wrap; }
  .demo-toolbar-actions .demo-btn:first-child { display: none; }

  /* Footer: single column */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Footer bottom: stack */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   RESPONSIVE – 400px (Small phones)
   ============================================================ */
@media (max-width: 400px) {
  /* Trust bar: single column */
  .trust-stat { flex: 0 0 100%; }

  /* Hero CTAs: stack vertically */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { justify-content: center; }

  /* Pricing amount: slightly smaller */
  .pricing-amount { font-size: 36px; }
}

/* ============================================================
   DEMO SECTION (Gefahrstoffverzeichnis Live-Demo)
   ============================================================ */
.demo-section {
  background-color: var(--color-bg-dark);
  padding: var(--sp-4xl) var(--content-pad);
  color: var(--color-text-white);
}

.demo-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2xl);
}

.demo-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #4ade80;
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.demo-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

.demo-subtitle {
  color: var(--color-text-white-muted);
  font-size: var(--font-size-lg);
  max-width: 560px;
  text-align: center;
}

.demo-section .section-title {
  color: var(--color-text-white);
}

.demo-section .section-title span {
  color: #4ade80;
}

/* App frame */
.demo-frame {
  width: 100%;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

/* Browser chrome */
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background-color: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-chrome-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dot--red    { background-color: #ef4444; }
.demo-dot--yellow { background-color: #f59e0b; }
.demo-dot--green  { background-color: #22c55e; }

.demo-chrome-url {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

/* Toolbar */
.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #161616;
  flex-wrap: wrap;
}

.demo-search {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
}

.demo-search svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.30);
}

.demo-toolbar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.demo-btn {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  cursor: default;
  white-space: nowrap;
}

.demo-btn--primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
}

/* Table */
.demo-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.demo-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 13px;
}

.demo-table th {
  padding: 9px 12px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.demo-table td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.80);
  vertical-align: middle;
}

.demo-table tr:last-child td {
  border-bottom: none;
}

.demo-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.025);
}

.demo-row--warn td {
  background-color: rgba(245, 158, 11, 0.04);
}

.demo-row--warn:hover td {
  background-color: rgba(245, 158, 11, 0.07);
}

.demo-num {
  color: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  text-align: center;
  min-width: 28px;
}

.demo-name {
  font-weight: 500;
  color: #ffffff;
  min-width: 160px;
}

.demo-cas {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  white-space: nowrap;
}

.demo-h {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.50);
  max-width: 170px;
  line-height: 1.5;
}

/* Signal word badges */
.demo-signal {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.demo-signal--gefahr {
  background-color: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.demo-signal--achtung {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.demo-signal--none {
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* GHS badges */
.demo-ghs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 60px;
}

.ghs-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.ghs-badge--02 { background-color: rgba(239, 68, 68, 0.18);  color: #fca5a5; }
.ghs-badge--05 { background-color: rgba(249, 115, 22, 0.18); color: #fdba74; }
.ghs-badge--06 { background-color: rgba(168, 85, 247, 0.18); color: #d8b4fe; }
.ghs-badge--07 { background-color: rgba(234, 179, 8, 0.18);  color: #fde047; }

.demo-ghs--none {
  color: rgba(255, 255, 255, 0.22);
  font-size: 12px;
}

.demo-hersteller {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
}

/* Status badges */
.demo-status-ok,
.demo-status-warn,
.demo-status-err {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.demo-status-ok   { color: #4ade80; }
.demo-status-warn { color: #fbbf24; }
.demo-status-err  { color: #f87171; }

/* Status bar */
.demo-statusbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.015);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  flex-wrap: wrap;
}

.demo-live-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
}

.demo-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Footnote + CTA */
.demo-footnote {
  text-align: center;
  color: var(--color-text-white-muted);
  font-size: var(--font-size-sm);
  margin-bottom: calc(-1 * var(--sp-md));
}

/* ============================================================
   RESPONSIVE – 480px (Very small phones, hide robot for clean hero)
   ============================================================ */
@media (max-width: 480px) {
  /* Hide decorative robot on very small screens to keep hero compact */
  .hero-3d { display: none; }

  /* Let hero content take full width */
  .hero-split { padding-top: 48px; }

  /* GHS card rows: smaller text to prevent overflow */
  .hero-ghs-name { font-size: 12px; min-width: 68px; }
  .hero-ghs-cas  { font-size: 10px; }
}
