:root {
  --elysium-primary: #1a56db;
  --elysium-primary-dark: #1340a5;
  --elysium-primary-light: #e8f0fe;
  --elysium-accent: #0891b2;
  --elysium-accent-light: #ecfeff;
  --elysium-success: #059669;
  --elysium-warning: #d97706;
  --elysium-danger: #dc2626;
  --elysium-gray-50: #f9fafb;
  --elysium-gray-100: #f3f4f6;
  --elysium-gray-200: #e5e7eb;
  --elysium-gray-300: #d1d5db;
  --elysium-gray-400: #9ca3af;
  --elysium-gray-500: #6b7280;
  --elysium-gray-600: #4b5563;
  --elysium-gray-700: #374151;
  --elysium-gray-800: #1f2937;
  --elysium-gray-900: #111827;
  --sidebar-width: 250px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--elysium-gray-50);
  color: var(--elysium-gray-800);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  padding: 0.75rem 0;
  transition: all 0.3s;
}
.navbar-modern {
  background: linear-gradient(135deg, var(--elysium-primary) 0%, #0d3880 100%) !important;
  box-shadow: 0 2px 20px rgba(26, 86, 219, 0.3);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.navbar .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  border-radius: 0.375rem;
  transition: all 0.2s;
}
.navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--elysium-gray-900);
}

/* Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 1.25rem;
}
.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
}
.card-header {
  background: transparent;
  border-bottom: 1px solid var(--elysium-gray-100);
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
}
.card-body {
  padding: 1.25rem;
}

/* Stat Cards */
.stat-card {
  border-left: 4px solid var(--elysium-primary);
  border-radius: 0.75rem;
}
.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--elysium-gray-900);
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--elysium-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.stat-card.success { border-left-color: var(--elysium-success); }
.stat-card.warning { border-left-color: var(--elysium-warning); }
.stat-card.danger { border-left-color: var(--elysium-danger); }
.stat-card.accent { border-left-color: var(--elysium-accent); }

/* Sidebar */
.sidebar {
  min-height: calc(100vh - 60px);
  border-right: 1px solid var(--elysium-gray-200);
  background: #fff;
}
.sidebar .nav-link {
  color: var(--elysium-gray-600);
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  margin: 0.125rem 0.5rem;
  transition: all 0.2s;
  font-weight: 500;
}
.sidebar .nav-link i {
  margin-right: 0.625rem;
  width: 1.25rem;
  text-align: center;
  color: var(--elysium-gray-400);
  transition: color 0.2s;
}
.sidebar .nav-link:hover {
  background: var(--elysium-primary-light);
  color: var(--elysium-primary);
}
.sidebar .nav-link:hover i {
  color: var(--elysium-primary);
}
.sidebar .nav-link.active {
  background: var(--elysium-primary-light);
  color: var(--elysium-primary);
  font-weight: 600;
}
.sidebar .nav-link.active i {
  color: var(--elysium-primary);
}
.sidebar-heading {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--elysium-gray-400) !important;
  padding: 0 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Admin Sidebar (Dark) */
.sidebar-dark {
  background: var(--elysium-gray-900) !important;
  border-right: none;
}
.sidebar-dark .nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.sidebar-dark .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.sidebar-dark .nav-link:hover i { color: #fff; }
.sidebar-dark .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.sidebar-dark .nav-link.active i { color: #fff; }
.sidebar-dark .sidebar-heading {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Tables */
.table {
  margin-bottom: 0;
}
.table thead th {
  background: var(--elysium-gray-50);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--elysium-gray-500);
  border-bottom: 2px solid var(--elysium-gray-200);
  padding: 0.75rem 1rem;
  white-space: nowrap;
}
.table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--elysium-gray-100);
}
.table tbody tr {
  transition: background 0.15s;
}
.table tbody tr:hover {
  background: var(--elysium-gray-50);
}

