/* ==========================================================================
   XTUR AI SURVEILLANCE PLATFORM — DESIGN SYSTEM
   Human-Centric, Professional, Light & Dark Theme, PPT Mode, & Perfect Print
   ========================================================================== */

:root {
  /* Default: LIGHT THEME (Warm, Clean, Humanist Corporate) */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-border: #e2e8f0;
  --bg-card-hover: #f8fafc;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-dim: #94a3b8;

  --color-primary: #1e40af;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-primary-border: #bfdbfe;
  --color-accent: #0284c7;
  --color-cyan-light: #ecfeff;
  --color-cyan-border: #a5f3fc;
  --color-emerald: #059669;
  --color-emerald-light: #ecfdf5;
  --color-emerald-border: #a7f3d0;
  --color-red: #dc2626;
  --color-red-light: #fef2f2;
  --color-red-border: #fecaca;
  --color-amber: #d97706;
  --color-amber-light: #fffbeb;
  --color-amber-border: #fde68a;
  --color-purple: #7c3aed;
  --color-purple-light: #f5f3ff;

  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: #e2e8f0;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(30, 64, 175, 0.15);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* DARK THEME OVERRIDES */
body.theme-dark {
  --bg-body: #060d1f;
  --bg-surface: #0c1731;
  --bg-surface-elevated: #132247;
  --bg-card: #0c1731;
  --bg-card-border: rgba(255, 255, 255, 0.09);
  --bg-card-hover: #132247;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-primary-light: rgba(59, 130, 246, 0.15);
  --color-primary-border: rgba(59, 130, 246, 0.35);
  --color-accent: #38bdf8;
  --color-cyan-light: rgba(6, 182, 212, 0.15);
  --color-cyan-border: rgba(6, 182, 212, 0.35);
  --color-emerald: #10b981;
  --color-emerald-light: rgba(16, 185, 129, 0.15);
  --color-emerald-border: rgba(16, 185, 129, 0.35);
  --color-red: #f87171;
  --color-red-light: rgba(239, 68, 68, 0.15);
  --color-red-border: rgba(239, 68, 68, 0.35);
  --color-amber: #fbbf24;
  --color-amber-light: rgba(245, 158, 11, 0.15);
  --color-amber-border: rgba(245, 158, 11, 0.35);
  --color-purple: #a78bfa;
  --color-purple-light: rgba(139, 92, 246, 0.15);

  --header-bg: rgba(6, 13, 31, 0.92);
  --header-border: rgba(255, 255, 255, 0.09);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.25);
}

/* Base Elements */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

.text-primary { color: var(--color-primary); }
.text-emerald { color: var(--color-emerald); }
.text-sm { font-size: 0.88rem; color: var(--text-muted); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* --------------------------------------------------------------------------
   TOP APP BAR
   -------------------------------------------------------------------------- */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-border);
  height: 64px;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(2, 132, 199, 0.35));
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.brand-name-x {
  color: #0284c7;
  font-weight: 900;
}

.brand-name-tur {
  color: var(--text-primary);
  font-weight: 900;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1e40af, #0284c7);
  color: #fff;
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.quick-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Theme Toggle Button */
.action-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.action-icon-circle svg {
  width: 15px;
  height: 15px;
}

.action-icon-circle:hover {
  background: var(--bg-card-border);
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   MOBILE NAVIGATION (SCROLLABLE BAR & SLIDE-OUT DRAWER)
   -------------------------------------------------------------------------- */
.mobile-only-btn {
  display: none !important;
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
}

.mobile-nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background: var(--bg-surface);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  z-index: 2;
  animation: slideInDrawer 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInDrawer {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--bg-card-border);
}

.mobile-drawer-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.drawer-section-label {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mob-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  transition: all var(--transition-fast);
}

.mob-drawer-link:hover,
.mob-drawer-link.active {
  background: rgba(2, 132, 199, 0.1);
  border-color: #0284c7;
  color: #0284c7;
}

.drawer-link-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-link-left svg {
  width: 17px;
  height: 17px;
  color: #0284c7;
}

.mob-drawer-link .arrow {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
}

.mobile-drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--bg-card-border);
  background: var(--bg-surface-elevated);
}

.btn-menu-pill {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-menu-pill svg {
  width: 14px;
  height: 14px;
}

.btn-menu-pill:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

body.theme-dark .btn-menu-pill {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

body.theme-dark .btn-menu-pill:hover {
  background: #0284c7;
  color: #ffffff;
}

.drawer-group {
  margin-bottom: 0.85rem;
}

.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   DOCUMENT MODE LAYOUT
   -------------------------------------------------------------------------- */
.document-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 110px 2.5rem 5rem 2.5rem;
}

.presentation-slide {
  padding: 5rem 0;
  border-bottom: 1px solid var(--bg-card-border);
  position: relative;
}

.presentation-slide:last-of-type {
  border-bottom: none;
}

/* Slide Header */
.slide-header {
  margin-bottom: 2.8rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  border: 1px solid var(--color-emerald-border);
  margin-bottom: 1rem;
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.025em;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 820px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   COVER SLIDE
   -------------------------------------------------------------------------- */
.cover-slide {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 4rem 0;
}

.cover-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Poster Identity Styling */
.brand-poster-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.9rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  padding: 6px 16px 6px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.hero-brand-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(2, 132, 199, 0.4));
}

.poster-brand-text-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.poster-logo-title {
  display: flex;
  align-items: center;
}

