@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #07090e;
  --bg-surface: rgba(13, 18, 30, 0.7);
  --bg-surface-hover: rgba(20, 28, 45, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(99, 102, 241, 0.4);
  
  --primary-color: #006ce6; /* Blue from logo */
  --primary-hover: #0056b3;
  --primary-glow: rgba(0, 108, 230, 0.25);
  
  --secondary-color: #2ebd59; /* Green from logo */
  --secondary-hover: #239a47;
  --secondary-glow: rgba(46, 189, 89, 0.25);
  
  --accent-color: #00cec9; /* Cyan */
  
  --success-color: #10b981; /* Emerald Green */
  --success-glow: rgba(16, 185, 129, 0.2);
  
  --warning-color: #f59e0b; /* Amber */
  --error-color: #ef4444; /* Red */
  
  --text-main: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --glass-blur: blur(16px);
}

/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 108, 230, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(46, 189, 89, 0.15) 0%, transparent 40%);
  background-attachment: fixed;
  padding-bottom: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: var(--glass-blur);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
}

.logo-sub {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  border-left: 1px solid var(--border-color);
  padding-left: 8px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-nav-demo {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}

.btn-nav-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
  padding: 40px 0 30px 0;
  text-align: center;
  position: relative;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero h1 span {
  background: linear-gradient(135deg, #818cf8, #c084fc, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

/* Pricing / Packages Grid */
.packages-section {
  padding: 20px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 16px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

/* Glass Card */
.package-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.package-card.basic::before {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.package-card.verified::before {
  background: linear-gradient(90deg, var(--secondary-color), #f43f5e);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

.package-card.basic:hover {
  box-shadow: 0 30px 60px -15px rgba(99, 102, 241, 0.15);
}

.package-card.verified:hover {
  box-shadow: 0 30px 60px -15px rgba(168, 85, 247, 0.15);
}

.badge-popular {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--secondary-color), #f43f5e);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.package-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.package-card.basic .package-name {
  color: var(--accent-color);
}

.package-card.verified .package-name {
  color: var(--secondary-color);
}

.package-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.package-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
  min-height: 48px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.features-list li strong {
  color: var(--text-main);
}

.features-list svg {
  width: 18px;
  height: 18px;
  color: var(--success-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-sectors {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: 20px;
}

.sectors-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.sectors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sector-tag {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--text-secondary);
}

.btn-card {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  margin-bottom: 24px;
}

.btn-card.basic {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-card.basic:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-card.verified {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-card.verified:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

/* Comparison Table */
.comparison-table-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  overflow-x: auto;
  backdrop-filter: var(--glass-blur);
  margin-top: 40px;
  box-shadow: var(--shadow-premium);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-main);
  font-size: 15px;
}

.comparison-table td {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.tech-badge {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 12px;
  display: inline-block;
}

.tech-badge.verified {
  background: rgba(168, 85, 247, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Simulation Section Dashboard */
.simulation-section {
  padding: 20px 0 60px 0;
  border-top: 1px solid var(--border-color);
}

.sim-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  min-height: 600px;
  box-shadow: var(--shadow-premium);
}

/* Simulator Sidebar */
.sim-sidebar {
  border-right: 1px solid var(--border-color);
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-menu-title {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sim-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 8px;
}

.sim-nav-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.sim-nav-btn.active {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  color: #fff;
  box-shadow: inset 0 0 10px rgba(99, 102, 241, 0.05);
}

.sim-nav-btn.active.verified-nav {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

.sim-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Step Stepper Component */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.stepper-progress {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1;
  transition: var(--transition-smooth);
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.step-node.active .step-circle {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
  background: var(--bg-dark);
}

.step-node.completed .step-circle {
  border-color: var(--success-color);
  background: var(--success-color);
  color: #fff;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step-node.active .step-label {
  color: var(--text-main);
}

.step-node.completed .step-label {
  color: var(--success-color);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Simulator Content Panels */
.sim-panels-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.sim-panel {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeIn 0.4s ease-out;
}

.sim-panel.active {
  display: flex;
}

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

.panel-header {
  margin-bottom: 8px;
}

.panel-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.panel-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Interactive Elements (Drag & Drop, OTP, Camera) */
.dropzone {
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.03);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.dropzone-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
}

.file-info {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 12px;
  width: 100%;
}

.file-icon {
  width: 32px;
  height: 32px;
  color: #f43f5e;
}

.file-details {
  flex-grow: 1;
  text-align: left;
}

.file-name {
  font-size: 14px;
  font-weight: 600;
}

.file-size {
  font-size: 12px;
  color: var(--text-muted);
}

/* OTP verification form */
.otp-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}

.otp-input {
  width: 48px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-dark);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition-smooth);
}

.otp-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Camera Simulation (Liveness Check) */
.camera-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 4px solid var(--border-color);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-premium);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.camera-wrapper.active-scanning {
  border-color: var(--secondary-color);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.webcam-feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  display: none;
}

.mock-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
  box-shadow: 0 0 8px var(--secondary-color);
  animation: scan 2s linear infinite;
  display: none;
  z-index: 5;
}

.scan-guideline {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.camera-wrapper.active-scanning .scan-guideline {
  border-color: rgba(168, 85, 247, 0.5);
  border-style: solid;
  animation: pulse 1.5s infinite;
}

@keyframes scan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1); opacity: 0.5; }
}

.scan-status {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.scan-status span {
  color: var(--secondary-color);
}

/* Certificate and Seal Display */
.success-screen {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-color);
  margin-bottom: 8px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.success-icon-wrapper.verified-theme {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
  color: var(--secondary-color);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.success-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.certificate-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.certificate-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.cert-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-color);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.cert-badge.verified-cert {
  background: rgba(168, 85, 247, 0.15);
  color: var(--secondary-color);
  border-color: rgba(168, 85, 247, 0.3);
}

.cert-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
}

.cert-label {
  color: var(--text-muted);
  font-weight: 500;
}

.cert-value {
  color: var(--text-main);
  font-weight: 600;
  font-family: monospace;
}

/* Action controls at bottom of panels */
.panel-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px var(--primary-glow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.btn-primary.verified-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 4px 12px var(--secondary-glow);
}

.btn-primary.verified-btn:hover {
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Form inputs styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
}

.verification-status-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 16px;
  border-radius: 12px;
  color: #a7f3d0;
  font-size: 14px;
  text-align: left;
  margin-top: 12px;
}

.verification-status-box.error-theme {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.verification-status-box svg {
  width: 20px;
  height: 20px;
  color: var(--success-color);
  flex-shrink: 0;
}

.verification-status-box.error-theme svg {
  color: var(--error-color);
}

/* Footer Section */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 80px;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

footer a:hover {
  color: var(--primary-color);
}

/* Loading animations */
.loading-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
  animation: loadingDot 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Liveness face match indicator */
.face-mesh-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.liveness-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.active-scanning .liveness-dot {
  opacity: 0.8;
  animation: blinkDot 1s infinite alternate;
}

@keyframes blinkDot {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0.9; }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .sim-container {
    grid-template-columns: 1fr;
  }
  .sim-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 24px;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
  }
  .sim-nav-btn {
    width: auto;
    white-space: nowrap;
    margin-bottom: 0;
  }
  .hero h1 {
    font-size: 38px;
  }
}
