/* =============================================================================
   NIS2 Pilot — Corporate Design System
   Version: 1.1 | March 2026
   ============================================================================= */

/* --- Z-Index Registry ---
   1000: (reserved for modals)
    999: #scroll-progress
    100: .site-header
     99: .mobile-menu
     95: .section-nav
     90: .sticky-mobile-cta
     10: Tailwind z-10 utility
      1: .netzwerk-progress-line
      0: .netzwerk-steps::before
   --- */

/* --- Self-hosted Inter Font (DSGVO-compliant) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Design Tokens (Dark Default) --- */
:root {
  --bg-body: #0F172A;
  --bg-surface: #1E293B;
  --bg-surface-elevated: #334155;
  --bg-card: rgba(30, 41, 59, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --color-primary: #1E3A5F;
  --color-accent: #10B981;
  --color-accent-rgb: 16, 185, 129;
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;
  --color-info: #0EA5E9;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: rgba(148, 163, 184, 0.75);
  --border-default: rgba(148, 163, 184, 0.12);
  --border-hover: rgba(148, 163, 184, 0.25);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
  --max-width: 1200px;
  --max-width-narrow: 720px;
  --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, #0F172A 100%);
  --gradient-accent: linear-gradient(135deg, #047857 0%, #0A6B5E 100%);
}

/* --- Light Theme --- */
[data-theme="light"] {
  --bg-body: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-surface-elevated: #F1F5F9;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-glass: rgba(0, 0, 0, 0.02);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: rgba(71, 85, 105, 0.75);
  --border-default: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.15);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --color-accent: #047857;
  --color-accent-rgb: 4, 120, 87;
  --color-info: #0369a1;
  --color-warning: #B45309;
}

/* --- CSS Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg-body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); margin-bottom: 1rem; }

/* --- Force white text inside always-dark sections (both themes) --- */
.gradient-bg h1, .gradient-bg h2, .gradient-bg h3, .gradient-bg h4,
.gradient-bg p, .gradient-bg span, .gradient-bg li,
.gradient-bg .text-heading { color: #FFFFFF; }
.gradient-bg .text-body, .gradient-bg .text-subtle { color: rgba(209, 213, 219, 0.85); }
/* Restore dark text for buttons with white/light backgrounds inside gradient sections */
.gradient-bg .bg-white,
.gradient-bg .bg-white div,
.gradient-bg .bg-white span,
.gradient-bg .bg-white p,
.gradient-bg .bg-white.text-heading,
.gradient-bg .bg-white .text-heading { color: #0F172A; }
.gradient-bg .bg-white svg { color: #0F172A; fill: #0F172A; }
.gradient-bg .bg-white .text-xs,
.gradient-bg .bg-white .text-subtle { color: #6B7280; }
.gradient-bg .bg-white .text-body { color: #374151; }

/* --- Layout --- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing { padding: 80px 0; }
.section-spacing-sm { padding: 48px 0; }

/* --- Site Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-default);
  backdrop-filter: blur(12px);
  transition: background var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.125rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 24px;
}

.logo-link img {
  width: 32px;
  height: 32px;
}

/* Logo switching for themes */
.logo-dark { display: block; }
.logo-light { display: none; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="light"] .logo-light { display: block; }

.logo-text-label {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* --- Navigation --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1100px) {
  .nav-links { gap: 28px; }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.nav-accent {
  color: var(--color-accent);
}

/* --- Theme Toggle --- */
.theme-toggle {
  background: var(--bg-surface);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--color-accent);
  background: rgba(var(--color-accent-rgb),0.1);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline-flex; align-items: center; gap: 6px; }
[data-theme="light"] .theme-toggle .icon-sun { display: inline-flex; align-items: center; gap: 6px; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.theme-toggle svg { vertical-align: middle; }

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.25rem;
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.mobile-menu a.btn-primary {
  color: #FFFFFF;
}

.mobile-menu .theme-toggle {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(var(--color-accent-rgb),0.4);
}

.btn-primary:hover { box-shadow: 0 6px 20px rgba(var(--color-accent-rgb),0.5); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: var(--bg-glass);
}

.btn-sm { padding: 8px 16px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.card-flat { background: var(--bg-surface); }
.card-glass { backdrop-filter: blur(20px); }

/* --- Highlight Boxes --- */
.highlight-box {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
}

.highlight-box--success {
  background: rgba(var(--color-accent-rgb),0.1);
  border: 1px solid rgba(var(--color-accent-rgb),0.2);
}

.highlight-box--warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.highlight-box--danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.highlight-box--info {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* --- App Store Buttons --- */
.app-store-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}

.app-store-link:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* --- Site Footer --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-default);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Minimal Footer (Legal Pages) --- */
.footer-minimal {
  padding: 24px 32px;
  border-top: 1px solid var(--border-default);
}

.footer-minimal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.8125rem;
}

.footer-minimal-content a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-minimal-content a:hover { color: var(--text-primary); }

/* --- Legal Page Styles --- */
.legal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-default);
}

.legal-header-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-header .logo-link { font-size: 1.125rem; }

.back-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.back-link:hover { color: var(--text-primary); }

.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 48px 24px;
  flex: 1;
}

.legal-content h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.legal-ref,
.version-info {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-section { margin-bottom: 32px; }

.legal-section h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.legal-section h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 8px;
}

.section-title-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}

.legal-section li { margin-bottom: 6px; }

.legal-section a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-default);
  transition: border-color var(--transition);
}

.legal-section a:hover { border-color: var(--text-primary); }

.legal-section strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* --- Countdown --- */
.countdown-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.countdown-icon {
  width: 18px;
  height: 18px;
  color: var(--color-warning);
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-warning);
}