.poster-logo-x {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0284c7;
  letter-spacing: -0.04em;
}

.poster-logo-tur {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.poster-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #0284c7;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.hero-title.poster-style {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.gradient-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #00d2ff 60%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.poster-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 1.4rem;
}

/* 6 Poster Capabilities 2x3 Grid */
.poster-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.4rem;
}

.p-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.p-feat-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.p-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-feat-icon svg {
  width: 15px;
  height: 15px;
}

.p-feat-item span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.poster-card-wrap {
  border-radius: 14px;
}

.poster-fit {
  object-fit: contain;
  background: #060d1f;
}

.poster-footer-pill {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Kemampuan Deteksi Objek Styling */
.detection-header-bar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.header-accent-line {
  width: 5px;
  height: 48px;
  background: linear-gradient(180deg, #0284c7, #1e40af);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 4px;
}

.section-heading-poster {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-subtext-poster {
  font-size: 0.96rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.detection-cards-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.det-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.det-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.det-visual-box {
  position: relative;
  height: 100px;
  overflow: hidden;
  background: #0a142c;
}

.det-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.det-card:hover .det-thumb {
  transform: scale(1.08);
}

.det-tag-pill {
  position: absolute;
  bottom: 6px;
  left: 6px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(8px);
}

.det-tag-pill.cyan { background: rgba(6, 182, 212, 0.9); color: #fff; }
.det-tag-pill.blue { background: rgba(37, 99, 235, 0.9); color: #fff; }
.det-tag-pill.amber { background: rgba(217, 119, 6, 0.9); color: #fff; }
.det-tag-pill.red { background: rgba(220, 38, 38, 0.9); color: #fff; }
.det-tag-pill.rose { background: rgba(225, 29, 72, 0.9); color: #fff; }
.det-tag-pill.navy { background: rgba(15, 23, 42, 0.9); color: #fff; }

.det-tag-pill svg {
  width: 11px;
  height: 11px;
}

.det-info {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.det-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.det-info p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* 9 Specifications Grid */
.poster-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.p-spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.p-spec-card:hover {
  border-color: var(--color-primary);
  background: var(--bg-surface-elevated);
}

.p-spec-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-spec-icon-box svg {
  width: 18px;
  height: 18px;
}

.p-spec-content h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.p-spec-content p {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  line-height: 1.3;
}

.cover-cta-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.btn-glow {
  background: linear-gradient(135deg, #1e40af, #0284c7);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
  transition: all var(--transition-smooth);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-outline {
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--bg-card-border);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--bg-surface-elevated);
}

.hero-signature {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-left: 2.5px solid var(--color-emerald);
  padding-left: 10px;
}

.hero-signature strong {
  color: var(--text-primary);
}

/* Elegant Floating Card Showcase */
.hero-card-showcase {
  background: var(--bg-surface);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth);
}

.hero-card-showcase:hover {
  transform: translateY(-3px);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--bg-card-border);
  font-size: 0.76rem;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-emerald);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-emerald);
  box-shadow: 0 0 6px var(--color-emerald);
}

.platform-link {
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.showcase-img-wrap:hover .hero-img {
  transform: scale(1.02);
}

.showcase-zoom-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.showcase-img-wrap:hover .showcase-zoom-tag {
  opacity: 1;
}

.showcase-footer {
  padding: 8px 14px;
  font-size: 0.74rem;
  color: var(--text-muted);
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.showcase-footer svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.hero-caption-pill {
  padding: 10px 16px;
  background: var(--bg-surface);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--bg-card-border);
}

.image-zoomable {
  position: relative;
  cursor: zoom-in;
}

.img-overlay-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.image-zoomable:hover .img-overlay-hint {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   SOFT CARDS & HUMANIST LISTS
   -------------------------------------------------------------------------- */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-soft {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.card-soft:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.card-soft.danger-edge {
  border-top: 4px solid var(--color-red);
}

.card-soft.success-edge {
  border-top: 4px solid var(--color-emerald);
}

.card-icon-header {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon-header.red { background: var(--color-red-light); color: var(--color-red); }
.card-icon-header.green { background: var(--color-emerald-light); color: var(--color-emerald); }
.card-icon-header.blue { background: var(--color-primary-light); color: var(--color-primary); }
.card-icon-header.purple { background: var(--color-purple-light); color: var(--color-purple); }

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sub-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.card-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.human-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.human-list li {
  position: relative;
  padding-left: 20px;
}

.human-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.human-list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.human-list p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   TABLES
   -------------------------------------------------------------------------- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.modern-table th {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 2px solid var(--bg-card-border);
}

.modern-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bg-card-border);
  color: var(--text-secondary);
}

.modern-table tr:hover td {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
}

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
}

.status-pill.red {
  background: var(--color-red-light);
  color: var(--color-red);
}

.status-pill.green {
  background: var(--color-emerald-light);
  color: var(--color-emerald);
}

.badge-tech {
  display: inline-flex;
  align-items: center;
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  border: 1px solid var(--color-emerald-border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   TECH STACK & FEATURES
   -------------------------------------------------------------------------- */
.tech-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tech-card-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.tech-card-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.t-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-icon-box svg {
  width: 26px;
  height: 26px;
}

.t-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.text-sub {
  font-size: 0.78rem;
  color: var(--color-emerald);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.t-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.highlight-banner {
  background: var(--color-emerald-light);
  border: 1px solid var(--color-emerald-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hb-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-bottom: 2px;
}

.hb-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Features Grid */
.features-human-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.f-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.f-box:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.f-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.f-icon svg {
  width: 22px;
  height: 22px;
}

.f-icon.blue { background: var(--color-primary-light); color: var(--color-primary); }
.f-icon.green { background: var(--color-emerald-light); color: var(--color-emerald); }
.f-icon.amber { background: var(--color-amber-light); color: var(--color-amber); }
.f-icon.purple { background: var(--color-purple-light); color: var(--color-purple); }
.f-icon.red { background: var(--color-red-light); color: var(--color-red); }
.f-icon.cyan { background: var(--color-cyan-light); color: var(--color-accent); }

.f-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.f-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   TIMELINE WORKFLOW
   -------------------------------------------------------------------------- */
.timeline-workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.timeline-node {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.timeline-node.highlight-node {
  border-color: var(--color-emerald);
  background: var(--color-emerald-light);
}

.t-node-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.t-node-icon {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-node h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-node p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.quote-callout {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem;
}

.quote-callout svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.quote-callout p {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   DASHBOARD SHOWCASE & TABS
   -------------------------------------------------------------------------- */
.dashboard-tabs-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-card-border);
  padding-bottom: 0.75rem;
  overflow-x: auto;
}

.dash-tab-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dash-tab-btn svg {
  width: 16px;
  height: 16px;
}

.dash-tab-btn:hover {
  background: var(--bg-card-border);
  color: var(--text-primary);
}

.dash-tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.dash-tab-content {
  display: none;
}

.dash-tab-content.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.showcase-img-pane {
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-card-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #081024;
}

.showcase-img-pane img {
  width: 100%;
  display: block;
  transition: transform var(--transition-smooth);
}

.showcase-img-pane:hover img {
  transform: scale(1.02);
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.sub-badge svg {
  width: 12px;
  height: 12px;
}

.sub-badge.green { background: var(--color-emerald-light); color: var(--color-emerald); }
.sub-badge.blue { background: var(--color-primary-light); color: var(--color-primary); }
.sub-badge.amber { background: var(--color-amber-light); color: var(--color-amber); }

.showcase-text-pane h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.showcase-text-pane p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bullet-highlight {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bullet-highlight li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.bullet-highlight li::before {
  content: "✓";
  color: var(--color-emerald);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.bullet-highlight strong {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   INSIGHTS & TELEMETRY
   -------------------------------------------------------------------------- */
.insight-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ic-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ic-icon {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ic-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.ic-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.telemetry-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.tc-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.tc-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.tc-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rounded-preview {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
  border: 1px solid var(--bg-card-border);
}

.plate-summary-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.chip-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   ROI CALCULATOR & SECTORS
   -------------------------------------------------------------------------- */
.roi-container-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.roi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.badge-roi {
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.roi-interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.roi-input-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}

.roi-input-field input[type="range"] {
  width: 100%;
  accent-color: var(--color-emerald);
  cursor: pointer;
}

.slider-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.roi-result-field {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.r-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.r-highlight {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-emerald);
  margin: 4px 0;
}

.r-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.print-only-roi {
  display: none;
}

.sector-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sector-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.sector-item:hover {
  border-color: var(--color-primary);
}

.s-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.s-head svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.s-head h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.sector-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   ONBOARDING & CLOSING
   -------------------------------------------------------------------------- */
.onboarding-flow-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ob-step {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.ob-step.success-step {
  border-color: var(--color-emerald-border);
  background: var(--color-emerald-light);
}

.ob-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.ob-badge.green {
  background: var(--color-emerald);
}

.ob-step strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ob-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.closing-slide {
  padding: 5rem 0;
}

.closing-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 1.5rem 0 1rem 0;
  line-height: 1.2;
}

.closing-title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.closing-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-cta-box {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-glow.large, .btn-outline.large {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.contact-card-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.contact-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-cell strong {
  display: block;
  font-size: 0.95rem;
}

.contact-cell p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.contact-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.contact-cell a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-legal {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   LIGHTBOX MODAL & TOAST
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  max-width: 1200px;
  width: 100%;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: zoomModal 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomModal {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--color-red);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  overflow: auto;
  background: #081024;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox-caption {
  padding: 14px 20px;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--bg-card-border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.toast-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10002;
  background: var(--color-emerald);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: toastIn 0.3s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* --------------------------------------------------------------------------
   COMPREHENSIVE DARK THEME REFINEMENTS (POLISHED & CRISP)
   -------------------------------------------------------------------------- */
body.theme-dark {
  background-color: var(--bg-body);
  color: var(--text-primary);
}

/* Header & Nav in Dark Mode */
body.theme-dark .app-header {
  background: rgba(6, 13, 31, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .brand-name {
  color: #f8fafc;
}

body.theme-dark .brand-tag {
  background: linear-gradient(90deg, #2563eb, #0284c7);
  color: #ffffff;
}

body.theme-dark .nav-link {
  color: #94a3b8;
}

body.theme-dark .nav-link:hover {
  color: #38bdf8;
}

/* Theme Toggle Button in Dark Mode (Warm glowing sun) */
body.theme-dark #themeToggleBtn {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

body.theme-dark #themeToggleBtn:hover {
  background: rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.35);
}

/* View Mode Switcher in Dark Mode */
body.theme-dark .view-toggle-group {
  background: #0f1c3d;
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .toggle-btn {
  color: #94a3b8;
}

body.theme-dark .toggle-btn.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

/* Export Chip Buttons in Dark Mode */
body.theme-dark .btn-chip-export.pdf {
  background: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.35);
}

body.theme-dark .btn-chip-export.pdf:hover {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

body.theme-dark .btn-chip-export.pptx {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.35);
}

body.theme-dark .btn-chip-export.pptx:hover {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.4);
}

/* Hero Section in Dark Mode */
body.theme-dark .hero-title {
  color: #f8fafc;
}

body.theme-dark .hero-subtitle {
  color: #cbd5e1;
}

body.theme-dark .hero-desc {
  color: #94a3b8;
}

body.theme-dark .hero-stats-strip {
  background: #0b152d;
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

body.theme-dark .stat-num {
  color: #60a5fa;
}

body.theme-dark .stat-txt {
  color: #94a3b8;
}

body.theme-dark .stat-sep {
  color: rgba(255, 255, 255, 0.2);
}

body.theme-dark .btn-glow {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

body.theme-dark .btn-outline {
  background: #0f1c3d;
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

body.theme-dark .btn-outline:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
}

body.theme-dark .hero-signature {
  border-left-color: #10b981;
  color: #94a3b8;
}

body.theme-dark .hero-signature strong {
  color: #f8fafc;
}

/* Showcase Card & Frame in Dark Mode */
body.theme-dark .hero-card-showcase {
  background: #0b152d;
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 24px rgba(56, 189, 248, 0.12);
}

body.theme-dark .showcase-header {
  background: #081024;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .showcase-footer {
  background: #081024;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

/* Cards & Surfaces in Dark Mode */
body.theme-dark .card-soft,
body.theme-dark .tech-card-item,
body.theme-dark .f-box,
body.theme-dark .timeline-node,
body.theme-dark .sector-item,
body.theme-dark .onboarding-flow-box,
body.theme-dark .roi-container-box,
body.theme-dark .contact-card-modern {
  background: #0b152d;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

body.theme-dark .card-soft:hover,
body.theme-dark .tech-card-item:hover,
body.theme-dark .f-box:hover,
body.theme-dark .sector-item:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55), 0 0 18px rgba(59, 130, 246, 0.15);
}

body.theme-dark .card-soft.danger-edge {
  border-top: 4px solid #f87171;
}

body.theme-dark .card-soft.success-edge {
  border-top: 4px solid #10b981;
}

/* Comparative Table in Dark Mode */
body.theme-dark .modern-table th {
  background: #081024;
  color: #f8fafc;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

body.theme-dark .modern-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

body.theme-dark .modern-table tr:hover td {
  background: #112042;
  color: #ffffff;
}

/* Dashboard Showcase & Tabs in Dark Mode */
body.theme-dark .dash-tab-btn {
  background: #0f1c3d;
  border-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

body.theme-dark .dash-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

body.theme-dark .dash-tab-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

body.theme-dark .showcase-box {
  background: #0b152d;
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .showcase-img-pane {
  background: #050b18;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Telemetry & Database Plat in Dark Mode */
body.theme-dark .tc-card {
  background: #081024;
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .chip-item {
  background: #0f1c3d;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

/* ROI Field & Steps in Dark Mode */
body.theme-dark .roi-result-field {
  background: #081024;
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .ob-step {
  background: #081024;
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .ob-step.success-step {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
}

/* PPT Deck Controls in Dark Mode */
body.theme-dark .slide-controls-bar {
  background: #0c1731;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
}

body.theme-dark .ctrl-arrow-btn {
  background: #132247;
  border-color: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

body.theme-dark .ctrl-arrow-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

body.theme-dark .slide-title-chip {
  background: #132247;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .lightbox-content {
  background: #0c1731;
  border-color: rgba(255, 255, 255, 0.12);
}

body.theme-dark .lightbox-caption {
  background: #081024;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   PRINT STYLES (NEAT, CLEAN, PERFECT A4 PDF EXPORT)
   -------------------------------------------------------------------------- */
.print-header-bar, .print-page-number {
  display: none;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 1.6cm 1.4cm 1.6cm 1.4cm;
  }

  body {
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 10.5pt !important;
    line-height: 1.5 !important;
  }

  /* Hide all UI artifacts */
  .no-print,
  .app-header,
  .slide-controls-bar,
  .cover-cta-row,
  .dashboard-tabs-nav,
  .roi-interactive-grid,
  .lightbox-modal,
  .img-overlay-hint,
  .badge-status {
    display: none !important;
  }

  .print-header-bar {
    display: flex !important;
    justify-content: space-between;
    font-size: 8.5pt;
    color: #475569;
    border-bottom: 1.5px solid #cbd5e1;
    padding-bottom: 6px;
    margin-bottom: 1.4rem;
    font-family: var(--font-mono);
  }

  .print-page-number {
    display: block !important;
    text-align: right;
    font-size: 8pt;
    color: #64748b;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
  }

  .print-only-roi {
    display: block !important;
  }

  .document-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .presentation-slide {
    display: block !important;
    page-break-after: always !important;
    break-after: page !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    padding: 0 0 1.5rem 0 !important;
    border-bottom: none !important;
    min-height: auto !important;
    height: auto !important;
  }

  .presentation-slide:last-of-type {
    page-break-after: avoid !important;
    break-after: avoid !important;
  }

  /* Make all showcase tabs visible in print sequentially */
  .dash-tab-content {
    display: block !important;
    margin-bottom: 1.6rem !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .showcase-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    padding: 1.2rem !important;
    border: 1px solid #cbd5e1 !important;
    background: #f8fafc !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .card-soft, .f-box, .sector-item, .tech-card-item, .device-frame, .onboarding-flow-box, .roi-container-box {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  h1, h2, h3, h4 {
    color: #0f172a !important;
    page-break-after: avoid !important;
    break-after: avoid !important;
  }

  .hero-title span, .closing-title span {
    -webkit-text-fill-color: #1e40af !important;
  }

  p, li, td {
    color: #334155 !important;
  }

  .modern-table {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .modern-table th {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border-bottom: 2px solid #cbd5e1 !important;
  }

  .modern-table td {
    border-bottom: 1px solid #e2e8f0 !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .tech-pill-tag, .section-badge, .badge-tech, .sub-badge {
    border: 1px solid #cbd5e1 !important;
    color: #1e40af !important;
    background: #f8fafc !important;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN (TABLETS & SMARTPHONES)
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .quick-nav {
    gap: 1.1rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .cover-grid, .showcase-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .grid-2-col, .grid-3-col, .tech-grid-modern, .features-human-grid, .sector-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roi-interactive-grid {
    grid-template-columns: 1fr;
  }

  .timeline-workflow {
    grid-template-columns: repeat(2, 1fr);
  }

  .onboarding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav-desk-only {
    display: none !important;
  }
  .quick-nav {
    display: flex !important;
    gap: 12px;
  }
  .quick-nav .nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 3px 6px;
  }
  .quick-nav .nav-link:hover,
  .quick-nav .nav-link.active {
    color: #0284c7;
    font-weight: 700;
  }
  .mobile-only-btn {
    display: inline-flex !important;
  }
  .document-container {
    padding-top: 76px !important;
  }
}

@media (max-width: 768px) {
  .btn-text-hide-mobile {
    display: none !important;
  }
  .header-inner {
    padding: 0 0.85rem;
    height: 52px;
  }
  .quick-nav {
    display: flex !important;
    gap: 8px;
  }
  .quick-nav .nav-link {
    font-size: 0.78rem;
    padding: 2px 4px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-heading {
    font-size: 1.75rem;
  }
  .grid-2-col, .grid-3-col, .tech-grid-modern, .features-human-grid, .sector-cards-grid, .contact-card-modern, .timeline-workflow, .onboarding-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   POSTER LAYOUT STYLES (FLYER IDENTITY)
   ========================================================================== */
.brand-poster-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 9999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.12);
}

.poster-logo-x {
  font-size: 1.15rem;
  font-weight: 900;
  color: #38bdf8;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
  letter-spacing: -0.5px;
}

.poster-logo-tur {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.poster-logo-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--color-accent);
  padding-left: 8px;
  border-left: 1px solid rgba(56, 189, 248, 0.3);
}

.hero-title.poster-style {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.gradient-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.theme-dark .gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #67e8f9 50%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc.poster-desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 620px;
}

/* 6 Key Capabilities Badges Grid */
.poster-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 1.5rem 0;
}

.p-feat-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  animation: floatBadge 4.5s ease-in-out infinite;
}

.p-feat-item:nth-child(1) { animation-delay: 0s; }
.p-feat-item:nth-child(2) { animation-delay: 0.4s; }
.p-feat-item:nth-child(3) { animation-delay: 0.8s; }
.p-feat-item:nth-child(4) { animation-delay: 1.2s; }
.p-feat-item:nth-child(5) { animation-delay: 1.6s; }
.p-feat-item:nth-child(6) { animation-delay: 2.0s; }

.p-feat-item:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
  border-color: #38bdf8;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.22);
}

.p-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

body.theme-dark .p-feat-icon {
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
}

.p-feat-item:hover .p-feat-icon {
  background: #0284c7;
  color: #ffffff;
  transform: rotate(12deg) scale(1.1);
}

body.theme-dark .p-feat-item:hover .p-feat-icon {
  background: #38bdf8;
  color: #091124;
}

.p-feat-icon svg {
  width: 15px;
  height: 15px;
}

/* 6 Detection Capability Cards Matrix */
.detection-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1rem;
}

.det-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.det-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 16px 32px -8px rgba(14, 165, 233, 0.25);
}

.det-visual-box {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #081124;
}

.det-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.det-card:hover .det-thumb {
  transform: scale(1.07);
}

/* AI Targeting Frame overlay on hover */
.det-visual-box::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(56, 189, 248, 0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  transition: all 0.3s ease;
}

.det-card:hover .det-visual-box::before {
  border: 1.5px solid #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.det-tag-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}

.det-card:hover .det-tag-pill {
  transform: translateY(-2px);
}

.det-tag-pill svg {
  width: 13px;
  height: 13px;
}

.det-tag-pill.cyan { background: #0284c7; color: #fff; }
.det-tag-pill.blue { background: #2563eb; color: #fff; }
.det-tag-pill.amber { background: #d97706; color: #fff; }
.det-tag-pill.red { background: #dc2626; color: #fff; }
.det-tag-pill.rose { background: #e11d48; color: #fff; }
.det-tag-pill.navy { background: #1e3a8a; color: #fff; }

.det-info {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.det-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.det-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* 9 System Specifications Grid */
.poster-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.p-spec-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.p-spec-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 10px 24px -4px rgba(56, 189, 248, 0.22);
}

.p-spec-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

body.theme-dark .p-spec-icon-box {
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
}

.p-spec-card:hover .p-spec-icon-box {
  background: #0284c7;
  color: #ffffff;
  transform: scale(1.08) rotate(6deg);
}

body.theme-dark .p-spec-card:hover .p-spec-icon-box {
  background: #38bdf8;
  color: #091124;
}

.p-spec-icon-box svg {
  width: 20px;
  height: 20px;
}

.p-spec-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.p-spec-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 0;
}

/* Poster Card Wrap & Footer Pill */
.poster-card-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.poster-card-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -8px rgba(14, 165, 233, 0.3);
}

.poster-fit {
  object-fit: contain;
  width: 100%;
  background: #081124;
  display: block;
}

.poster-footer-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface);
  padding: 11px;
  border-top: 1px solid var(--bg-card-border);
}

.poster-footer-pill svg {
  width: 16px;
  height: 16px;
  color: #059669;
}

body.theme-dark .poster-footer-pill svg {
  color: #34d399;
}

/* Responsive Poster Adjustments & Mobile Portrait Optimization */
@media (max-width: 1024px) {
  .poster-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detection-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .poster-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .app-header {
    padding: 0;
  }
  .header-inner {
    padding: 0 0.85rem;
    height: 54px;
  }
  .view-toggle-group {
    display: none !important;
  }
  .brand-tag {
    display: none !important;
  }
  .btn-chip-export {
    padding: 4px 8px;
    font-size: 0.72rem;
  }
  .presentation-slide {
    padding: 2rem 1rem 2.5rem 1rem;
    min-height: auto;
  }
  .hero-title.poster-style {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  .section-heading {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  .poster-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .detection-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .poster-specs-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

/* SMARTPHONE PORTRAIT SPECIFIC OPTIMIZATION (iPhone, Android < 480px) */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 0.65rem;
  }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .brand-icon {
    width: 17px;
    height: 17px;
  }
  .brand-name {
    font-size: 0.98rem;
  }
  .action-icon-circle {
    width: 30px;
    height: 30px;
  }
  .btn-chip-export {
    padding: 3px 7px;
    font-size: 0.68rem;
    border-radius: 5px;
  }
  .presentation-slide {
    padding: 1.5rem 0.85rem 2rem 0.85rem;
  }
  .document-container {
    padding-top: 68px !important;
  }
  .quick-nav {
    gap: 6px;
  }
  .quick-nav .nav-link {
    font-size: 0.74rem;
    padding: 2px 3px;
  }
  .brand-poster-badge {
    padding: 4px 10px;
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 5px;
  }
  .poster-logo-x, .poster-logo-tur {
    font-size: 0.95rem;
  }
  .poster-logo-sub {
    font-size: 0.62rem;
    padding-left: 5px;
  }
  .hero-title.poster-style {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
  }
  .hero-desc.poster-desc {
    font-size: 0.84rem;
    line-height: 1.48;
  }
  .poster-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin: 1rem 0;
  }
  .p-feat-item {
    padding: 6px 7px;
    font-size: 0.7rem;
    gap: 5px;
  }
  .p-feat-icon {
    width: 22px;
    height: 22px;
  }
  .p-feat-icon svg {
    width: 12px;
    height: 12px;
  }
  .cover-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .cover-cta-row button {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.85rem;
  }
  .hero-signature {
    font-size: 0.7rem;
    margin-top: 0.75rem;
    text-align: center;
  }
  .hero-card-showcase {
    margin-top: 1.2rem;
  }
  .showcase-header {
    padding: 7px 10px;
    font-size: 0.68rem;
  }
  .status-live {
    font-size: 0.68rem;
  }
  .platform-link {
    font-size: 0.68rem;
  }
  .showcase-img-wrap {
    max-height: 210px;
  }
  .poster-fit {
    max-height: 210px;
    object-fit: contain;
  }
  .showcase-footer.poster-footer-pill {
    padding: 8px 10px;
    font-size: 0.72rem;
    line-height: 1.35;
  }
  .section-badge {
    font-size: 0.68rem;
    padding: 3px 8px;
    margin-bottom: 5px;
  }
  .section-heading {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 5px;
  }
  .section-subtext {
    font-size: 0.8rem;
    line-height: 1.42;
    margin-bottom: 1rem;
  }
  .detection-cards-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .det-card {
    border-radius: 10px;
  }
  .det-visual-box {
    height: 135px;
  }
  .det-tag-pill {
    font-size: 0.65rem;
    padding: 2px 7px;
    bottom: 7px;
    left: 7px;
  }
  .det-info {
    padding: 10px 12px;
  }
  .det-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  .det-info p {
    font-size: 0.76rem;
    line-height: 1.3;
  }
  .poster-specs-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .p-spec-card {
    padding: 9px 11px;
    border-radius: 9px;
    gap: 10px;
    align-items: center;
  }
  .p-spec-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }
  .p-spec-icon-box svg {
    width: 16px;
    height: 16px;
  }
  .p-spec-content h4 {
    font-size: 0.85rem;
  }
  .p-spec-content p {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 7px;
    margin: 0.4rem 0;
  }
  .modern-table th, .modern-table td {
    padding: 7px 9px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .dashboard-tabs-nav {
    gap: 5px;
    padding-bottom: 5px;
  }
  .dash-tab-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
  .card-soft {
    padding: 1rem 0.85rem;
  }
  .human-list li {
    font-size: 0.8rem;
  }
  .features-human-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .f-box {
    padding: 1rem 0.85rem;
  }
  .f-box h4 {
    font-size: 0.9rem;
  }
  .f-box p {
    font-size: 0.78rem;
  }
  .roi-calculator-box, .roi-results-box {
    padding: 0.85rem;
  }
  .roi-big-stat .roi-amount {
    font-size: 1.5rem;
  }
  .timeline-workflow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .timeline-node {
    padding: 9px 11px;
  }
  .timeline-node h4 {
    font-size: 0.85rem;
  }
  .timeline-node p {
    font-size: 0.74rem;
  }
  .onboarding-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .onboarding-step-card {
    padding: 1rem 0.85rem;
  }
}

/* ==========================================================================
   HIGH-TECH AI SURVEILLANCE ANIMATIONS SUITE
   ========================================================================== */

/* 1. Radar Ping on Live Status Dot */
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
  letter-spacing: 0.5px;
}

body.theme-dark .status-live {
  color: #34d399;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: radarPing 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes radarPing {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* 2. Laser Scanner Beam on Hero Showcase */
.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.showcase-img-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.6) 20%, #38bdf8 50%, rgba(56, 189, 248, 0.6) 80%, transparent 100%);
  box-shadow: 0 0 16px 3px rgba(56, 189, 248, 0.85);
  pointer-events: none;
  opacity: 0;
  animation: laserScan 4.5s ease-in-out infinite;
}

@keyframes laserScan {
  0% {
    top: -5%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 105%;
    opacity: 0;
  }
}

/* 3. Button Shimmer Light Wave */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: btnShine 4.2s infinite;
  pointer-events: none;
}

@keyframes btnShine {
  0% {
    left: -60%;
  }
  20% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

/* 4. Scroll Reveal Animations */
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 5. Ambient Background Pulse Glow on Hero */
.cover-hero {
  position: relative;
}

.cover-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(30, 64, 175, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientFloat 8s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-30px, 20px) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translate(20px, -20px) scale(0.95);
    opacity: 0.6;
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3.5px);
  }
}

/* ==========================================================================
   DYNAMIC CYBER SURVEILLANCE BACKGROUND (ANIMATED MESH & PARTICLES)
   ========================================================================== */
.cyber-bg-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background-color: var(--bg-body);
  transition: background-color var(--transition-smooth);
}

/* Subtle Cyber Grid Overlay with perspective/depth */
.cyber-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 35%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, black 40%, transparent 85%);
  opacity: 0.8;
  animation: gridDrift 20s linear infinite;
}

body.theme-light .cyber-grid-overlay {
  background-image: 
    linear-gradient(to right, rgba(2, 132, 199, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(2, 132, 199, 0.04) 1px, transparent 1px);
  opacity: 0.7;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 48px 48px;
  }
}

/* Drifting Glowing Luminous Orbs */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.bg-glow-orb.orb-1 {
  top: -10%;
  left: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

.bg-glow-orb.orb-2 {
  top: 45%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.20) 0%, rgba(79, 70, 229, 0.06) 50%, transparent 70%);
  filter: blur(100px);
  animation: orbFloat2 24s ease-in-out infinite alternate;
}

.bg-glow-orb.orb-3 {
  bottom: 5%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 70%);
  filter: blur(90px);
  animation: orbFloat3 21s ease-in-out infinite alternate;
}

.bg-glow-orb.orb-4 {
  top: 25%;
  left: 45%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(56, 189, 248, 0.04) 50%, transparent 70%);
  filter: blur(85px);
  animation: orbFloat1 26s ease-in-out infinite alternate-reverse;
}

body.theme-light .bg-glow-orb.orb-1 {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, rgba(14, 165, 233, 0.04) 50%, transparent 70%);
  filter: blur(60px);
}

body.theme-light .bg-glow-orb.orb-2 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.10) 0%, rgba(30, 64, 175, 0.03) 50%, transparent 70%);
  filter: blur(80px);
}

body.theme-light .bg-glow-orb.orb-3 {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.10) 0%, rgba(5, 150, 105, 0.03) 50%, transparent 70%);
  filter: blur(70px);
}

body.theme-light .bg-glow-orb.orb-4 {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, rgba(14, 165, 233, 0.02) 50%, transparent 70%);
  filter: blur(75px);
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.12); }
  100% { transform: translate(-40px, 90px) scale(0.95); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, -70px) scale(1.15); }
  100% { transform: translate(-50px, 60px) scale(0.9); }
}

@keyframes orbFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -50px) scale(1.1); }
  100% { transform: translate(-70px, -30px) scale(0.95); }
}

/* Interactive Canvas for AI Neural Network Nodes */
#cyberNetworkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   DETECTION CATEGORY FILTER CHIPS
   -------------------------------------------------------------------------- */
.det-filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.det-chip-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.det-chip-btn svg {
  width: 14px;
  height: 14px;
}

.det-chip-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.det-chip-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(30, 64, 175, 0.25);
}

.det-card.is-filtered-out {
  display: none !important;
}

/* --------------------------------------------------------------------------
   INDUSTRY & HARDWARE SOLUTION CATALOG (KATALOG SEKTOR & KAMERA)
   -------------------------------------------------------------------------- */
.katalog-nav-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.katalog-filter-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-card-border);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.katalog-filter-btn svg {
  width: 16px;
  height: 16px;
}

.katalog-filter-btn:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.katalog-filter-btn.active {
  background: linear-gradient(135deg, #1e40af, #0284c7);
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

/* Subgroup Header Blocks */
.katalog-subgroup-block {
  transition: opacity 0.3s ease;
}

.katalog-subgroup-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-card-border);
}

.katalog-subgroup-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.katalog-group-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.katalog-group-icon svg {
  width: 22px;
  height: 22px;
}

.katalog-group-icon.cyan {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.katalog-group-icon.blue {
  background: rgba(30, 64, 175, 0.12);
  color: #1e40af;
}

body.theme-dark .katalog-group-icon.cyan {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

body.theme-dark .katalog-group-icon.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.katalog-subgroup-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}

.katalog-subgroup-badge.cyan {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.katalog-subgroup-badge.blue {
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
}

body.theme-dark .katalog-subgroup-badge.cyan {
  background: rgba(56, 189, 248, 0.18);
  color: #7dd3fc;
}

body.theme-dark .katalog-subgroup-badge.blue {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
}

.katalog-subgroup-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.katalog-subgroup-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 4px 0 0 0;
}

/* Katalog Grid & Cards */
.katalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.katalog-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.katalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 18px 36px -10px rgba(2, 132, 199, 0.22);
}

.katalog-card.highlight-katalog {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

/* Card Media / Thumbnail */
.katalog-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #0f172a;
  cursor: zoom-in;
}

.katalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.katalog-card:hover .katalog-card-media img {
  transform: scale(1.06);
}

.katalog-media-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.katalog-media-tag.cyan { background: #0284c7; color: #fff; }
.katalog-media-tag.amber { background: #d97706; color: #fff; }
.katalog-media-tag.purple { background: #7c3aed; color: #fff; }
.katalog-media-tag.orange { background: #ea580c; color: #fff; }
.katalog-media-tag.emerald { background: #059669; color: #fff; }
.katalog-media-tag.blue { background: #1e40af; color: #fff; }
.katalog-media-tag.rose { background: #e11d48; color: #fff; }

/* Card Body Content */
.katalog-card-body {
  padding: 1.35rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.katalog-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.85rem;
}

.katalog-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.katalog-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.katalog-icon-wrap.blue { background: rgba(30, 64, 175, 0.12); color: #1e40af; }
.katalog-icon-wrap.amber { background: rgba(217, 119, 6, 0.12); color: #d97706; }
.katalog-icon-wrap.orange { background: rgba(234, 88, 12, 0.12); color: #ea580c; }
.katalog-icon-wrap.emerald { background: rgba(5, 150, 105, 0.12); color: #059669; }
.katalog-icon-wrap.rose { background: rgba(225, 29, 72, 0.12); color: #e11d48; }
.katalog-icon-wrap.purple { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }

body.theme-dark .katalog-icon-wrap.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
body.theme-dark .katalog-icon-wrap.amber { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
body.theme-dark .katalog-icon-wrap.orange { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
body.theme-dark .katalog-icon-wrap.emerald { background: rgba(16, 185, 129, 0.2); color: #34d399; }
body.theme-dark .katalog-icon-wrap.rose { background: rgba(244, 63, 94, 0.2); color: #fb7185; }
body.theme-dark .katalog-icon-wrap.purple { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }

.katalog-header-text h3 {
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.katalog-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}

.katalog-badge.blue { background: rgba(30, 64, 175, 0.09); color: #1e40af; }
.katalog-badge.amber { background: rgba(217, 119, 6, 0.09); color: #d97706; }
.katalog-badge.orange { background: rgba(234, 88, 12, 0.09); color: #ea580c; }
.katalog-badge.emerald { background: rgba(5, 150, 105, 0.09); color: #059669; }
.katalog-badge.rose { background: rgba(225, 29, 72, 0.09); color: #e11d48; }
.katalog-badge.purple { background: rgba(124, 58, 237, 0.09); color: #7c3aed; }

body.theme-dark .katalog-badge.blue { background: rgba(59, 130, 246, 0.18); color: #93c5fd; }
body.theme-dark .katalog-badge.amber { background: rgba(245, 158, 11, 0.18); color: #fde68a; }
body.theme-dark .katalog-badge.orange { background: rgba(249, 115, 22, 0.18); color: #fed7aa; }
body.theme-dark .katalog-badge.emerald { background: rgba(16, 185, 129, 0.18); color: #a7f3d0; }
body.theme-dark .katalog-badge.rose { background: rgba(244, 63, 94, 0.18); color: #fecdd3; }
body.theme-dark .katalog-badge.purple { background: rgba(139, 92, 246, 0.18); color: #ddd6fe; }

.katalog-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.katalog-feature-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
  padding: 10px 12px;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
}

.katalog-feature-tags span {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.35;
}

.katalog-feature-tags span svg {
  width: 14px;
  height: 14px;
  color: #10b981;
  flex-shrink: 0;
}

.katalog-spec-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--bg-card-border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.katalog-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 4px;
}

.katalog-spec-item .lbl {
  color: var(--text-muted);
}

.katalog-spec-item .val {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
}

.katalog-cta-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(2, 132, 199, 0.06));
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

body.theme-dark .katalog-cta-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(2, 132, 199, 0.12));
  border-color: rgba(56, 189, 248, 0.25);
}

.katalog-cta-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.katalog-cta-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

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

@media (max-width: 768px) {
  .katalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .katalog-card-media {
    height: 175px;
  }
  .katalog-nav-filters {
    gap: 8px;
  }
  .katalog-filter-btn {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
  .katalog-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }
}

/* Print rule: Completely disable background animation */
@media print {
  .cyber-bg-layer {
    display: none !important;
  }
}