/* Buttons */
.btn {
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--elysium-primary);
  border-color: var(--elysium-primary);
}
.btn-primary:hover {
  background: var(--elysium-primary-dark);
  border-color: var(--elysium-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}
.btn-outline-primary {
  border-color: var(--elysium-primary);
  color: var(--elysium-primary);
}
.btn-outline-primary:hover {
  background: var(--elysium-primary);
  border-color: var(--elysium-primary);
}
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 0.375rem;
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}

/* Form Controls */
.form-control, .form-select {
  border-radius: 0.5rem;
  border: 1.5px solid var(--elysium-gray-200);
  padding: 0.625rem 0.875rem;
  font-size: 0.9rem;
  transition: all 0.2s;
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--elysium-primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--elysium-gray-700);
  margin-bottom: 0.375rem;
}
.form-label.required::after {
  content: " *";
  color: var(--elysium-danger);
}

/* Badges */
.badge {
  font-weight: 500;
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* Alerts */
.alert {
  border-radius: 0.75rem;
  border: none;
  padding: 1rem 1.25rem;
}
.alert-success {
  background: #ecfdf5;
  color: #065f46;
}
.alert-danger {
  background: #fef2f2;
  color: #991b1b;
}
.alert-info {
  background: var(--elysium-accent-light);
  color: #0e7490;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--elysium-primary) 0%, #0d3880 50%, #1e3a5f 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}
.hero-section h1, .hero-section .lead, .hero-section p, .hero-section span, .hero-section small {
  color: #fff;
}
.hero-section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Pricing */
.pricing-card {
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.pricing-card .price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--elysium-gray-900);
  line-height: 1;
}
.pricing-card.popular {
  border: 2px solid var(--elysium-primary) !important;
  position: relative;
}
.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--elysium-primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Data Entry */
.form-entry-container {
  max-width: 800px;
  margin: 0 auto;
}
.form-section-header {
  background: var(--elysium-primary-light);
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  color: var(--elysium-primary);
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* Subject Matrix */
.matrix-cell {
  text-align: center;
  padding: 0.5rem 0.25rem;
}
.matrix-cell .status-icon {
  font-size: 1.25rem;
}

/* Field Builder */
.field-item {
  background: #fff;
  border: 1.5px solid var(--elysium-gray-200);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}
.field-item:hover {
  border-color: var(--elysium-primary);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.08);
}

/* Audit Timeline */
.audit-timeline {
  position: relative;
  padding-left: 2rem;
}
.audit-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--elysium-gray-200);
}
.audit-item {
  position: relative;
  padding-bottom: 1.5rem;
}
.audit-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.375rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--elysium-primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--elysium-primary-light);
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  padding: 2rem 1rem;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: none;
}
.auth-card .card-body {
  padding: 2.5rem;
}
.auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-logo i {
  font-size: 2.5rem;
  color: var(--elysium-primary);
}
.auth-logo h4 {
  margin-top: 0.75rem;
  font-weight: 700;
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2.5px solid rgba(26, 86, 219, 0.2);
  border-top-color: var(--elysium-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.footer-modern {
  background: var(--elysium-gray-900);
  color: rgba(255, 255, 255, 0.7);
}
.footer-modern h5, .footer-modern h6 {
  color: #fff;
}
.footer-modern a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-modern a:hover {
  color: #fff;
}

/* Page Headers */
.page-header {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--elysium-gray-200);
}
.page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Tabs */
.nav-tabs {
  border-bottom: 1px solid var(--elysium-gray-200);
}
.nav-tabs .nav-link {
  border: none;
  color: var(--elysium-gray-500);
  font-weight: 500;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.nav-tabs .nav-link:hover {
  color: var(--elysium-gray-700);
  border-bottom-color: var(--elysium-gray-300);
}
.nav-tabs .nav-link.active {
  color: var(--elysium-primary);
  border-bottom-color: var(--elysium-primary);
  background: transparent;
}

/* Page Headers with actions */
.page-header-with-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Tooltip enhancements */
[data-tooltip] {
  position: relative;
}

/* Modal */
.modal-content {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.modal-header {
  border-bottom: 1px solid var(--elysium-gray-100);
  padding: 1.25rem 1.5rem;
}
.modal-body {
  padding: 1.5rem;
}

/* Utility */
.text-gradient {
  background: linear-gradient(135deg, var(--elysium-primary), var(--elysium-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-primary-light { background-color: var(--elysium-primary-light) !important; }
.text-primary { color: var(--elysium-primary) !important; }
.bg-accent-light { background-color: var(--elysium-accent-light) !important; }
.text-accent { color: var(--elysium-accent) !important; }

/* Responsive */
@media (max-width: 767.98px) {
  .sidebar {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: -100%;
    z-index: 1040;
    width: 280px;
    transition: left 0.3s ease;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }
  .sidebar.show {
    left: 0;
  }
  .hero-section {
    padding: 3rem 0;
  }
  .hero-section h1 {
    font-size: 1.75rem;
  }
  .stat-card .stat-value {
    font-size: 1.5rem;
  }
}

/* ── Admin Panel Premium Theme ── */

/* Admin Navbar */
.navbar-admin {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  padding: 0 1.5rem;
  height: 60px;
}
.navbar-admin .navbar-brand {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.navbar-admin .navbar-brand i {
  color: #60a5fa;
}
.navbar-admin .dropdown-toggle {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.navbar-admin .dropdown-toggle:hover {
  color: #fff;
}

/* Admin Sidebar Premium */
.sidebar-dark {
  background: linear-gradient(180deg, #0f172a 0%, #1a2332 100%) !important;
  border-right: 1px solid rgba(255,255,255,0.05);
  width: var(--sidebar-width);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.sidebar-dark::-webkit-scrollbar { width: 4px; }
.sidebar-dark::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.sidebar-dark .sidebar-heading {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.5rem 1.25rem 0.5rem;
  font-weight: 700;
}
.sidebar-dark .nav-link {
  color: rgba(255,255,255,0.6);
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 0;
  margin: 0;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  font-weight: 400;
}
.sidebar-dark .nav-link i {
  margin-right: 0.75rem;
  width: 1.25rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
}
.sidebar-dark .nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-left-color: rgba(255,255,255,0.2);
}
.sidebar-dark .nav-link:hover i { color: #60a5fa; }
.sidebar-dark .nav-link.active {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border-left-color: #60a5fa;
  font-weight: 500;
}
.sidebar-dark .nav-link.active i { color: #60a5fa; }
.sidebar-dark .sidebar-divider {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0.75rem 1.25rem;
}

/* Admin Main Content Area */
.admin-content {
  padding: 1.5rem 2rem;
  min-height: calc(100vh - 60px);
  background: #f1f5f9;
}

/* Admin Page Header */
.admin-page-header {
  margin-bottom: 1.5rem;
}
.admin-page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}
.admin-page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
}
.admin-page-header .breadcrumb-item { color: #64748b; }
.admin-page-header .breadcrumb-item a { color: #64748b; text-decoration: none; }
.admin-page-header .breadcrumb-item a:hover { color: #1a56db; }
.admin-page-header .breadcrumb-item.active { color: #94a3b8; }

/* Admin Stat Cards Premium */
.admin-stat-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.admin-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.04;
  transform: translate(40px, -40px);
  pointer-events: none;
}
.admin-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.admin-stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.admin-stat-card .stat-icon.primary { background: #eff6ff; color: #2563eb; }
.admin-stat-card .stat-icon.success { background: #f0fdf4; color: #16a34a; }
.admin-stat-card .stat-icon.warning { background: #fffbeb; color: #d97706; }
.admin-stat-card .stat-icon.accent { background: #ecfeff; color: #0891b2; }
.admin-stat-card .stat-icon.danger { background: #fef2f2; color: #dc2626; }
.admin-stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.admin-stat-card .stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.admin-stat-card .stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.admin-stat-card .stat-trend.up { color: #16a34a; }
.admin-stat-card .stat-trend.down { color: #dc2626; }

/* Admin Table Premium */
.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.admin-table thead th {
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  padding: 0.875rem 1rem;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.admin-table td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  font-size: 0.875rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}
.admin-table tbody tr {
  transition: background 0.15s ease;
}
.admin-table tbody tr:hover {
  background: #f8fafc;
}
.admin-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-table .row-actions {
  white-space: nowrap;
  text-align: right;
}
.admin-table .row-actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  margin-left: 0.25rem;
  opacity: 0.7;
  transition: all 0.2s;
}
.admin-table .row-actions .btn:hover {
  opacity: 1;
}

/* Admin Cards Premium */
.admin-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.admin-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.admin-card .card-header {
  background: transparent;
  border-bottom: 1px solid #f1f5f9;
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card .card-body {
  padding: 1.5rem;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Dashboard Charts */
.dashboard-chart {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 1.5rem;
}
.dashboard-chart .chart-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

/* Progress Bar Chart (CSS-only) */
.progress-chart {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.progress-chart .progress-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.progress-chart .progress-item .label {
  width: 100px;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
  text-align: right;
}
.progress-chart .progress-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}
.progress-chart .progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.progress-chart .progress-value {
  width: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
}

/* Admin Activity Feed */
.activity-feed {
  list-style: none;
  padding: 0;
  margin: 0;
}
.activity-feed li {
  padding: 0.875rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.activity-feed li:last-child { border-bottom: none; }
.activity-feed .activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.activity-feed .activity-content {
  flex: 1;
  font-size: 0.85rem;
  color: #334155;
}
.activity-feed .activity-content strong {
  color: #0f172a;
  font-weight: 600;
}
.activity-feed .activity-time {
  font-size: 0.75rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Admin Quick Actions */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px dashed #e2e8f0;
  background: #fff;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  gap: 0.5rem;
  min-height: 100px;
}
.quick-action-btn:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}
.quick-action-btn i {
  font-size: 1.5rem;
}

/* Admin Badge Enhancements */
.badge-soft-primary { background: #eff6ff; color: #2563eb; }
.badge-soft-success { background: #f0fdf4; color: #16a34a; }
.badge-soft-warning { background: #fffbeb; color: #d97706; }
.badge-soft-danger { background: #fef2f2; color: #dc2626; }
.badge-soft-info { background: #ecfeff; color: #0891b2; }
.badge-soft-gray { background: #f1f5f9; color: #64748b; }

/* Auto-style admin page headers (existing h4 patterns) */
.admin-content > .d-flex.justify-content-between h4,
.admin-content > .mb-4 > h4,
.admin-content > div > h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Auto-premium existing Bootstrap elements within admin content */
.admin-content .table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}
.admin-content .table thead th {
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  padding: 0.875rem 1rem;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.admin-content .table td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}
.admin-content .table tbody tr { transition: background 0.15s ease; }
.admin-content .table tbody tr:hover { background: #f8fafc; }
.admin-content .card {
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.admin-content .card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.admin-content .card-header {
  background: transparent;
  border-bottom: 1px solid #f1f5f9;
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  color: #0f172a;
}
.admin-content .card-body { padding: 1.5rem; }
.admin-content .btn { border-radius: 0.5rem; font-weight: 500; font-size: 0.875rem; padding: 0.5rem 1rem; transition: all 0.2s ease; }
.admin-content .btn-sm { font-size: 0.8rem; padding: 0.375rem 0.75rem; }
.admin-content .btn-primary { background: #1a56db; border-color: #1a56db; }
.admin-content .btn-primary:hover { background: #1648c0; border-color: #1648c0; box-shadow: 0 4px 12px rgba(26,86,219,0.25); }
.admin-content .btn-success { background: #16a34a; border-color: #16a34a; }
.admin-content .btn-success:hover { box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.admin-content .btn-danger { background: #dc2626; border-color: #dc2626; }
.admin-content .btn-danger:hover { box-shadow: 0 4px 12px rgba(220,38,38,0.25); }
.admin-content .btn-outline-primary { border-color: #1a56db; color: #1a56db; }
.admin-content .btn-outline-primary:hover { background: #1a56db; color: #fff; }
.admin-content .form-control, .admin-content .form-select {
  border-radius: 0.5rem;
  border: 1.5px solid #e2e8f0;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.admin-content .form-control:focus, .admin-content .form-select:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.admin-content .alert { border-radius: 0.75rem; border: none; }
.admin-content .pagination .page-link { border-radius: 0.375rem; margin: 0 0.125rem; font-size: 0.85rem; color: #475569; border: 1px solid #e2e8f0; }
.admin-content .pagination .page-item.active .page-link { background: #1a56db; border-color: #1a56db; }

/* ── Multi-Step Form Wizard ── */

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  overflow-x: auto;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #94a3b8;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.step-circle.active {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26,86,219,0.15);
}
.step-circle.completed {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.step-circle.completed::after {
  content: '✓';
}
.step-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.3s ease;
}
.step-label.active { color: #1a56db; font-weight: 600; }
.step-label.completed { color: #16a34a; }
.step-connector {
  width: 40px;
  height: 2px;
  background: #e2e8f0;
  margin: 0 0.5rem;
  transition: background 0.3s ease;
  flex-shrink: 0;
}
.step-connector.completed { background: #16a34a; }

.step-panel {
  display: none;
  animation: stepFadeIn 0.3s ease;
}
.step-panel.active { display: block; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
}
.step-nav .btn { min-width: 120px; }

/* Patient survey step progress - cleaner variant */
.survey-steps {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.survey-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.3s ease;
}
.survey-dot.active { background: #1a56db; transform: scale(1.3); }
.survey-dot.completed { background: #16a34a; }

/* Admin Responsive */
@media (max-width: 767.98px) {
  .admin-content { padding: 1rem; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-page-header h1 { font-size: 1.25rem; }
}

/* ── Premium Visual Design System ── */

/* Gradient Mesh Background */
.bg-mesh {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,86,219,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(8,145,178,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(5,150,105,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.bg-mesh-dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,86,219,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(8,145,178,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0d1b3e 0%, #1a365d 50%, #0f2b4a 100%);
}

/* Hero Gradient v2 */
.hero-gradient {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a56db 40%, #0891b2 100%);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(26,86,219,0.3);
  top: -15%; left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(8,145,178,0.2);
  bottom: -20%; right: -5%;
  animation-delay: -7s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(99,102,241,0.15);
  top: 40%; right: 30%;
  animation-delay: -14s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* Floating Medical Icons */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.floating-icon {
  position: absolute;
  opacity: 0.08;
  animation: floatIcon 25s linear infinite;
}
.floating-icon i {
  font-size: 3rem;
  color: #fff;
}
.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-duration: 28s; }
.floating-icon:nth-child(2) { top: 60%; left: 8%; animation-duration: 22s; animation-delay: -5s; }
.floating-icon:nth-child(3) { top: 20%; right: 12%; animation-duration: 30s; animation-delay: -10s; }
.floating-icon:nth-child(4) { top: 70%; right: 5%; animation-duration: 24s; animation-delay: -3s; }
.floating-icon:nth-child(5) { top: 45%; left: 45%; animation-duration: 26s; animation-delay: -8s; }
.floating-icon:nth-child(6) { top: 5%; right: 40%; animation-duration: 20s; animation-delay: -12s; }
.floating-icon:nth-child(7) { bottom: 15%; left: 30%; animation-duration: 32s; animation-delay: -6s; }
@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Glassmorphism */
.glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
}
.glass-light {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.glass-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.glass-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.75);
}

/* Hero Glass Panel */
.hero-glass {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Feature Card Premium */
.feature-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--elysium-primary), var(--elysium-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
  border-color: rgba(26,86,219,0.10);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--elysium-primary-light), #dbeafe);
  color: var(--elysium-primary);
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--elysium-primary), var(--elysium-primary-dark));
  color: #fff;
  transform: scale(1.1) rotate(-3deg);
}
.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--elysium-gray-900);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--elysium-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* Stat Counter */
.stat-counter {
  text-align: center;
  padding: 1.5rem;
}
.stat-counter .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--elysium-primary), var(--elysium-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.stat-counter .stat-label {
  font-size: 0.85rem;
  color: var(--elysium-gray-500);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Price Card Premium */
.price-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.price-card.popular {
  border: 2px solid var(--elysium-primary);
  box-shadow: 0 8px 32px rgba(26,86,219,0.12);
  transform: scale(1.03);
  z-index: 1;
}
.price-card .popular-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--elysium-primary), var(--elysium-accent));
  color: #fff;
  text-align: center;
  padding: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.price-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}
.price-card .price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--elysium-gray-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Auth Split Layout */
.auth-split {
  min-height: 100vh;
  display: flex;
}
.auth-split-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}
.auth-split-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f8faff;
}
.auth-glass-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 420px;
  width: 100%;
}
.auth-glass-card .auth-logo i { color: rgba(255,255,255,0.9); }
.auth-glass-card .auth-logo h4 { color: #fff; }
.auth-glass-card .auth-logo p { color: rgba(255,255,255,0.7); }
.auth-glass-card .form-label { color: rgba(255,255,255,0.8); }
.auth-glass-card .form-control {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
}
.auth-glass-card .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.10);
}
.auth-glass-card .form-control::placeholder { color: rgba(255,255,255,0.4); }
.auth-glass-card .input-group-text {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.7);
}
.auth-glass-card a { color: rgba(255,255,255,0.8); }
.auth-glass-card a:hover { color: #fff; }
.auth-glass-card hr { border-color: rgba(255,255,255,0.15); }
.auth-glass-card .text-muted { color: rgba(255,255,255,0.6) !important; }

/* Hero Image Container */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-image-main {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero-image-float {
  position: absolute;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--elysium-gray-700);
  animation: floatBadge 6s ease-in-out infinite;
}
.hero-image-float:nth-child(2) { top: 10%; right: -10%; animation-delay: -2s; }
.hero-image-float:nth-child(3) { bottom: 15%; left: -10%; animation-delay: -4s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Section Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--elysium-primary), var(--elysium-accent));
  border-radius: 2px;
  margin: 0 auto 1rem;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Dot */
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  display: inline-block;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34,197,94,0.3);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Compliance Badge Strip */
.badge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
}
.badge-strip .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--elysium-gray-500);
  background: rgba(255,255,255,0.10);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.badge-strip .badge-item i {
  color: var(--elysium-accent);
  font-size: 1rem;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
}
.testimonial-card::before {
  content: '\201c';
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--elysium-primary);
  opacity: 0.10;
  font-family: Georgia, serif;
}

/* Navbar Premium */
.navbar-premium {
  background: rgba(13,27,62,0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 20px rgba(0,0,0,0.10);
}

/* Responsive Auth */
@media (max-width: 991.98px) {
  .auth-split { flex-direction: column; }
  .auth-split-left { min-height: 300px; padding: 3rem 2rem; }
  .auth-glass-card { padding: 2rem; }
}

@media (max-width: 767.98px) {
  .hero-image-float { display: none; }
  .stat-counter .stat-number { font-size: 2rem; }
  .glass-card { padding: 1.25rem; }
}

/* ── Redesigned Home Page Animations ── */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
    animation: fadeUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }

/* Print */
@media print {
  .sidebar, .navbar, footer { display: none; }
  main { margin-left: 0 !important; }
}