.countdown-date {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: center;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.countdown-item {
  min-width: 72px;
  text-align: center;
}

.countdown-number {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-unit {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for cards in grids */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Netzwerk step stagger */
.netzwerk-step:nth-child(2) { transition-delay: 0.15s; }
.netzwerk-step:nth-child(3) { transition-delay: 0.3s; }
.netzwerk-step:nth-child(4) { transition-delay: 0.45s; }

/* Pricing featured card glow */
.pricing-featured {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pricing-featured:hover {
  box-shadow: 0 0 30px rgba(var(--color-accent-rgb),0.25), 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-warning { color: var(--color-warning); }
.text-danger { color: var(--color-danger); }
.text-info { color: var(--color-info); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: #fff; }
.bg-gray-100 { background: #F3F4F6; }
.hover\:bg-gray-100:hover { background: #F3F4F6; }
[data-theme="light"] .bg-gray-100 { background: #E5E7EB; }

.bg-body { background: var(--bg-body); }
.bg-surface { background: var(--bg-surface); }

/* Theme-aware badge/card backgrounds (replace hardcoded Tailwind -50 colors) */
.badge-green { background: rgba(var(--color-accent-rgb),0.12); color: var(--color-accent); }
.badge-sky { background: rgba(14, 165, 233, 0.12); color: var(--color-info); }
.badge-blue { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
.badge-purple { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
.card-theme { background: var(--bg-card); border: 1px solid var(--border-default); }
.row-highlight { background: rgba(var(--color-accent-rgb),0.08); }
[data-theme="light"] .badge-green { background: #f0fdf4; color: #059669; }
[data-theme="light"] .badge-sky { background: #f0f9ff; color: #0284c7; }
[data-theme="light"] .badge-blue { background: #eff6ff; color: #2563eb; }
[data-theme="light"] .badge-purple { background: #faf5ff; color: #7c3aed; }
[data-theme="light"] .row-highlight { background: linear-gradient(to right, #f0fdf4, #ecfdf5); }
.color-gold { color: #D4A843; }
.bg-gold { background: #D4A843; }
.bg-gold-light { background: rgba(212,168,67,0.1); }
.badge-gold-pill { color: #D4A843; background: rgba(212,168,67,0.12); }
[data-theme="light"] .badge-gold, [data-theme="light"] [class*="gold"] { color: #92780B; }
[data-theme="light"] .bg-gold { background: #92780B; }
[data-theme="light"] .bg-gold-light { background: rgba(146,120,11,0.08); }
[data-theme="light"] .badge-gold-pill { color: #92780B; background: rgba(146,120,11,0.1); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* --- Sector Page Utilities --- */
.bg-card-section { background: var(--bg-card); }
.cta-screenshots { display: flex; justify-content: center; gap: 20px; margin-bottom: 32px; }
.screenshot-frame-sm { width: 100px; }
.icon-inline { display: inline; vertical-align: middle; margin-right: 8px; }

/* --- Sector Accent Overrides --- */
[data-sector="energie"] { --color-sector: #F59E0B; --color-sector-bg: rgba(245,158,11,0.1); --color-sector-dark: #D97706; --color-sector-light: #FBBF24; }
[data-sector="finanz"] { --color-sector: #10B981; --color-sector-bg: rgba(var(--color-accent-rgb),0.1); --color-sector-dark: #059669; --color-sector-light: #34D399; }
[data-sector="gesundheit"] { --color-sector: #EF4444; --color-sector-bg: rgba(239,68,68,0.1); --color-sector-dark: #DC2626; --color-sector-light: #F87171; }
[data-sector="it"] { --color-sector: #0EA5E9; --color-sector-bg: rgba(14,165,233,0.1); --color-sector-dark: #0284C7; --color-sector-light: #38BDF8; }
[data-sector="oeffentlich"] { --color-sector: #8B5CF6; --color-sector-bg: rgba(139,92,246,0.1); --color-sector-dark: #7C3AED; --color-sector-light: #A78BFA; }
[data-sector="produktion"] { --color-sector: #F97316; --color-sector-bg: rgba(249,115,22,0.1); --color-sector-dark: #EA580C; --color-sector-light: #FB923C; }
[data-sector="transport"] { --color-sector: #06B6D4; --color-sector-bg: rgba(6,182,212,0.1); --color-sector-dark: #0891B2; --color-sector-light: #22D3EE; }
[data-sector="wasser"] { --color-sector: #3B82F6; --color-sector-bg: rgba(59,130,246,0.1); --color-sector-dark: #2563EB; --color-sector-light: #60A5FA; }

/* Sector-specific component overrides using CSS variables */
[data-sector] .sector-badge { background: var(--color-sector-bg); border-color: var(--color-sector); color: var(--color-sector); }
[data-sector] .hero h1 span { background: linear-gradient(135deg, var(--color-sector) 0%, var(--color-sector-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-sector] .card-icon { background: var(--color-sector-bg); }
[data-sector] .card-icon svg, [data-sector] .asset-item svg, [data-sector] .sector-link svg { color: var(--color-sector); }
[data-sector] .card:hover, [data-sector] .sector-link:hover { border-color: var(--color-sector); }
[data-sector] .sector-link:hover { background: var(--color-sector-bg); }
[data-sector] .measure-number { background: var(--color-sector); }
[data-sector] .cta-section { background: linear-gradient(135deg, var(--color-sector-bg) 0%, rgba(var(--color-accent-rgb),0.1) 100%); }
.warning-banner { display: flex; gap: 16px; padding: 20px 24px; border-radius: var(--radius-lg); background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.3); margin-bottom: 32px; }
.warning-banner .warning-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.4; }
.warning-banner .warning-content h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.warning-banner .warning-content p { margin: 0; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-size: 1rem; font-weight: 600; cursor: pointer; border: none; color: #fff; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition); }
.secondary-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-size: 1rem; font-weight: 600; cursor: pointer; background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); text-decoration: none; transition: transform var(--transition), box-shadow var(--transition); }
[data-sector] .secondary-button:hover { border-color: var(--color-sector); }
[data-sector] .cta-button { background: linear-gradient(135deg, var(--color-sector) 0%, var(--color-sector-dark) 100%); }
[data-sector] .cta-button:hover { box-shadow: 0 0 30px var(--color-sector-bg); }
[data-sector] .btn-primary { background: linear-gradient(135deg, var(--color-sector) 0%, var(--color-sector-dark) 100%); }
[data-sector] .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px var(--color-sector-bg); }
[data-sector] .cta-section { border: 1px solid var(--color-sector); }

/* --- NIS2 Brand Utilities (features.html) --- */
.bg-nis2-primary { background-color: #1E3A5F; }
.bg-nis2-accent { background-color: #047857; }
.bg-nis2-sky { background-color: #3B82F6; }
.bg-nis2-danger { background-color: #EF4444; }
.bg-nis2-warning { background-color: #F59E0B; }
.text-nis2-primary { color: var(--color-accent); }
.text-nis2-danger { color: #EF4444; }
.border-nis2-accent { border-color: #047857; }
.border-nis2-primary { border-color: #1E3A5F; }
.bg-nis2-primary\/10 { background-color: rgba(30,58,95,0.1); }
.bg-nis2-accent\/10 { background-color: rgba(var(--color-accent-rgb),0.1); }
.bg-nis2-sky\/10 { background-color: rgba(59,130,246,0.1); }

/* --- Utility Classes (replace inline styles) --- */
.header-container { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.img-full { display: block; width: 100%; }
.screenshot-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); border: 2px solid var(--border-default); }
[data-theme="light"] .screenshot-frame { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.icon-check { margin-top: 2px; flex-shrink: 0; }
.icon-chevron { color: var(--text-muted); transition: transform 0.2s; }
.cell-center { padding: 16px; text-align: center; }
.flex-center-gap-5 { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.section-padding { padding: 24px 32px; }
.font-bold { font-weight: 700; }
.text-lg { font-size: 1.125rem; }
.gap-3 { gap: 12px; }
.gap-5 { gap: 20px; }
.gap-12 { gap: 48px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.error-code { font-size: clamp(3rem, 10vw, 5rem); font-weight: 800; margin-bottom: 16px; color: var(--color-accent); }
.site-footer .logo-link { margin-bottom: 12px; }

/* --- Print Styles --- */
@media print {
  .site-header,
  .site-footer,
  .footer-minimal,
  .mobile-menu,
  .mobile-menu-btn,
  .theme-toggle,
  .btn { display: none !important; }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .card {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }

  a { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

/* =============================================================================
   Sector Landing Pages — Layout & Components
   Used by sektor-*.html (8 pages)
   ============================================================================= */

/* --- Sector Hero --- */
.hero {
  padding: 80px 0 48px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero > .container > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* --- Sector Sections Spacing --- */
main > section {
  padding: 48px 0;
}

main > section:nth-child(even) {
  background: var(--bg-surface);
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* --- Card Icon (Emoji-based) --- */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid var(--border-default);
}

/* --- Measures List --- */
.measures-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.measure-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.measure-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.measure-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #fff;
}

.measure-content h4 {
  margin-bottom: 4px;
}

.measure-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- CTA Section (Sector Pages) --- */
.cta-section {
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 1rem;
}

/* --- Other Sectors Navigation --- */
.other-sectors {
  padding: 48px 0;
  border-top: 1px solid var(--border-default);
}

.other-sectors h2 {
  margin-bottom: 8px;
}

.other-sectors > .container > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.sector-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition);
}

.sector-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.sector-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Dual Badge (Finanz: NIS2+DORA, Wasser: Trink+Abwasser) --- */
.dual-badge { display: inline-flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.dual-badge .badge { padding: 8px 16px; border-radius: 100px; font-size: 0.875rem; font-weight: 600; }
.badge-nis2 { background: rgba(var(--color-accent-rgb),0.1); border: 1px solid var(--color-sector, #047857); color: var(--color-sector, #047857); }
.badge-dora { background: rgba(99,102,241,0.1); border: 1px solid var(--accent-secondary, #6366F1); color: var(--accent-secondary, #6366F1); }
.badge-trink { background: var(--color-sector-bg, rgba(59,130,246,0.1)); border: 1px solid var(--color-sector, #3B82F6); color: var(--color-sector, #3B82F6); }
.badge-abwasser { background: rgba(99,102,241,0.1); border: 1px solid #6366F1; color: #6366F1; }

/* --- Comparison Table (Finanz) --- */
.comparison-table { background: var(--bg-card, #111827); border: 1px solid var(--border-default); border-radius: 16px; overflow: hidden; margin: 40px 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th { background: rgba(255,255,255,0.05); padding: 16px; text-align: left; font-weight: 600; border-bottom: 1px solid var(--border-default); }
.comparison-table td { padding: 16px; border-bottom: 1px solid var(--border-default); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .highlight { color: var(--color-sector); font-weight: 600; }

/* --- Comparison Box + Grid (Produktion) --- */
.comparison-box { border-radius: 16px; padding: 32px; margin: 40px 0; }
.comparison-box h3 { font-size: 1.25rem; margin-bottom: 24px; text-align: center; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-column h4 { color: var(--color-sector); margin-bottom: 16px; font-size: 1.1rem; }
.comparison-column ul { list-style: none; }
.comparison-column li { padding: 8px 0; font-size: 0.9rem; }

/* --- Quick Wins (IT, Wasser) --- */
.quick-wins { border: 1px solid var(--color-sector); border-radius: 16px; padding: 32px; margin: 40px 0; }
.quick-wins h3 { font-size: 1.25rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.quick-wins ul { list-style: none; display: grid; gap: 12px; }
.quick-wins li { display: flex; align-items: center; gap: 12px; }
.quick-wins li::before { content: "\2713"; color: var(--color-sector); font-weight: bold; }

/* --- Level Grid (Oeffentlich) --- */
.level-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 24px 0; }
.level-badge { padding: 16px 24px; border-radius: 12px; text-align: center; }
.level-badge h4 { color: var(--color-sector); font-size: 0.9rem; margin-bottom: 4px; }

/* --- Stats Box (Oeffentlich) --- */
.stats-box { border: 1px solid var(--color-sector); border-radius: 16px; padding: 32px; margin: 40px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2rem; color: var(--color-sector); margin-bottom: 8px; }

/* --- Subsector Grid (Transport) --- */
.subsector-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 24px 0; }
.subsector-badge { padding: 12px 20px; border-radius: 100px; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

/* --- Sector Page Responsive --- */
@media (max-width: 768px) {
  .hero { padding: 60px 0 32px; }
  .hero h1 { font-size: 1.75rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 32px 20px; }
  main > section { padding: 32px 0; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
}

@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Enhanced Light Theme Contrast
   Forces readable text in dark-background sections
   ============================================================================= */

/* CTA sections with dark gradient backgrounds */
[data-theme="light"] .gradient-bg,
[data-theme="light"] .gradient-bg h1,
[data-theme="light"] .gradient-bg h2,
[data-theme="light"] .gradient-bg h3,
[data-theme="light"] .gradient-bg h4 { color: #FFFFFF; }

[data-theme="light"] .gradient-bg p,
[data-theme="light"] .gradient-bg span,
[data-theme="light"] .gradient-bg li { color: rgba(255, 255, 255, 0.85); }

/* Restore dark text for white buttons in gradient sections (light theme) */
[data-theme="light"] .gradient-bg .bg-white,
[data-theme="light"] .gradient-bg .bg-white div,
[data-theme="light"] .gradient-bg .bg-white span,
[data-theme="light"] .gradient-bg .bg-white p,
[data-theme="light"] .gradient-bg .bg-white.text-heading,
[data-theme="light"] .gradient-bg .bg-white .text-heading { color: #0F172A; }
[data-theme="light"] .gradient-bg .bg-white svg { color: #0F172A; }
[data-theme="light"] .gradient-bg .bg-white .text-xs,
[data-theme="light"] .gradient-bg .bg-white .text-subtle { color: #6B7280; }
[data-theme="light"] .gradient-bg .bg-white .text-body { color: #374151; }

/* Pricing featured card: always dark background, always white text */
.pricing-highlight,
[data-theme="light"] .pricing-highlight { color: #F1F5F9; }
.pricing-highlight h3, .pricing-highlight p, .pricing-highlight span,
[data-theme="light"] .pricing-highlight h3,
[data-theme="light"] .pricing-highlight p,
[data-theme="light"] .pricing-highlight span { color: inherit; }
[data-theme="light"] .pricing-highlight { border-color: rgba(15, 23, 42, 0.15); }

/* ACS Teilnehmer Badge */
.acs-trust-badge,
.acs-footer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 10px;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.acs-trust-badge img,
.acs-footer-badge img {
  height: 36px;
  width: auto;
  display: block;
}
.acs-footer-badge { margin-top: 12px; }
.acs-trust-badge:hover,
.acs-footer-badge:hover { opacity: 0.85; }
[data-theme="light"] .acs-trust-badge,
[data-theme="light"] .acs-footer-badge { background: rgba(0, 0, 0, 0.04); }

/* Footer always readable */
[data-theme="light"] .site-footer { background: #F1F5F9; }
[data-theme="light"] .site-footer a:hover { color: #0F172A; }

/* Light theme card polish */
[data-theme="light"] .card {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Light theme measure items */
[data-theme="light"] .measure-item {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Light theme sector links */
[data-theme="light"] .sector-link {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .sector-link:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Light theme card icons */
[data-theme="light"] .card-icon {
  border-color: transparent;
}

/* --- Mobile Overrides --- */
@media (max-width: 640px) {
  .legal-header,
  .footer-minimal { padding: 20px; }
  .legal-content { padding: 32px 20px; }
  .footer-minimal-content { gap: 16px; }
  .countdown-card { padding: 24px 20px; }
  .countdown-grid { gap: 8px; }
  .countdown-item { min-width: 60px; }
  .countdown-number { font-size: 1.75rem; }
  .section-spacing { padding: 48px 0; }
}

/* =============================================================================
   Shared Theme-Aware Classes (formerly inline <style> in Tailwind pages)
   ============================================================================= */

/* --- How-it-Works Steps: Compact on Mobile --- */
@media (max-width: 767px) {
  #so-funktionierts .grid { gap: 1rem; }
  #so-funktionierts .grid > .relative { display: flex; align-items: flex-start; gap: 1rem; }
  #so-funktionierts .grid > .relative > .flex { margin-bottom: 0; flex-shrink: 0; }
  #so-funktionierts .grid > .relative > .flex > div { width: 3rem; height: 3rem; font-size: 1.25rem; }
  #so-funktionierts .grid > .relative > .card-hover { padding: 1.25rem; text-align: left; border-radius: 1rem; }
  #so-funktionierts .grid > .relative > .card-hover h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
  #so-funktionierts .grid > .relative > .card-hover p { font-size: 0.875rem; margin-bottom: 0.5rem; }
  #so-funktionierts .text-center.mb-16 { margin-bottom: 1.5rem; }
  #so-funktionierts .text-center.mb-16 h2 { font-size: 1.5rem; }
  #so-funktionierts .text-center.mb-16 p { font-size: 1rem; }
}

/* --- Feature Comparison Collapsible --- */
.feature-details summary { list-style: none; }
.feature-details summary::-webkit-details-marker { display: none; }
.feature-details[open] .feature-details-arrow { transform: rotate(180deg); }

/* --- Pricing Card Feature Text: Better Contrast --- */
.card ul span.text-body { color: var(--text-primary); }

/* --- Layout Sections --- */
.section-alt { background: var(--bg-surface); }
.section-default { background: var(--bg-body); }
[data-theme="light"] .section-alt { background: #F1F5F9; }

/* --- Manifesto --- */
.manifesto-body { font-size: 1.05rem; line-height: 1.75; }
.manifesto-callout {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 1rem;
  padding: 1.5rem;
}
[data-theme="light"] .manifesto-callout { background: #F1F5F9; }

/* --- Text Colors --- */
.text-heading { color: var(--text-primary); }
.text-body { color: var(--text-secondary); }
.text-subtle { color: var(--text-muted); }

/* --- Borders & Backgrounds --- */
.border-subtle { border-color: var(--border-default); }
.bg-card-theme { background: var(--bg-card); border-color: var(--border-default); }
.bg-surface-theme { background: var(--bg-surface); }

/* --- Semantic Colors --- */
.accent { color: var(--color-accent); }
.info { color: var(--color-info); }
.warning { color: var(--color-warning); }

/* --- Gradients --- */
.gradient-text {
  background: linear-gradient(135deg, #10B981 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-bg { background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%); }
.gradient-cta { background: var(--gradient-accent); }

/* --- Shared Interactions --- */
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.btn-glow { box-shadow: 0 0 30px rgba(var(--color-accent-rgb),0.5); }
.btn-glow:hover { box-shadow: 0 0 40px rgba(var(--color-accent-rgb),0.7); transform: scale(1.02); }
/* Duplicate .reveal removed — original at line 669 */
.pricing-featured { background: var(--color-primary); }

/* =============================================================================
   Page-Specific Styles (formerly inline)
   ============================================================================= */

/* --- index.html --- */
.phone-frame { max-width: 320px; width: 100%; }
.phone-frame-img { width: 100%; height: auto; border-radius: 28px; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35), 0 0 0 10px #1f2937, 0 0 0 12px rgba(255,255,255,0.05); }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 12px 16px; background: rgba(15,23,42,0.92); backdrop-filter: blur(12px); border-top: 1px solid rgba(148,163,184,0.12); transform: translateY(100%); transition: transform 0.3s ease; }
.sticky-mobile-cta.visible { transform: translateY(0); }
[data-theme="light"] .sticky-mobile-cta { background: rgba(255,255,255,0.92); }
@media (max-width: 1024px) { .sticky-mobile-cta { display: block; } }
@media (min-width: 1025px) { .sticky-mobile-cta { display: none !important; } }
/* phone-mockup-container: visibility controlled by md:flex in HTML */

.pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }
@keyframes pulse-soft { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.stat-num-green { color: #34D399; }
.stat-num-blue { color: #93C5FD; }
.stat-label { color: var(--text-secondary); }
[data-theme="light"] .stat-num-green { color: #047857; }
[data-theme="light"] .stat-num-blue { color: #1D4ED8; }

.info-bar { background: var(--color-primary); }

details.faq-item { background: var(--bg-card); border: 1px solid var(--border-default); }
details.faq-item summary { color: var(--text-primary); }
details.faq-item .faq-body { color: var(--text-secondary); }

.compare-table th, .compare-table td { color: var(--text-secondary); border-color: var(--border-default); }
.compare-highlight { background: rgba(var(--color-accent-rgb),0.05); }

.stat-card { background: var(--bg-card); border: 1px solid var(--border-default); }

/* --- Hero Mobile Optimization --- */
@media (max-width: 767px) {
  .hero-section { padding-top: 1.25rem !important; padding-bottom: 2rem !important; }
  .hero-section h1 { font-size: 2rem; margin-bottom: 0.75rem !important; }
  .hero-section .hero-subline { font-size: 1rem; margin-bottom: 1.25rem !important; }
  .hero-section .hero-badge { margin-bottom: 0.75rem !important; font-size: 0.8rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section { padding-top: 2.5rem !important; padding-bottom: 3rem !important; }
  .hero-section .phone-frame { max-width: 240px; }
}

/* --- Info Bar Compact --- */
.info-bar-link { color: inherit; text-decoration: none; display: block; }
.info-bar-link:hover { opacity: 0.9; }
.info-bar-hide-mobile { display: inline; }
@media (max-width: 479px) { .info-bar-hide-mobile { display: none; } }
@media (max-width: 374px) { .info-bar .font-medium { display: none; } }

/* --- CTA Row --- */
.hero-cta-row { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.hero-cta-row .gradient-cta { width: 100%; max-width: 360px; }
@media (min-width: 640px) {
  .hero-cta-row { flex-direction: row; justify-content: center; }
  .hero-cta-row .gradient-cta { width: auto; }
}
@media (min-width: 1024px) { .hero-cta-row { justify-content: flex-start; } }

/* Apple badge sits inline under the CTA */
.hero-cta-trust { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 10px; }
@media (min-width: 1024px) { .hero-cta-trust { justify-content: flex-start; } }

/* Secondary CTA — text link style on mobile, button on desktop */
.hero-secondary-link { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.hero-secondary-link:hover { color: var(--text-primary); }
.hero-secondary-link svg { width: 16px; height: 16px; }

/* --- Apple Store Badge (Official Style) --- */
.apple-badge { display: inline-flex; align-items: center; gap: 7px; background: #000; color: #fff; padding: 6px 12px; border-radius: 7px; font-size: 0.875rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.3); transition: all 0.2s ease; }
.apple-badge:hover { opacity: 0.85; }
.apple-badge-icon { width: 16px; height: 20px; flex-shrink: 0; }
.apple-badge-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.apple-badge-text small { font-size: 0.55rem; font-weight: 400; opacity: 0.9; }
.apple-badge-text strong { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.01em; }

/* --- Journey Strip (Mobile App Preview) --- */
.journey-strip-container { margin-top: 1.5rem; }
@media (min-width: 768px) { .journey-strip-container { display: none; } }
.journey-strip { display: flex; justify-content: center; align-items: flex-start; gap: 6px; padding: 0 8px; }
.journey-step { text-align: center; flex: 1; min-width: 0; max-width: 140px; }
.journey-step img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.12); }
.journey-step-label { display: block; font-size: 0.625rem; font-weight: 600; color: var(--text-secondary); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.journey-arrow { color: var(--color-accent); font-size: 1rem; padding-top: 35%; opacity: 0.5; flex-shrink: 0; font-weight: 300; }
[data-theme="light"] .journey-step img { box-shadow: 0 4px 20px rgba(0,0,0,0.15); border-color: rgba(0,0,0,0.1); }
@media (max-width: 359px) {
  .journey-strip { gap: 4px; padding: 0; }
  .journey-step-label { font-size: 0.5625rem; }
}

/* md:grid / lg:grid moved to end of file (after Tailwind block for correct cascade) */

/* --- Scroll Offset for fixed header + section-nav --- */
section[id], [id].reveal { scroll-margin-top: 120px; }

/* --- Outline Button (visible in both themes) --- */
.btn-outline-visible { border: 2px solid var(--color-accent); color: var(--color-accent); }
.btn-outline-visible:hover { background: rgba(var(--color-accent-rgb),0.1); }

/* --- Netzwerk Steps: Scroll Timeline (Mobile) --- */
@media (max-width: 639px) {
  .netzwerk-steps { position: relative; display: flex !important; flex-direction: column; gap: 0 !important; padding-left: 48px; }
  .netzwerk-steps::before { content: ''; position: absolute; left: 23px; top: 26px; bottom: 26px; width: 2px; background: var(--border-default); z-index: 0; }
  .netzwerk-steps .netzwerk-step { text-align: left; padding: 12px 16px 12px 20px; border: none !important; background: transparent !important; }
  .netzwerk-steps .netzwerk-step .step-dot { position: absolute; left: -25px; width: 36px; height: 36px; margin: 0; font-size: 0.875rem; top: 12px; opacity: 0.4; transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease; }
}
.netzwerk-progress-line { display: none; }
@media (max-width: 639px) {
  .netzwerk-progress-line { display: block; position: absolute; left: 23px; top: 24px; width: 2px; background: var(--color-accent); z-index: 1; height: 0; transition: height 0.1s linear; }
}

/* --- Fristen Bar --- */
.fristen-bar { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.fristen-item { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border-default); font-size: 0.875rem; }
.fristen-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fristen-dot-active { background: var(--color-accent); box-shadow: 0 0 6px rgba(var(--color-accent-rgb),0.5); }
.fristen-dot-upcoming { background: var(--color-warning); box-shadow: 0 0 6px rgba(245,158,11,0.4); }
.fristen-label { color: var(--text-secondary); }
.fristen-value { font-weight: 700; color: var(--text-primary); }

/* --- pricing.html --- */
.pricing-highlight { background: var(--gradient-hero); }
.pricing-highlight-badge { background: var(--gradient-accent); }
.price-compare-row { background: rgba(var(--color-accent-rgb),0.08); }
.price-highlight { background: linear-gradient(135deg, #10B981 0%, #2563EB 100%); }

/* --- knowledge.html --- */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details[open] summary svg { transform: rotate(180deg); }
.timeline-line { position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--border-default); }
@media (min-width: 768px) { .timeline-line { left: 32px; } }

/* --- support.html --- */
.faq-item { border-bottom: 1px solid var(--border-default); }
.faq-item:last-child { border-bottom: none; }

/* --- coming-soon.html --- */
.coming-soon-bg {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(var(--color-accent-rgb),0.08), transparent);
}
[data-theme="light"] .coming-soon-bg { background-image: none; }
.coming-soon-main { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px 24px 80px; text-align: center; }
.coming-soon-hero { max-width: 480px; }
.coming-soon-hero h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 48px; }
.coming-soon-status { font-size: 1rem; color: var(--text-secondary); margin-bottom: 24px; }
.app-store-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--gradient-accent); color: #fff; border-radius: var(--radius-md); font-weight: 600; font-size: 0.9375rem; transition: transform var(--transition), box-shadow var(--transition); }
.app-store-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(var(--color-accent-rgb),0.4); }
@media (max-width: 640px) { .coming-soon-main { padding: 24px 20px 60px; } }

/* --- check.html --- */
.progress-ring { transition: stroke-dashoffset 0.5s ease-in-out; }
.question-card { transition: all 0.3s ease; }
.question-card:hover { transform: translateY(-2px); }
.option-btn { transition: all 0.2s ease; cursor: pointer; }
.option-btn:hover { transform: scale(1.02); }
.option-btn.selected { border-color: var(--color-accent); background-color: rgba(var(--color-accent-rgb),0.1); }
.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.score-badge { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.check-main { max-width: 800px; margin: 0 auto; padding: 32px 24px; flex: 1; }
.cat-step { padding: 4px 0; border-radius: 6px; transition: all 0.2s ease; }
.cat-step.active { color: var(--color-accent); font-weight: 600; background: rgba(var(--color-accent-rgb),0.15); }
.cat-step.done { color: var(--color-accent); opacity: 0.7; background: rgba(var(--color-accent-rgb),0.08); }
.result-card { background: var(--bg-card); border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: 32px; }
.code-box { background: var(--bg-surface); border-radius: var(--radius-md); padding: 16px; }
.cat-bar-track { background: var(--bg-surface-elevated); border-radius: 999px; height: 10px; }
.cat-bar-fill { border-radius: 999px; height: 10px; transition: width 0.5s ease; }
.cat-bar-fill.green { background: var(--color-success); }
.cat-bar-fill.yellow { background: var(--color-warning); }
.cat-bar-fill.red { background: var(--color-danger); }
.rec-box { border-radius: var(--radius-md); padding: 16px; margin-top: 16px; }
.rec-box.info { background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.2); }
.rec-box.success { background: rgba(var(--color-accent-rgb),0.1); border: 1px solid rgba(var(--color-accent-rgb),0.2); }

/* --- check.html layout (CSP-compliant, no inline styles) --- */
.check-intro { margin-bottom: 48px; }
.check-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(var(--color-accent-rgb),0.1); color: var(--color-accent); padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px; }
.check-badge svg { width: 16px; height: 16px; }
.check-title { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 900; margin-bottom: 16px; }
.check-subtitle { font-size: 1.125rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 32px; }
.check-start-btn { font-size: 1.125rem; }
.check-start-btn svg { width: 24px; height: 24px; }
.check-screenshots { display: flex; justify-content: center; gap: 24px; margin-top: 40px; }
.check-screenshot-item { text-align: center; }
.check-screenshot-frame { width: 100px; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,0.2); border: 2px solid rgba(255,255,255,0.1); }
.check-screenshot-frame img { display: block; width: 100%; }
.check-screenshot-label { font-size: 0.7rem; margin-top: 8px; }
.check-app-hint { font-size: 0.8rem; margin-top: 12px; }

/* check.html progress */
.check-progress { margin-bottom: 32px; }
.check-progress-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.check-progress-label { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }
.check-progress-score { font-size: 0.875rem; font-weight: 500; color: var(--color-accent); }
.check-progress-track { width: 100%; background: var(--bg-surface-elevated); border-radius: 999px; height: 12px; margin-bottom: 12px; }
.check-progress-bar { height: 12px; border-radius: 999px; transition: all 0.5s ease; width: 10%; }
.check-cat-steps { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); gap: 4px; }
.check-cat-step { flex: 1; text-align: center; }

/* check.html result */
.check-score-ring { position: relative; width: 160px; height: 160px; margin: 0 auto 24px; }
.check-score-ring svg { width: 160px; height: 160px; transform: rotate(-90deg); }
.check-score-value { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 900; }
.check-result-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.check-result-desc { color: var(--text-secondary); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.check-code-box { margin-bottom: 24px; }
.check-code-label { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 8px; }
.check-code-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.check-code-value { font-size: 1.5rem; font-family: monospace; font-weight: 700; letter-spacing: 0.1em; }
.check-copy-btn { padding: 8px; border: 1px solid var(--border-default); border-radius: var(--radius-sm); background: none; cursor: pointer; color: var(--text-secondary); }
.check-copy-btn svg { width: 20px; height: 20px; }
.check-cat-breakdown-header { font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.check-cat-breakdown-header svg { width: 20px; height: 20px; color: var(--color-accent); }
.check-cat-breakdown { display: flex; flex-direction: column; gap: 12px; }
/* App Store CTA with QR code */
.check-app-cta-section { background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.08) 0%, rgba(var(--color-accent-rgb), 0.02) 100%); border: 1px solid rgba(var(--color-accent-rgb), 0.2); border-radius: var(--radius-lg); padding: 32px 24px; margin-top: 24px; margin-bottom: 8px; }
.check-app-cta-inner { display: flex; align-items: center; gap: 32px; }
.check-app-cta-content { flex: 1; text-align: left; }
.check-app-cta-headline { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.check-app-cta-subtext { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.check-app-cta-features { list-style: none; padding: 0; margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.check-app-cta-features li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-secondary); font-weight: 500; }
.check-app-cta-features li svg { color: var(--color-success); flex-shrink: 0; }
.check-app-cta-btn { display: inline-flex; align-items: center; gap: 8px; }
.check-app-cta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.check-app-cta-trust { display: block; margin-top: 12px; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.01em; }
.check-app-cta-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.check-app-cta-qr-img { width: 140px; height: 140px; border-radius: var(--radius-md); border: 1px solid var(--border-default); padding: 4px; background: white; }
.check-app-cta-qr-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
/* Supplier-to-Supplier Cascade CTA */
.check-cascade-section { border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 24px; margin-top: 16px; margin-bottom: 8px; }
.check-cascade-inner { display: flex; align-items: flex-start; gap: 16px; }
.check-cascade-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(var(--color-accent-rgb), 0.08); display: flex; align-items: center; justify-content: center; color: var(--color-accent); }
.check-cascade-content { flex: 1; }
.check-cascade-headline { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.check-cascade-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.check-cascade-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--color-accent); text-decoration: none; transition: gap 0.2s ease; }
.check-cascade-btn:hover { gap: 10px; }
.check-cascade-btn svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .check-app-cta-inner { flex-direction: column; text-align: center; }
  .check-app-cta-content { text-align: center; }
  .check-app-cta-features { align-items: center; }
  .check-app-cta-qr { display: none; }
  .check-cascade-inner { flex-direction: column; align-items: center; text-align: center; }
  .check-cascade-btn { justify-content: center; }
}
.check-restart-btn { margin-top: 24px; background: none; border: none; color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; cursor: pointer; }

/* --- verify.html --- */
.verify-result { border-radius: var(--radius-md); padding: 20px; text-align: center; margin-top: 20px; opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.verify-result.show { opacity: 1; transform: translateY(0); }
.verify-result.valid-green { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); }
.verify-result.valid-yellow { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); }
.verify-result.valid-red { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); }
.verify-result.invalid { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); }

/* --- Scroll Progress Bar --- */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--color-accent); z-index: 999; width: 0; transition: none; pointer-events: none; }

/* --- Section Nav (floating, mobile) --- */
.section-nav { position: fixed; top: 64px; left: 0; right: 0; z-index: 95; background: rgba(15,23,42,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-default); transform: translateY(-120%); transition: transform 0.3s ease; padding: 8px 12px; }
[data-theme="light"] .section-nav { background: rgba(255,255,255,0.92); }
.section-nav-visible { transform: translateY(0); }
.section-nav-inner { display: flex; align-items: center; justify-content: center; gap: 4px; max-width: 480px; margin: 0 auto; }
.section-nav a { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; padding: 5px 10px; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.section-nav a:hover, .section-nav a:active { color: var(--text-primary); background: rgba(148,163,184,0.1); }
.nav-top-btn { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; color: var(--text-secondary) !important; padding: 0 !important; flex-shrink: 0; cursor: pointer; }
.nav-top-btn:hover { background: rgba(148,163,184,0.15); color: var(--text-primary) !important; }
@media (min-width: 769px) { .section-nav { display: none; } }

/* --- checkliste.html --- */
@media print {
  .no-print { display: none !important; }
  body { background: white !important; color: #000 !important; }
  .print-break { page-break-before: always; }
  .card { border: 1px solid #ccc !important; box-shadow: none !important; }
  .step-number { background: #1E3A5F !important; color: white !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .step-number-last { background: #10B981 !important; color: white !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
.step-card { display: flex; gap: 16px; padding: 20px; }
.step-number { flex-shrink: 0; width: 32px; height: 32px; background: var(--color-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; }
.step-number-last { flex-shrink: 0; width: 32px; height: 32px; background: var(--color-accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; }
.step-checkbox { flex-shrink: 0; width: 24px; height: 24px; border: 2px solid var(--border-default); border-radius: 4px; margin-top: 4px; }
.tag { display: inline-block; font-size: 0.75rem; padding: 2px 8px; border-radius: 4px; margin-top: 8px; margin-right: 4px; }
.tag-blue { background: rgba(14, 165, 233, 0.1); color: var(--color-info); border: 1px solid rgba(14, 165, 233, 0.2); }
.tag-amber { background: rgba(245, 158, 11, 0.1); color: var(--color-warning); border: 1px solid rgba(245, 158, 11, 0.2); }
.tag-red { background: rgba(239, 68, 68, 0.1); color: var(--color-danger); border: 1px solid rgba(239, 68, 68, 0.2); font-weight: 500; }
.tag-green { background: rgba(var(--color-accent-rgb),0.1); color: var(--color-accent); border: 1px solid rgba(var(--color-accent-rgb),0.2); }

/* =============================================================================
   Inline-Style Migration Utilities (Phase 4 — WEB-INLINE)
   ============================================================================= */

/* --- Borders --- */
.border-default { border: 1px solid var(--border-default); }
.border-t-default { border-top: 1px solid var(--border-default); }
.border-b-default { border-bottom: 1px solid var(--border-default); }

/* --- Background Tints (10% opacity) --- */
.bg-accent-10 { background: rgba(16, 185, 129, 0.1); }
.bg-accent-15 { background: rgba(16, 185, 129, 0.15); }
.bg-info-10 { background: rgba(14, 165, 233, 0.1); }
.bg-warning-10 { background: rgba(245, 158, 11, 0.1); }
.bg-warning-08 { background: rgba(245, 158, 11, 0.08); }
.bg-warning-20 { background: rgba(245, 158, 11, 0.2); }
.bg-purple-10 { background: rgba(139, 92, 246, 0.1); }
.bg-danger-10 { background: rgba(239, 68, 68, 0.1); }
.bg-accent-06 { background: rgba(16, 185, 129, 0.06); }
.bg-accent-05 { background: rgba(16, 185, 129, 0.05); }
.bg-white-f8 { background: #F8FAFC; }

/* --- Text Colors --- */
.text-purple { color: #8B5CF6; }
.text-slate-900 { color: #0F172A; }
.text-blue-200-80 { color: rgba(191, 219, 254, 0.8); }
.text-blue-200-70 { color: rgba(191, 219, 254, 0.7); }
.text-blue-200-60 { color: rgba(191, 219, 254, 0.6); }
.text-blue-200-50 { color: rgba(191, 219, 254, 0.5); }
.text-gray-d1-80 { color: rgba(209, 213, 219, 0.8); }
.text-gray-d1-90 { color: rgba(209, 213, 219, 0.9); }
.text-gray-500 { color: #6B7280; }

/* --- Background Colors --- */
.bg-info-var { background: var(--color-info); }
.bg-accent-var { background: var(--color-accent); }
.bg-primary-var { background: var(--color-primary); }
.bg-step-blue { background: #0EA5E9; }
.bg-step-purple { background: #8B5CF6; }
.bg-step-indigo { background: #6366F1; }
.bg-step-amber { background: #F59E0B; }
.bg-gradient-hero { background: var(--gradient-hero); }

/* --- Border Variants --- */
.border-2-default { border: 2px solid var(--border-default); }
.border-2-accent { border: 2px solid var(--color-accent); }
.border-accent-12 { border: 1px solid rgba(16, 185, 129, 0.12); }
.border-accent-15 { border: 1px solid rgba(16, 185, 129, 0.15); }
.border-accent-20 { border: 1px solid rgba(16, 185, 129, 0.2); }
.border-warning-20 { border: 1px solid rgba(245, 158, 11, 0.2); }
.border-b-accent { border-bottom: 1px solid var(--color-accent); }

/* --- Browser Mockup Dots --- */
.dot-red { width: 10px; height: 10px; border-radius: 50%; background: #EF4444; display: block; }
.dot-amber { width: 10px; height: 10px; border-radius: 50%; background: #F59E0B; display: block; }
.dot-green { width: 10px; height: 10px; border-radius: 50%; background: #22C55E; display: block; }

/* --- Skeleton Placeholders (Browser Mockup) --- */
.skeleton-lg { height: 8px; background: #E2E8F0; border-radius: 4px; margin: 0 auto 12px; }
.skeleton-sm { height: 6px; background: #E2E8F0; border-radius: 3px; margin: 0 auto 6px; }
.skeleton-w60 { width: 60%; }
.skeleton-w65 { width: 65%; }
.skeleton-w75 { width: 75%; }
.skeleton-w80 { width: 80%; }
.skeleton-w90 { width: 90%; }

/* --- Inline-Style Migration: Phase 5 (badge, verify, features, support, check, betroffenheit, 404, terms, privacy, impressum) --- */
.mobile-cta-center { text-align: center; }
.main-flex-narrow { flex: 1; padding-top: 48px; padding-bottom: 48px; max-width: 800px; }
.main-flex-md { flex: 1; padding-top: 64px; padding-bottom: 64px; }
.main-flex-center { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; }
.icon-box-primary { width: 48px; height: 48px; background: var(--color-primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.icon-white-sm { width: 24px; height: 24px; color: white; }
.btn-block-mt-12 { width: 100%; margin-top: 12px; }
.btn-block-mt-16 { width: 100%; margin-top: 16px; }
.sub-heading-sm { font-size: 0.875rem; font-weight: 600; margin-top: 20px; margin-bottom: 8px; }
.sub-heading-sm-no-mt { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; }
.text-xs-muted { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; }
.text-sm-muted-hint { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; margin-bottom: 0; }
.verify-code-input { width: 100%; border: 1px solid var(--border-default); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 1.125rem; text-align: center; letter-spacing: 0.1em; text-transform: uppercase; background: var(--bg-surface); color: var(--text-primary); }
.verify-code-input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb),0.15); }
.verify-form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
.card-p-24 { padding: 24px; }
.mb-32 { margin-bottom: 32px; }
.border-l-accent { border-left: 4px solid var(--color-accent); }
.text-color-primary { color: var(--color-primary); }
.font-semibold-inline { font-weight: 600; }
.text-sm-muted-m0 { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.legal-header-actions { display: flex; align-items: center; gap: 16px; }
.screenshot-frame-140 { width: 140px; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.25); border: 2px solid rgba(255,255,255,0.1); }
[data-theme="light"] .screenshot-frame-140 { box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.1); }
.error-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 32px; }
.bc-prob-pill-warning { background-color: #F59E0B; color: #fff; }
.bc-progress-bar-initial { width: 12.5%; }

/* --- Badge Preview SVG --- */
.badge-preview-svg { display: block; margin: 0 auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12)); max-width: 100%; }

/* --- Max-Width --- */
.max-w-sm { max-width: 24rem; }

/* --- Feature Comparison Table --- */
.comparison-table-inner { overflow-x: auto; padding: 0 4px 16px; }
.comparison-table-grid { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.comparison-th { text-align: left; padding: 12px 16px; font-weight: 600; font-size: 0.75rem; }
.comparison-th-center { padding: 12px 8px; text-align: center; font-weight: 600; font-size: 0.75rem; }
.comparison-section-row td { padding: 10px 16px; font-weight: 700; font-size: 0.6875rem; letter-spacing: 0.05em; text-transform: uppercase; }
.comparison-td { padding: 10px 16px; }
.comparison-cell-sm { padding: 10px 8px; text-align: center; font-size: 0.7rem; }

/* --- NIS2-Ready Card Colors --- */
.btn-white-dark { background: #FFFFFF; color: #1E3A5F; }

/* --- Background Surface --- */
.bg-surface-var { background: var(--bg-surface); }
.bg-surface-elevated { background: var(--bg-surface-elevated); }

/* --- Step Gradient Line (How it Works) --- */
.steps-gradient-line { background: linear-gradient(to right, #10B981, #0EA5E9, #8B5CF6); }

/* --- Links --- */
.link-accent { color: var(--color-accent); font-weight: 500; }

/* --- Buttons --- */
.btn-block { display: block; width: 100%; text-align: center; }

/* --- Hero Section Components --- */
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: var(--text-primary); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.hero-subtitle-wide { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* --- Pricing Card Components --- */
.tier-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.tier-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.tier-price-gap-8 { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.tier-price-value { font-size: 2.5rem; font-weight: 900; }
.tier-desc { font-size: 0.875rem; margin-bottom: 20px; }
.tier-strikethrough { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.promo-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--color-warning), #D97706); color: #fff; padding: 6px 20px; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow-md); }
.promo-tag { font-size: 0.75rem; font-weight: 600; color: var(--color-accent); background: rgba(16, 185, 129, 0.1); padding: 2px 8px; border-radius: 6px; }

/* --- Feature Lists (Pricing Cards) --- */
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 8px; }
.icon-accent-sm { color: var(--color-accent); margin-top: 2px; }

/* --- FAQ Accordion --- */
.faq-summary { padding: 24px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; font-size: 1.125rem; }
.faq-chevron { color: var(--text-muted); transition: transform 0.2s; }
.faq-content { padding: 0 24px 24px; line-height: 1.7; }
.faq-list-decimal { list-style: decimal; padding-left: 20px; margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.faq-list-bullet { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }

/* --- Icon Boxes (48x48 centered containers) --- */
.icon-box { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }

/* --- Knowledge Page Quick Links --- */
.quick-link-card { text-align: center; padding: 20px; }
.text-label { font-weight: 700; font-size: 0.875rem; }
.text-caption { font-size: 0.75rem; margin-top: 4px; margin-bottom: 0; }

/* --- Timeline Dots (Meldepflicht) --- */
.timeline-dot { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; font-size: 0.6875rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* --- Glass Card (for dark gradient sections) --- */
.glass-card-dark { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); }

/* --- App Screenshot Preview --- */
.screen-preview { width: 120px; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); }
.screen-preview-sm { width: 110px; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); }
.screen-preview-lg { width: 140px; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
.screen-preview-accent { border: 2px solid rgba(255, 255, 255, 0.1); }
.screen-preview-info { border: 2px solid rgba(14, 165, 233, 0.3); }
.screen-preview-purple { border: 2px solid rgba(139, 92, 246, 0.3); }

/* --- Comparison Table (Pricing) --- */
.comparison-cell { padding: 10px 8px; text-align: center; color: var(--color-accent); }
.comparison-cell-neutral { padding: 10px 8px; text-align: center; }
.comparison-header { padding: 16px 24px; font-weight: 500; }
.table-full { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.cell-label { padding: 16px 24px; }
.cell-label-bold { padding: 16px 24px; font-weight: 500; }
.cell-center-xs { padding: 16px; text-align: center; font-size: 0.75rem; }
.cell-center-accent { padding: 16px; text-align: center; font-size: 0.75rem; font-weight: 500; color: var(--color-accent); }
.cell-highlight { background: rgba(30, 58, 95, 0.05); }
.th-label { text-align: left; padding: 16px 24px; font-weight: 700; }
.th-label-20 { text-align: left; padding: 20px 24px; font-weight: 700; }
.th-center { padding: 20px 16px; text-align: center; font-weight: 700; }
.th-center-16 { padding: 16px 24px; text-align: center; font-weight: 700; }
.th-highlight { padding: 20px 16px; text-align: center; font-weight: 700; background: var(--color-primary); color: #fff; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.td-right { padding: 16px 24px; text-align: right; }
.td-right-bold { padding: 16px 24px; text-align: right; font-weight: 700; }
.icon-accent-mx { color: var(--color-accent); margin: 0 auto; }
.price-value-lg { font-weight: 900; font-size: 1.125rem; margin-top: 4px; }
.text-blue-faded { color: rgba(191, 219, 254, 0.8); }
.text-blue-faded-bright { color: rgba(191, 219, 254, 0.9); }
.text-blue-strike { font-size: 1rem; text-decoration: line-through; color: rgba(147, 197, 253, 0.7); }
.bg-white-10 { background: rgba(255, 255, 255, 0.1); }
.pricing-compare-box { font-size: 0.75rem; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); padding: 8px 12px; text-align: center; margin-bottom: 16px; }
.cta-hero-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; margin-bottom: 24px; color: var(--text-primary); }
.cta-hero-desc { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-glow { position: absolute; top: 0; left: 50%; width: 384px; height: 384px; background: #fff; border-radius: 50%; filter: blur(48px); }
.store-link-text-sm { font-size: 0.75rem; font-weight: 400; opacity: 0.6; }
.store-link-text-lg { font-size: 1.125rem; font-weight: 700; }
.cost-label { font-weight: 500; }
.cost-note { font-size: 0.75rem; margin-top: 4px; }
.cost-value-accent { font-weight: 900; font-size: 1.125rem; color: var(--color-accent); }
.cell-accent-highlight { padding: 16px 24px; text-align: center; font-weight: 700; color: var(--color-accent); background: rgba(30, 58, 95, 0.05); }
.cell-center-plain { padding: 16px 24px; text-align: center; }
.th-accent-highlight { text-align: center; padding: 16px 24px; font-weight: 700; color: var(--color-accent); background: rgba(30, 58, 95, 0.05); }
.border-b-2-default { border-bottom: 2px solid var(--border-default); }
.pricing-subtitle { font-size: 1.25rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.disclaimer-note { font-size: 0.75rem; font-style: italic; padding: 16px 24px; }
.btn-cta-white { display: block; width: 100%; text-align: center; background: #fff; color: var(--color-primary); font-weight: 700; }
.app-store-link-white { background: #fff; color: var(--color-primary); }
.pricing-popular { position: relative; color: var(--text-primary); border-color: rgba(255, 255, 255, 0.1); transform: scale(1.02); }
.pricing-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 20px; border-radius: 999px; font-size: 0.8125rem; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow-md); color: #fff; }
.badge-gold-pricing { font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 6px; }

/* --- Misc Utilities --- */
.line-through { text-decoration: line-through; }
.p-5 { padding: 20px; }
.gap-1\.5 { gap: 6px; }
.grid-col-full { grid-column: 1 / -1; }
.link-accent-bold { color: var(--color-accent); font-weight: 600; }
.w-140 { width: 140px; }
.w-110 { width: 110px; }
.max-w-280 { max-width: 280px; }
.screen-preview-img { display: block; width: 100%; }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }

/* --- Knowledge / Timeline / Sektor Utilities --- */
.section-heading { font-weight: 900; margin-bottom: 16px; }
.section-intro { font-size: 1.25rem; }
.max-w-720 { max-width: 720px; }
.max-w-800 { max-width: 800px; }
.max-w-960 { max-width: 960px; }
.max-w-1080 { max-width: 1080px; }
.p-0 { padding: 0; }
.p-4-card { padding: 16px; }
.p-6-card { padding: 24px; }
.p-8-card { padding: 32px; }
.sektor-icon-box { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
.sektor-label { font-size: 0.875rem; font-weight: 600; }
.ext-link-icon-box { width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ext-link-label { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 500; color: var(--color-accent); }
.ext-link-label-info { display: inline-flex; align-items: center; gap: 4px; font-size: 0.875rem; font-weight: 600; color: var(--color-info); }
.ext-link-label-accent { display: inline-flex; align-items: center; gap: 4px; font-size: 0.875rem; font-weight: 600; color: var(--color-accent); }
.timeline-circle { position: relative; z-index: 1; width: 48px; height: 48px; min-width: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.timeline-entry { position: relative; display: flex; align-items: start; gap: 24px; }
.timeline-badge { font-size: 0.8125rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.timeline-date { font-size: 0.875rem; }
.timeline-title { font-weight: 700; font-size: 1.125rem; }
.timeline-desc { font-size: 0.875rem; margin-top: 4px; margin-bottom: 0; }
.step-circle { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step-title { font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: 0.9375rem; margin-bottom: 0; line-height: 1.6; }
.annexe-pill { font-size: 0.875rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; }
.disclaimer-box { margin-top: 32px; padding: 16px 24px; background: var(--bg-surface); border-radius: var(--radius-md); border: 1px solid var(--border-default); }
.disclaimer-text { font-size: 0.8125rem; line-height: 1.6; margin-bottom: 0; }
.cta-hero-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; margin-bottom: 24px; color: #F1F5F9; }
.app-store-text-sm { font-size: 0.75rem; font-weight: 400; opacity: 0.6; }
.app-store-text-lg { font-size: 1.125rem; font-weight: 700; }
.frist-verpasst-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(245, 158, 11, 0.15); color: var(--color-warning); padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px; }
.frist-verpasst-title { font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 16px; }
.frist-verpasst-desc { font-size: 1.25rem; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.card-warning-left { padding: 32px; margin-bottom: 32px; border-left: 4px solid var(--color-warning); }
.card-info-heading { font-weight: 700; font-size: 1.125rem; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.card-info-body { line-height: 1.8; display: flex; flex-direction: column; gap: 12px; }
.glossar-title { font-weight: 700; margin-bottom: 4px; }
.glossar-desc { font-size: 0.875rem; margin-bottom: 0; }
.cta-card-accent { padding: 32px; text-align: center; border-color: rgba(16, 185, 129, 0.3); border-width: 2px; }
.cta-card-info { padding: 32px; text-align: center; border-color: rgba(14, 165, 233, 0.3); border-width: 2px; }
.cta-card-title { font-weight: 700; font-size: 1.125rem; margin-bottom: 8px; }
.cta-card-desc { font-size: 0.875rem; margin-bottom: 12px; }
.timeline-circle-warning-glow { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2); }
.card-deadline-warning { border-color: rgba(245, 158, 11, 0.3); box-shadow: var(--shadow-md); }
.bg-primary-10 { background: rgba(30, 58, 95, 0.1); }
.bg-indigo-10 { background: rgba(99, 102, 241, 0.1); }
.bg-blue-10 { background: rgba(59, 130, 246, 0.1); }
.bg-teal-10 { background: rgba(20, 184, 166, 0.1); }
.bg-violet-10 { background: rgba(124, 58, 237, 0.1); }
.bg-gray-10 { background: rgba(107, 114, 128, 0.1); }
.bg-cyan-10 { background: rgba(6, 182, 212, 0.1); }
.bg-lime-10 { background: rgba(132, 204, 22, 0.1); }
.bg-rose-10 { background: rgba(244, 63, 94, 0.1); }
.bg-orange-10 { background: rgba(249, 115, 22, 0.1); }
.bg-slate-10 { background: rgba(100, 116, 139, 0.1); }
.text-slate { color: #64748B; }
.text-indigo { color: #6366F1; }
.text-blue { color: #3B82F6; }
.text-teal { color: #14B8A6; }
.text-violet { color: #7C3AED; }
.text-gray-icon { color: #6B7280; }
.text-cyan { color: #06B6D4; }
.text-lime { color: #84CC16; }
.text-rose { color: #F43F5E; }
.text-orange { color: #F97316; }
.text-green { color: #10B981; }
.color-primary { color: var(--color-primary); }
.text-hero-light { color: #F1F5F9; }
.text-secondary-ts { color: var(--text-secondary); }

/* --- Checkliste & Schulung Migration Utilities --- */
.checklist-print-bar { background: var(--color-primary); color: white; padding: 12px 16px; text-align: center; font-size: 0.875rem; }
.checklist-print-bar a { color: white; text-decoration: underline; }
.checklist-print-btn { margin-left: 16px; background: var(--color-accent); color: white; border: none; }
.checklist-main { flex: 1; padding-top: 48px; padding-bottom: 48px; }
.checklist-hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(16, 185, 129, 0.1); color: var(--color-accent); padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 16px; }
.text-xl-mb-8 { font-size: 1.25rem; margin-bottom: 8px; }
.text-sm-muted-deadline { font-size: 0.875rem; color: var(--text-muted); }
.warning-icon-lg { width: 24px; height: 24px; color: var(--color-warning); margin-top: 2px; flex-shrink: 0; }
.warning-label { font-weight: 600; color: var(--color-warning); margin-bottom: 4px; }
.text-sm-m0 { font-size: 0.875rem; margin: 0; }
.sanctions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; font-size: 0.875rem; }
.sanctions-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; margin-bottom: 0; }
.danger-heading { font-weight: 700; color: var(--color-danger); margin-bottom: 8px; }
.cta-gradient-box { margin-top: 40px; background: var(--gradient-hero); border-radius: var(--radius-xl); padding: 32px; text-align: center; color: white; }
.cta-gradient-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: white; }
.cta-gradient-desc { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; margin-bottom: 16px; }
.disclaimer-footer { margin-top: 32px; font-size: 0.75rem; color: var(--text-muted); }
.icon-16 { width: 16px; height: 16px; }
.link-accent-inline { color: var(--color-accent); }
.bg-warning-full { background: var(--color-warning); }
.bg-danger-full { background: var(--color-danger); }
.bg-info-full { background: var(--color-info); }
.bg-accent-full { background: var(--color-accent); }
.bg-primary-full { background: var(--color-primary); }
.schulung-mockup { width: 180px; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3); border: 2px solid rgba(255, 255, 255, 0.1); }
.schulung-mockup img { display: block; width: 100%; }
.table-row-highlight { background: rgba(16, 185, 129, 0.05); border: 2px solid var(--color-accent); border-radius: 12px; }
.badge-accent { background: var(--color-accent); }
.my-48 { margin-top: 48px; margin-bottom: 48px; }

/* =============================================================================
   Tailwind Utility Classes (generated from CDN replacement)
   ============================================================================= */
.visible{visibility:visible}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.-top-3{top:-.75rem}.-top-4{top:-1rem}.bottom-0{bottom:0}.left-0{left:0}.left-1\/2{left:50%}.left-8{left:2rem}.left-\[16\.67\%\]{left:16.67%}.right-0{right:0}.right-\[16\.67\%\]{right:16.67%}.top-0{top:0}.top-20{top:5rem}.z-10{z-index:10}.mx-auto{margin-left:auto;margin-right:auto}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:.5rem}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-64{height:16rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-80{height:20rem}.h-96{height:24rem}.w-1\/4{width:25%}.w-10{width:2.5rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-64{width:16rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-8{width:2rem}.w-96{width:24rem}.w-full{width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-\[180px\]{max-width:180px}.max-w-\[200px\]{max-width:200px}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-xl{max-width:36rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x:-50%}.-translate-x-1\/2,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-12{gap:3rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-xl{border-radius:.75rem}.rounded-b-xl{border-bottom-right-radius:.75rem;border-bottom-left-radius:.75rem}.rounded-t-xl{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.rounded-tl-none{border-top-left-radius:0}.rounded-tr-none{border-top-right-radius:0}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-t-2{border-top-width:2px}.border-white\/10{border-color:hsla(0,0%,100%,.1)}.bg-emerald-500\/20{background-color:rgba(var(--color-accent-rgb),.2)}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.bg-indigo-500{--tw-bg-opacity:1;background-color:rgb(99 102 241/var(--tw-bg-opacity,1))}.bg-orange-500{--tw-bg-opacity:1;background-color:rgb(249 115 22/var(--tw-bg-opacity,1))}.bg-purple-500{--tw-bg-opacity:1;background-color:rgb(168 85 247/var(--tw-bg-opacity,1))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-white\/10{background-color:hsla(0,0%,100%,.1)}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-20{padding-top:5rem;padding-bottom:5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-20{padding-bottom:5rem}.pb-24{padding-bottom:6rem}.pb-6{padding-bottom:1.5rem}.pl-10{padding-left:2.5rem}.pl-4{padding-left:1rem}.pt-16{padding-top:4rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-black{font-weight:900}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.text-emerald-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.text-white\/60{color:hsla(0,0%,100%,.6)}.text-white\/70{color:hsla(0,0%,100%,.7)}.text-white\/90{color:hsla(0,0%,100%,.9)}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-10{opacity:.1}.opacity-40{opacity:.4}.opacity-5{opacity:.05}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.shadow-2xl,.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.blur{--tw-blur:blur(8px)}.blur,.blur-3xl{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-3xl{--tw-blur:blur(64px)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-blur-sm,.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.hover\:border-\[var\(--color-accent\)\]:hover{border-color:var(--color-accent)}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.hover\:opacity-80:hover{opacity:.8}.hover\:opacity-90:hover{opacity:.9}.group[open] .group-open\:rotate-180{--tw-rotate:180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (min-width:640px){.sm\:block{display:block}.sm\:inline{display:inline}.sm\:hidden{display:none}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:gap-10{gap:2.5rem}.sm\:gap-12{gap:3rem}.sm\:gap-3{gap:.75rem}.sm\:p-10{padding:2.5rem}.sm\:p-8{padding:2rem}.sm\:py-28{padding-top:7rem;padding-bottom:7rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}}@media (min-width:768px){.md\:block{display:block}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.md\:gap-12{gap:3rem}}@media (min-width:1024px){.lg\:mx-0{margin-left:0;margin-right:0}.lg\:flex{display:flex}.lg\:scale-105{--tw-scale-x:1.05;--tw-scale-y:1.05;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:justify-start{justify-content:flex-start}.lg\:justify-end{justify-content:flex-end}.lg\:gap-14{gap:3.5rem}.lg\:gap-16{gap:4rem}.lg\:text-left{text-align:left}.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-6xl{font-size:3.75rem;line-height:1}}

/* --- Additional Tailwind Utilities (added for PLG redesign) --- */
@media (min-width:640px){
  .sm\:gap-4{gap:1rem}
  .sm\:gap-6{gap:1.5rem}
  .sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
  .sm\:h-8{height:2rem}
  .sm\:mb-3{margin-bottom:.75rem}
  .sm\:mb-4{margin-bottom:1rem}
  .sm\:mb-10{margin-bottom:2.5rem}
  .sm\:mb-12{margin-bottom:3rem}
  .sm\:mt-10{margin-top:2.5rem}
  .sm\:p-4{padding:1rem}
  .sm\:p-5{padding:1.25rem}
  .sm\:p-6{padding:1.5rem}
  .sm\:py-20{padding-top:5rem;padding-bottom:5rem}
  .sm\:rounded-2xl{border-radius:1rem}
  .sm\:text-lg{font-size:1.125rem;line-height:1.75rem}
  .sm\:text-xl{font-size:1.25rem;line-height:1.75rem}
  .sm\:w-8{width:2rem}
}
@media (min-width:768px){
  .md\:block{display:block}
  .md\:flex{display:flex}
  .md\:text-left{text-align:left}
  .md\:grid { display: grid }
  .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
  .md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}
  .md\:gap-12{gap:3rem}
}
@media (min-width:1024px){
  .lg\:grid { display: grid }
}

/* --- Netzwerk Timeline: Active Step Dots --- */
@media (max-width: 639px) {
  .netzwerk-steps .netzwerk-step .step-dot {
    position: absolute;
    left: -25px;
    width: 36px;
    height: 36px;
    margin: 0;
    font-size: 0.875rem;
    top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .netzwerk-steps .netzwerk-step .step-dot.step-active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(var(--color-accent-rgb),0.6), 0 0 32px rgba(var(--color-accent-rgb),0.2);
  }
}

/* =============================================================================
   Platform Conversion Funnel — Nav, Floating CTA, Verify, Check Enhancements
   ============================================================================= */

/* --- Nav Check Button (Accent CTA in Desktop Nav) --- */
.btn-nav-check {
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-nav-check:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-accent-rgb),0.3);
}
[data-theme="light"] .btn-nav-check {
  background: #047857;
}
[data-theme="light"] .btn-nav-check:hover {
  background: #065f46;
}

/* --- Floating Sticky CTA --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-default);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.floating-cta.visible {
  transform: translateY(0);
}
.floating-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.floating-cta-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-cta-text svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.floating-cta .btn {
  padding: 8px 20px;
  font-size: 0.8125rem;
}
.floating-cta-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
  line-height: 1;
  transition: color var(--transition);
}
.floating-cta-close:hover {
  color: var(--text-primary);
}
@media (max-width: 1024px) {
  .floating-cta { display: none !important; }
}
@media (max-width: 640px) {
  .floating-cta-inner { gap: 10px; }
  .floating-cta-text span { display: none; }
  .floating-cta-text svg { display: block; }
  .floating-cta-text::after { content: 'NIS2-Check'; font-size: 0.8125rem; }
}

/* --- Verify Page: Loop CTA --- */
.verify-loop-cta {
  margin-top: 24px;
  padding: 24px;
  background: rgba(var(--color-accent-rgb),0.06);
  border: 1px solid rgba(var(--color-accent-rgb),0.15);
  border-radius: var(--radius-md);
  text-align: center;
}
.verify-loop-cta h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.verify-loop-cta p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.verify-loop-cta .btn { font-size: 0.875rem; }
[data-theme="light"] .verify-loop-cta {
  background: rgba(var(--color-accent-rgb),0.06);
  border-color: rgba(var(--color-accent-rgb),0.18);
}

/* --- Verify: How it works --- */
.verify-steps {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.verify-steps h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.verify-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.verify-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.verify-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb),0.12);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Verify: No-code CTA --- */
.verify-nocode {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  text-align: center;
}
.verify-nocode h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.verify-nocode p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.verify-nocode-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Verify: Disclaimer --- */
.verify-disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.verify-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.verify-disclaimer a:hover {
  color: var(--text-secondary);
}

/* --- Check Page: Verify Hint Box --- */
.check-verify-hint {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
}
.check-verify-hint p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.check-verify-hint p:last-child {
  margin-bottom: 0;
}
.check-verify-url {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-body);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 8px;
}
.check-verify-url span {
  flex: 1;
  font-family: monospace;
  font-size: 0.8125rem;
  color: var(--text-primary);
  word-break: break-all;
}
.check-verify-url button {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.check-verify-url button:hover {
  opacity: 0.9;
}

/* --- Check Page: Social Proof --- */
.check-social-proof {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}
.check-social-proof strong {
  color: var(--text-primary);
}

/* --- Check Page: Sanction Reminder --- */
.check-reminder {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

/* --- Check Page: Return Visitor Hint --- */
.check-return-hint {
  background: rgba(var(--color-accent-rgb),0.08);
  border: 1px solid rgba(var(--color-accent-rgb),0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
}
.check-return-hint a {
  color: var(--color-accent);
  font-weight: 600;
  margin-left: 4px;
}
[data-theme="light"] .check-return-hint {
  background: rgba(var(--color-accent-rgb),0.06);
  border-color: rgba(var(--color-accent-rgb),0.18);
}

/* --- Copy Flash Animation --- */
.copy-success {
  animation: copyFlash 0.5s ease;
}
@keyframes copyFlash {
  0% { background: rgba(var(--color-accent-rgb),0.2); }
  100% { background: transparent; }
}

/* --- Hero Social Proof --- */
.hero-social-proof {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.hero-social-proof strong {
  color: var(--text-primary);
}

/* --- Sector Check CTA Section --- */
.sector-check-cta {
  padding: 48px 0;
  text-align: center;
}
.sector-check-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.sector-check-cta p {
  font-size: 0.9375rem;
  max-width: 600px;
  margin: 0 auto 20px;
}
.sector-check-cta .btn {
  margin-bottom: 12px;
}
.sector-check-cta .text-sm {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Button Outline Variant --- */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  background: rgba(var(--color-accent-rgb),0.06);
}

/* --- Badge Generator Page (badge.html) --- */
.badge-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.badge-step-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.badge-code-input {
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-surface);
  color: var(--text-primary);
}
.badge-code-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb),0.15);
}
a:focus-visible, button:focus-visible, [role="button"]:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.badge-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.badge-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.badge-form-input {
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--bg-surface);
  color: var(--text-primary);
}
.badge-preview-area {
  display: flex;
  justify-content: center;
  padding: 24px 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow-x: auto;
}
.badge-embed-wrapper {
  position: relative;
}
.badge-embed-pre {
  background: var(--bg-surface-elevated);
  color: var(--color-accent);
  padding: 16px;
  padding-right: 80px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-family: monospace;
  overflow-x: auto;
  border: 1px solid var(--border-default);
  white-space: pre-wrap;
  word-break: break-all;
}
.badge-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.badge-copy-btn:hover {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
}
.badge-validation-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-success);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
}
.badge-validation-err {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-danger);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
}
.badge-nocode {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.badge-nocode a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}
.badge-nocode a:hover {
  text-decoration: underline;
}
.badge-steps {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.badge-steps h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.badge-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: badge-step;
}
.badge-steps ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  counter-increment: badge-step;
}
.badge-steps ol li::before {
  content: counter(badge-step);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.badge-use-cases {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.badge-use-cases strong {
  color: var(--text-secondary);
}
.badge-disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.check-badge-cta {
  margin-top: 16px;
  padding: 16px;
  background: rgba(var(--color-accent-rgb),0.08);
  border: 1px solid rgba(var(--color-accent-rgb),0.2);
  border-radius: var(--radius-md);
  text-align: center;
}
.check-badge-cta a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}
.check-badge-cta a:hover {
  text-decoration: underline;
}
[data-theme="light"] .badge-step-card {
  background: white;
}
[data-theme="light"] .check-badge-cta {
  background: rgba(var(--color-accent-rgb),0.06);
  border-color: rgba(var(--color-accent-rgb),0.18);
}

/* =============================================================================
   Betroffenheitscheck (.bc-* prefix)
   ============================================================================= */

/* --- Layout --- */
.bc-main {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  min-height: 80vh;
}

/* --- Intro --- */
.bc-intro { padding: 20px 0 40px; }

.bc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb),0.08);
  border: 1px solid rgba(var(--color-accent-rgb),0.2);
  margin-bottom: 24px;
}

.bc-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.bc-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.bc-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  padding: 16px 40px;
  margin-bottom: 40px;
}

.bc-trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}
.bc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.bc-trust-item svg { color: var(--color-accent); flex-shrink: 0; }

.bc-return-hint {
  background: rgba(var(--color-accent-rgb),0.08);
  border: 1px solid rgba(var(--color-accent-rgb),0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.bc-return-hint a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}
.bc-return-hint a:hover { text-decoration: underline; }

/* --- Progress --- */
.bc-progress {
  margin-bottom: 24px;
}
.bc-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.bc-progress-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.bc-live-prob-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.bc-progress-track {
  height: 6px;
  background: var(--bg-surface-elevated);
  border-radius: 3px;
  overflow: hidden;
}
.bc-progress-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* --- Question Card --- */
.bc-question-wrap {
  min-height: 300px;
}
.bc-question-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.bc-question-text {
  font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Help Tooltip */
.bc-help-wrap {
  margin-bottom: 20px;
}
.bc-help-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  color: var(--text-muted);
}
.bc-help-btn:hover { color: var(--color-accent); }
.bc-help-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 12px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* Options */
.bc-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bc-option-btn {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-default);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
  position: relative;
}
.bc-option-btn::before {
  content: attr(data-key);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-surface-elevated);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 600;
}
.bc-option-btn:hover {
  border-color: var(--color-accent);
  transform: translateY(-1px);
}
.bc-option-btn.selected {
  border-color: var(--color-accent);
  background: rgba(var(--color-accent-rgb),0.1);
}
.bc-option-btn.bc-disabled {
  pointer-events: none;
  opacity: 0.7;
}
.bc-option-btn.selected.bc-disabled {
  opacity: 1;
}

/* Sector Picker */
.bc-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 10px;
}
.bc-group-label:first-of-type { margin-top: 12px; }

.bc-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .bc-sector-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.bc-sector-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  border: 2px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
  text-align: left;
  min-height: 48px;
}
.bc-sector-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.01);
}
.bc-sector-card.selected {
  border-color: var(--color-accent);
  background: rgba(var(--color-accent-rgb),0.08);
}
.bc-sector-card.bc-disabled {
  pointer-events: none;
  opacity: 0.6;
}
.bc-sector-card.selected.bc-disabled { opacity: 1; }

.bc-sector-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.bc-sector-desc {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}
.bc-annex-tag {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
  background: rgba(var(--color-accent-rgb),0.12);
  color: var(--color-accent);
}
.bc-annex-tag.bc-annex-ii {
  background: rgba(14, 165, 233, 0.12);
  color: var(--color-info);
}

.bc-sector-other {
  margin-top: 12px;
}
.bc-sector-other .bc-sector-card {
  border-style: dashed;
  opacity: 0.8;
}
.bc-sector-other .bc-sector-card:hover { opacity: 1; }

/* Back Button */
.bc-back-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  font-weight: 500;
}
.bc-back-btn:hover { color: var(--text-primary); }

/* --- Slide Animations --- */
@keyframes bcSlideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bcSlideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.bc-slide-in-right { animation: bcSlideInRight 0.3s ease-out; }
.bc-slide-in-left { animation: bcSlideInLeft 0.3s ease-out; }

/* --- Calculating --- */
.bc-calculating {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.bc-calc-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  animation: bcPulse 1.5s ease-in-out infinite;
}
@keyframes bcPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* --- Motivator --- */
.bc-motivator {
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(var(--color-accent-rgb),0.08);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 500;
  text-align: center;
  animation: bcSlideInRight 0.3s ease-out;
}
.bc-fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* --- Result --- */
.bc-result-inner {
  text-align: center;
}

/* Score Ring */
.bc-score-ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}
.bc-score-ring svg {
  width: 100%;
  height: 100%;
}
.bc-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.bc-score-pct {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Status */
.bc-status-label {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.bc-entity-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 2px solid;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Interpretation */
.bc-interpretation {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: left;
}

/* Result Cards */
.bc-result-card, .bc-sanction-card, .bc-steps-card, .bc-supply-chain-card,
.bc-highlight-card, .bc-countdown-card, .bc-readiness-transition, .bc-sector-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
  text-align: left;
}
.bc-result-card h3, .bc-sanction-card h3, .bc-steps-card h3,
.bc-supply-chain-card h3, .bc-highlight-card h3, .bc-readiness-transition h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.bc-result-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-result-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
}
.bc-result-card ul li::before {
  content: '\2023';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Sanction Card */
.bc-sanction-card {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}
.bc-sanction-fine {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-danger);
  margin-bottom: 6px;
}
.bc-sanction-liability {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Steps Card */
.bc-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.bc-step-item:last-child { margin-bottom: 0; }
.bc-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bc-step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 4px;
}

/* Countdown Card */
.bc-countdown-card {
  text-align: center;
}
.bc-countdown-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.bc-countdown-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-warning);
}
.bc-countdown-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Supply Chain Card */
.bc-supply-chain-card { border-color: rgba(245, 158, 11, 0.3); }

/* Highlight Card */
.bc-highlight-warning {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
}
.bc-highlight-warning h3 { color: var(--color-warning); }

/* Readiness Transition */
.bc-readiness-transition {
  border-color: rgba(var(--color-accent-rgb),0.3);
  background: rgba(var(--color-accent-rgb),0.05);
  text-align: center;
}
.bc-readiness-transition p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Sector Link Card */
.bc-sector-link-card { text-align: center; }
.bc-sector-link-card a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}
.bc-sector-link-card a:hover { text-decoration: underline; }

/* Screenshot Card */
.bc-screenshot-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
  border-left: 4px solid;
  text-align: left;
}
.bc-ss-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.bc-ss-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.8125rem;
}
.bc-ss-label { color: var(--text-muted); }
.bc-ss-value { font-weight: 600; color: var(--text-primary); }
.bc-ss-brand {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

/* Disclaimer */
.bc-disclaimer {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 24px 0;
  text-align: left;
}
.bc-disclaimer strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-warning);
  margin-bottom: 6px;
}
.bc-disclaimer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.bc-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}
.bc-tertiary-link {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}
.bc-tertiary-link:hover { text-decoration: underline; }
.bc-app-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.5;
  text-align: center;
}

/* Restart */
.bc-restart-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: none;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.bc-restart-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

/* --- Light Theme Adjustments --- */
[data-theme="light"] .bc-sanction-card {
  background: rgba(239, 68, 68, 0.04);
}
[data-theme="light"] .bc-highlight-warning {
  background: rgba(245, 158, 11, 0.04);
}
[data-theme="light"] .bc-readiness-transition {
  background: rgba(var(--color-accent-rgb),0.04);
}
[data-theme="light"] .bc-disclaimer {
  background: rgba(245, 158, 11, 0.04);
}
[data-theme="light"] .bc-trust-badge {
  background: rgba(var(--color-accent-rgb),0.06);
  border-color: rgba(var(--color-accent-rgb),0.18);
}

/* --- Print Stylesheet --- */
@media print {
  .site-header, .mobile-menu, .bc-progress, .bc-cta-section,
  .bc-restart-btn, .site-footer, .bc-back-btn, .bc-sector-link-card { display: none !important; }
  .bc-main { padding: 20px; max-width: 100%; }
  .bc-result-inner { text-align: left; }
  .bc-score-ring { width: 120px; height: 120px; }
  .bc-screenshot-card { border: 1px solid #ccc; break-inside: avoid; }
  .bc-result-card, .bc-sanction-card, .bc-steps-card, .bc-disclaimer { break-inside: avoid; }
  body { background: #fff; color: #000; }
}
