:root{
  --text-dark:#FFFFFF; --muted-dark:#E5E7EB; --heading-dark:#FFFFFF; --link-dark:#60A5FA;
  --text-light:#374151; --muted-light:#6B7280; --heading-light:#111827; --link-light:#2563EB;
  
  /* Main brand colors - clean and professional */
  --primary: #2563EB; --secondary: #3B82F6; --tertiary: #60A5FA; --quaternary: #93C5FD;
  
  /* Additional colors */
  --blue:#45B7D1; --blue2:#4ECDC4; --accent:#2563EB; --green:#10B981; --warn:#F59E0B; --danger:#EF4444;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB; --gray-300: #D1D5DB; --gray-600: #4B5563; --gray-800: #1F2937;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*{box-sizing:border-box} 
html,body{height:100%; scroll-behavior: smooth;}

/* Professional Animation Framework */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), 0 0 30px rgba(37, 99, 235, 0.4);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
  opacity: 1;
}

.slide-up {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-down {
  animation: slideInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-right {
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in {
  animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.pulsing {
  animation: pulse 2s ease-in-out infinite;
}

body{
  margin:0;
  background: #FFFFFF;
  color: #1F2937;
  font:16px/1.6 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
  --text: #1F2937;
  --muted: #6B7280;
  --heading: #111827;
  --link: #2563EB;
}

/* AI Risk Score Styling */
.risk-critical { color: #dc2626; }
.risk-high { color: #ea580c; }
.risk-medium { color: #d97706; }
.risk-low { color: #059669; }

/* Urgency Level Styling */
.urgency-critical { background: #fecaca; color: #991b1b; }
.urgency-high { background: #fed7aa; color: #c2410c; }
.urgency-medium { background: #fde68a; color: #a16207; }
.urgency-low { background: #d1fae5; color: #065f46; }

img, video {
  max-width: 100%;
  height: auto;
}



a{color:var(--link);text-decoration:none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);} 
a:hover{text-decoration:none; color: var(--primary);}

h1, h2, h3, h4, h5, h6 { color: var(--heading); }
p, li, span, div { color: inherit; }

.container{max-width:1200px;margin:0 auto;padding:0 2rem; position: relative;}

.nav{
  position:sticky;top:0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  display:flex;gap:1rem;align-items:center;padding:1rem 2rem;
  z-index:100;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --text: var(--gray-800);
  --muted: var(--gray-600);
  --heading: var(--gray-800);
  --link: var(--primary);
  color: var(--gray-800);
  animation: slideInDown 0.8s ease-out;
}

.nav:hover {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(25px);
}

.brand{
  display:flex;gap:16px;align-items:center;
  font-weight:700;font-size:24px;letter-spacing:-0.5px;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

.brand:hover {
  color: var(--gray-900);
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Ensure high-quality image rendering */
.logo {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  image-rendering: optimizeQuality;
}


.tabs {display: flex; gap: 0.5rem;}
.tabs a{
  padding:12px 20px; 
  border-radius:8px; 
  color: var(--gray-600); 
  font-weight:500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.tabs a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  transition: width 0.3s ease;
}

.tabs a:hover::before,
.tabs a.active::before {
  width: 100%;
}

.tabs a:hover,
.tabs a.active {
  color: var(--primary);
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.tabs a:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

.btn{
  display:inline-block; 
  padding:12px 24px; 
  border-radius:8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color:#fff; 
  font-weight:600; 
  border:none; 
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px) scale(1.05);
  animation: glow 1.5s ease-in-out infinite alternate;
}

.btn:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

.btn.secondary {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-800);
  border: 1px solid var(--gray-300);
}

.btn.secondary:hover {
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Modern Animated Hero Section */
.hero {
  background: linear-gradient(135deg, var(--gray-50) 0%, #FFFFFF 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--heading-light);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--heading-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: 3rem;
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-video {
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
  animation: scaleIn 1s ease-out 0.8s both;
}

.hero-video:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-video iframe,
.hero-video video {
  width: 100%;
  max-width: 600px;
  height: 400px;
  transition: all 0.3s ease;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 1s both;
}

.hero-actions .btn:nth-child(1) {
  animation-delay: 1.2s;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 1.4s;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section.bg-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-light);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-header p.highlight {
  font-weight: 600;
  color: var(--primary);
  margin-top: 1.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
}

/* Remove decorative blobs on feature/pricing cards */
.feature-card,
.pricing-card,
.plans .card { 
  background-image: none !important; 
  position: relative; 
}
.feature-card::before,
.feature-card::after,
.pricing-card::before,
.pricing-card::after,
.plans .card::before,
.plans .card::after { 
  content: none !important; 
  display: none !important; 
  background: none !important; 
  box-shadow: none !important; 
}

/* Enforce on mobile where issue is reported */
@media (max-width: 768px) {
  .feature-card, .pricing-card, .plans .card { 
    background-image: none !important; 
  }
  .feature-card::before, .feature-card::after,
  .pricing-card::before, .pricing-card::after,
  .plans .card::before, .plans .card::after { 
    content: none !important; 
    display: none !important; 
  }
  
  /* Mobile text sizing fixes */
  .section-header h2 {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
    word-break: break-word;
    hyphens: auto;
    margin-bottom: 1rem !important;
  }
  
  .hero-title {
    font-size: 2.2rem !important;
  }
  
  .container {
    padding: 0 1rem !important;
  }
  
  /* Additional mobile text fixes */
  h1, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Mobile-optimized hover effects */
  .feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
  }
  
  .action-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
  }
  
  .action-card:hover .action-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  }
  
  .btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow);
  }
  
  .content-card:hover,
  .warning-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.03);
  border-color: var(--primary);
}

.feature-card:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-light);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-light);
  line-height: 1.5;
}

/* Content Cards */
.content-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
}

.content-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.content-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-card p.highlight {
  font-weight: 600;
  text-align: center;
  color: var(--primary);
  margin-top: 1.5rem;
}

/* Warning Card */
.warning-card {
  background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
}

.warning-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
  border-color: #F87171;
}

.warning-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 1.5rem;
}

.warning-card p {
  color: #7F1D1D;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

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

.comparison-table th {
  background: var(--gray-800);
  color: #FFFFFF;
  padding: 1.25rem;
  font-weight: 600;
  text-align: left;
}

.comparison-table th.highlight-col {
  background: var(--primary);
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: var(--gray-50);
  transform: scale(1.01);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comparison-table td.center {
  text-align: center;
  font-size: 1.25rem;
}

.comparison-table td.red { color: #DC2626; }
.comparison-table td.green { color: #059669; }
.comparison-table td.amber { color: #D97706; }

.comparison-table td.highlight-col {
  background: var(--gray-50);
  font-weight: 600;
}

/* Action Cards */
.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.action-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.action-card:hover .action-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.action-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-icon.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.action-icon.secondary {
  background: linear-gradient(135deg, var(--tertiary) 0%, var(--quaternary) 100%);
}

.action-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-light);
  margin-bottom: 1rem;
}

.action-card p {
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}


.card{
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

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

.card h1, .card h2, .card h3 {
  color: var(--heading);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.card h1 {font-size: 3rem;}
.card h2 {font-size: 2.5rem;}
.card h3 {font-size: 2rem;}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 16px 0;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card ul li:hover {
  background: var(--gray-50);
  border-radius: 8px;
  color: var(--text-light);
}

.card ul li::before {
  content: '✓';
  color: white;
  font-weight: 600;
  font-size: 12px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}


.grid{display:grid;gap:2.5rem;}
.grid.cols-4{grid-template-columns:repeat(4,1fr);}
.grid.cols-3{grid-template-columns:repeat(3,1fr);}
.grid.cols-2{grid-template-columns:repeat(2,1fr);}

@media (max-width:1024px){
  .grid.cols-4,.grid.cols-3{grid-template-columns:repeat(2,1fr);}
  .hero h1{font-size:3.5rem;}
  .container{padding:1.5rem;}
  
  /* Tablet text sizing */
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  /* Tablet hover effects */
  .feature-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
  
  .action-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}


.table{
  width:100%;border-collapse:collapse;font-size:14px; 
  border-radius: 8px; overflow: hidden; 
  box-shadow: var(--shadow-sm);
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
}

/* Explicit AI Triage Section Headings - Ultra Specific */
.ai-main-title,
.ai-header h2,
h2.ai-main-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  color: #FFFFFF !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  background: none !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.ai-section-title,
.ai-chat-section h3,
.action-buttons-section h3,
.chat-input-section h3,
h3.ai-section-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #374151 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
  background: none !important;
  -webkit-text-fill-color: #374151 !important;
}

.ai-case-subtitle,
.ai-header p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 8px 0 0 0 !important;
  color: #64748b !important;
  font-size: 14px !important;
  font-weight: normal !important;
  text-decoration: none !important;
  background: none !important;
}

.status-badge {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4) !important;
  color: white !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 12px rgba(255,107,107,0.3) !important;
}

/* Ensure headings are opaque and readable */
.card h1, .card h2, .card h3 {
  color: var(--heading) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  text-shadow: none !important;
}

/* Specific overrides for AI section */
.ai-header .ai-main-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
}

.ai-chat-section .ai-section-title,
.action-buttons-section .ai-section-title,
.chat-input-section .ai-section-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #374151 !important;
  color: #374151 !important;
}

.table th{
  background: var(--primary);
  font-weight: 600; color: white;
  padding: 16px;
  font-size: 14px;
}

.table th,.table td{padding:16px;border-bottom:1px solid var(--gray-200);text-align:left;}
.table tr:hover{
  background: var(--gray-50);
}
.table tbody tr:nth-child(even) {background: var(--gray-50);}
.table tbody tr:nth-child(odd) {background: #FFFFFF;}

.input,select,textarea{
  width:100%;padding:12px 16px;border-radius:8px;
  border:1px solid var(--gray-300);background:#FFFFFF;color:var(--text-light);
  transition: all 0.3s ease; font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.input:focus,select:focus,textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #FFFFFF;
}

.badge{
  padding:6px 12px;border-radius:6px;
  background: var(--primary);
  color: white; display:inline-block;font-size:12px;font-weight:600;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: var(--secondary);
}

.sidebar{
  width:300px;
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  border-radius:12px;height:fit-content;
  position:sticky;top:120px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.sidebar a{
  display:block;padding:18px 24px;border-radius:15px;
  color:var(--muted);margin:10px 16px; font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar a.active,.sidebar a:hover{
  background: var(--gray-50);
  color: var(--primary);
}

.layout{display:flex;gap:2.5rem;} .main{flex:1;}



/* ===== RESPONSIVE DESIGN - CLEAN & PROFESSIONAL ===== */

/* Tablet and Mobile Portrait (768px and below) */
@media (max-width: 768px) {
  /* Layout */
  .container {
    padding: 1rem;
    max-width: 100%;
  }
  
  .layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .main {
    order: 1;
    width: 100%;
  }
  
  /* Navigation - Mobile Optimized */
  .nav {
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Remove backdrop-filter on mobile for better performance */
    backdrop-filter: none;
    background: #FFFFFF;
    transition: box-shadow 0.2s ease;
  }
  
  .nav:hover {
    /* Disable hover animations on mobile */
    box-shadow: var(--shadow-sm);
  }
  
  /* Top row: Brand only */
  .nav > .brand {
    font-size: 18px;
    margin-bottom: 0;
    flex: 0 0 auto;
    align-self: flex-start;
  }
  
  .logo {
    height: 40px;
  }
  
  /* Hide spacer div on mobile */
  .nav > div[style*="flex:1"],
  .nav > div[style*="flex: 1"] {
    display: none !important;
  }
  
  /* Main tabs row - full width and scrollable */
  .nav > .tabs:first-of-type {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
  }
  
  .nav > .tabs:first-of-type::-webkit-scrollbar {
    display: none;
  }
  
  /* Action buttons row - wraps properly */
  .nav > .tabs:last-of-type {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .tabs a {
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    /* Simplified transitions on mobile */
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 8px;
    /* Ensure minimum touch target */
    min-width: 44px;
  }
  
  /* Navigation buttons - enhanced for mobile */
  .nav .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 44px;
    font-weight: 600;
    min-width: 120px;
    margin: 0;
    /* Ensure proper touch targets */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Sidebar */
  .sidebar {
    width: 100%;
    position: static;
    top: auto;
    order: 2;
    border-radius: 12px;
    padding: 0.5rem 0;
  }
  
  .sidebar a {
    margin: 6px 12px;
    padding: 12px 16px;
    font-size: 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
    /* Simplified transitions on mobile */
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1,
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* Cards - Mobile Optimized */
  .card {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    /* Disable hover animations on mobile */
    transform: none !important;
    transition: box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: none !important;
  }
  
  /* Disable card animations on mobile */
  .feature-card,
  .action-card {
    transform: none !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .feature-card:hover,
  .action-card:hover {
    transform: none !important;
  }
  
  .card h1 { font-size: 2rem; }
  .card h2 { font-size: 1.75rem; }
  .card h3 { font-size: 1.5rem; }
  
  /* Buttons - Enhanced Touch Targets */
  .btn {
    padding: 12px 20px;
    min-height: 44px;
    font-size: 14px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Disable transforms on mobile for better performance */
    transform: none !important;
  }
  
  .btn:hover {
    transform: none !important;
  }
  
  /* Disable button animations on mobile */
  .btn,
  .btn:hover,
  .btn:focus {
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  /* Forms */
  .input,
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
  }
  
  /* Grids */
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .action-cards {
    grid-template-columns: 1fr;
  }
  
  /* Tables */
  .comparison-table {
    overflow-x: auto;
  }
  
  /* Chat Widget - Mobile Optimized */
  .chat-modal {
    width: calc(100vw - 20px);
    height: 65vh;
    right: 10px;
    bottom: 90px;
    border-radius: 16px;
    /* Remove backdrop-filter on mobile for better performance */
    backdrop-filter: none;
    background: #FFFFFF;
    /* Disable slide animation on mobile */
    animation: none;
  }
  
  .chat-toggle {
    width: 60px;
    height: 60px;
    right: 15px;
    bottom: 15px;
    /* Disable animations on mobile */
    animation: none !important;
    transition: background-color 0.2s ease;
  }
  
  .chat-toggle:hover {
    transform: none !important;
  }
  
  /* AI Triage */
  .ai-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px;
  }
  
  .ai-header h2 {
    font-size: 18px !important;
  }
  
  .action-buttons-section div {
    flex-direction: column !important;
  }
  
  .action-buttons-section .btn {
    width: 100% !important;
    margin-bottom: 6px;
    font-size: 14px !important;
    padding: 12px 16px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .chat-input-section div {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  .chat-input-section button {
    width: 100% !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  #managerChatInput,
  #reporterQuickChatInput {
    font-size: 16px !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    min-height: 44px !important;
  }
  
  .ai-message,
  .user-message {
    font-size: 14px !important;
    padding: 10px 14px !important;
    max-width: 90%;
  }
  
  /* Button Groups */
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Disable additional animations on mobile */
  .kicker {
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
    background: rgba(107, 114, 128, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease;
    transform: none !important;
  }
  
  .kicker:hover {
    transform: none !important;
  }
  
  .flash {
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
  }
  
  /* Disable message animations on mobile */
  .message {
    animation: none !important;
  }
  
  .ai-message {
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
    background: #FFFFFF;
  }
  
  .chat-input-container {
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
    background: #FFFFFF;
  }
  
  .chat-input {
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
    background: #FFFFFF;
    /* Disable transform animations on mobile */
    transform: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .chat-input:focus {
    transform: none !important;
  }
  
  .chat-send {
    /* Disable transform animations on mobile */
    transform: none !important;
    transition: background-color 0.2s ease;
  }
  
  .chat-send:hover {
    transform: none !important;
  }
  
  .chat-close {
    /* Disable animations on mobile */
    transform: none !important;
    transition: background-color 0.2s ease;
  }
  
  .chat-close:hover {
    transform: none !important;
  }
  
  /* Responsive Flexbox */
  [style*="display: flex"] {
    flex-wrap: wrap !important;
  }
  
  [style*="gap: 10px"] {
    gap: 0.5rem !important;
  }
}

/* Very Small Screens (320px and below) - Ensure tab accessibility */
@media (max-width: 320px) {
  .container {
    padding: 0.5rem;
  }
  
  .nav {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  
  .nav > .tabs:first-of-type {
    /* Ensure main tabs remain scrollable on very small screens */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.25rem;
  }
  
  .tabs a {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 40px;
    min-width: 40px;
  }
  
  .nav .btn {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 40px;
    min-width: 100px;
  }
  
  .brand {
    font-size: 16px;
  }
  
  .logo {
    height: 32px;
  }
}

/* Mobile Phone Portrait (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0.75rem;
  }
  
  .nav {
    padding: 0.75rem;
  }
  
  .brand {
    font-size: 18px;
  }
  
  .card {
    padding: 1.25rem;
    border-radius: 10px;
  }
  
  .card h1 { font-size: 1.75rem; }
  .card h2 { font-size: 1.5rem; }
  .card h3 { font-size: 1.25rem; }
  
  .btn {
    padding: 12px 18px;
    min-height: 44px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Disable transforms on mobile */
    transform: none !important;
  }
  
  .btn:hover {
    transform: none !important;
  }
  
  .hero h1,
  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
  
  .chat-modal {
    width: calc(100vw - 16px);
    height: 60vh;
    right: 8px;
    bottom: 80px;
    border-radius: 12px;
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
    background: #FFFFFF;
    animation: none;
  }
  
  /* Footer optimizations on mobile */
  footer {
    /* Remove backdrop-filter on mobile */
    backdrop-filter: none;
    background: #FFFFFF;
  }
  
  footer::before {
    /* Disable gradient animation on mobile */
    animation: none;
    background: linear-gradient(90deg, #374151, #6B7280);
  }
  
  .price {
    /* Disable gradient animation on mobile */
    animation: none;
    background: var(--green);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--green);
  }
  
  .chat-toggle {
    width: 56px;
    height: 56px;
    right: 12px;
    bottom: 12px;
    /* Disable all animations on mobile */
    animation: none !important;
    transition: background-color 0.2s ease;
  }
  
  .chat-toggle:hover {
    transform: none !important;
  }
  
  .ai-message,
  .user-message {
    font-size: 13px !important;
    padding: 10px 12px !important;
  }
  
  .btn-group .btn {
    margin-bottom: 0.25rem;
    min-height: 44px;
  }
}

.kickers{display:flex;gap:16px;flex-wrap:wrap; margin: 2rem 0;}
.kicker{
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(107, 114, 128, 0.1));
  border:2px solid var(--blue2);padding:12px 24px;border-radius:50px;
  font-size:12px;color:var(--blue2); font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.kicker:hover {
  background: linear-gradient(135deg, #374151, #6B7280);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.flash{
  margin:2rem 0;padding:20px 24px;border-radius:20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  border:2px solid var(--green); color: #065f46;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  font-weight: 600;
}

footer {
  margin-top: 6rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #1F2937;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255,255,255,0.3);
  border-bottom: none;
  font-weight: 600;
  box-shadow: var(--shadow-tech);
  position: relative;
  overflow: hidden;
  --text: #1F2937;
  --muted: #6B7280;
  --heading: #111827;
  --link: #2563EB;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #374151, #6B7280, #9CA3AF, #6B7280);
  background-size: 400% 400%;
  animation: gradientShift 3s ease-in-out infinite;
}

/* Missing gradient animation keyframes */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pricing specific styles */
.price {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #4B5563, var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1.5rem 0;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Enhanced Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

.chat-toggle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #374151, #6B7280, #9CA3AF);
  background-size: 200% 200%;
  color: white; border: none; cursor: pointer;
  box-shadow: var(--shadow-tech);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 3s infinite, gradientShift 4s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: var(--shadow-tech); }
  50% { box-shadow: 0 0 0 15px rgba(107, 114, 128, 0.2), var(--shadow-tech); }
  100% { box-shadow: var(--shadow-tech); }
}

.chat-toggle:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 40px rgba(107, 114, 128, 0.4);
}

.chat-modal {
  position: absolute; bottom: 100px; right: 0;
  width: min(450px, calc(100vw - 24px));
  height: min(650px, 70vh);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(25px);
  border-radius: 30px;
  box-shadow: var(--shadow-tech);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --text: var(--text-light);
  --muted: var(--muted-light);
  --heading: var(--heading-light);
  --link: var(--link-light);
}

.chat-header {
  background: linear-gradient(135deg, #374151, #6B7280);
  color: white; padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
}

.chat-header h3 {
  margin: 0; font-size: 20px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
}

.chat-close {
  background: none; border: none; color: white;
  font-size: 32px; cursor: pointer; padding: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.3s ease;
}

.chat-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg) scale(1.1);
}

.chat-messages {
  flex: 1; padding: 24px; overflow-y: auto;
  background: var(--gray-50);
}

.message {
  margin-bottom: 20px; padding: 16px 20px;
  border-radius: 20px; line-height: 1.6;
  font-size: 15px; max-width: 85%;
  animation: messageSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ai-message {
  background: rgba(255,255,255,0.98);
  margin-right: auto;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
}

.user-message {
  background: linear-gradient(135deg, #374151, #6B7280);
  color: white;
  margin-left: auto;
  box-shadow: var(--shadow-lg);
}

.chat-input-container {
  padding: 24px; border-top: 2px solid var(--line);
  background: rgba(255,255,255,0.98); display: flex; gap: 16px;
  backdrop-filter: blur(20px);
}

.chat-input {
  flex: 1; padding: 16px 20px;
  border: 2px solid var(--line);
  border-radius: 25px; font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
}

.chat-input:focus {
  outline: none;
  border-color: var(--blue2);
  box-shadow: 0 0 0 4px rgba(107, 114, 128, 0.15);
  transform: translateY(-2px);
}

.chat-send {
  padding: 16px 24px;
  background: linear-gradient(135deg, #374151, #6B7280);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.chat-send:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Compliance Logos Section - Sliding Carousel */
.compliance-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}

.compliance-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compliance-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  height: 100px;
}

.compliance-logos {
  display: flex;
  align-items: center;
  animation: slideLogos 25s linear infinite;
  gap: 4rem;
  width: calc(12 * (140px + 4rem));
}

.compliance-logos:hover {
  animation-play-state: paused;
}

.compliance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 140px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.85;
  flex-shrink: 0;
}

.compliance-logo:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
  filter: none;
}

.compliance-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compliance-logo:hover img {
  filter: none;
  transform: scale(1.02);
}

/* Keyframe animation for sliding */
@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-6 * (140px + 4rem)));
  }
}

/* Responsive design for compliance logos */
@media (max-width: 768px) {
  .compliance-carousel {
    padding: 1.5rem 1rem;
    height: 80px;
  }
  
  .compliance-logos {
    gap: 3rem;
    animation-duration: 20s;
    width: calc(12 * (110px + 3rem));
  }
  
  .compliance-logo {
    height: 45px;
    min-width: 110px;
  }
  
  .compliance-logo img {
    max-width: 110px;
  }
  
  .compliance-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  /* Ultra-compact mobile navigation for phones */
  .nav {
    padding: 0.5rem 0.75rem;
    gap: 0.25rem;
  }
  
  .brand {
    font-size: 16px;
  }
  
  .logo {
    height: 35px;
  }
  
  .tabs a {
    padding: 6px 8px;
    font-size: 11px;
    min-height: 32px;
    border-radius: 6px;
  }
  
  .btn {
    padding: 6px 12px;
    font-size: 11px;
    min-height: 32px;
    border-radius: 6px;
  }
  
  .compliance-carousel {
    height: 60px;
  }
  
  .compliance-logos {
    gap: 2rem;
    animation-duration: 15s;
    width: calc(12 * (90px + 2rem));
  }
  
  .compliance-logo {
    height: 35px;
    min-width: 90px;
  }
  
  .compliance-logo img {
    max-width: 90px;
  }
}

/* ===== ADMIN NOTIFICATION SYSTEM ===== */

.admin-header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.notification-container {
  position: relative;
}

.notification-bell {
  position: relative;
  background: none;
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-bell:hover {
  background: var(--gray-100);
  color: var(--primary);
  transform: scale(1.05);
}

.notification-bell.has-notifications {
  color: var(--primary);
  animation: pulse 2s infinite;
}

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

.notification-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: var(--danger);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  min-width: 1.5rem;
  text-align: center;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.notification-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 420px;
  max-width: 90vw;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  max-height: 600px;
  overflow: hidden;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.notification-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
}

.mark-all-read {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.mark-all-read:hover {
  background: var(--gray-100);
}

.notification-filters {
  display: flex;
  padding: 0.75rem 1.5rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
  background: white;
}

.filter-btn {
  background: none;
  border: 1px solid var(--gray-300);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.notification-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
}

.notification-item {
  display: flex;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s ease;
  cursor: pointer;
}

.notification-item:hover {
  background: var(--gray-50);
}

.notification-item.unread {
  background: var(--blue-50, #f0f9ff);
  border-left: 4px solid var(--primary);
}

.notification-item.high-priority {
  border-left: 4px solid var(--danger);
}

.notification-item.low-priority {
  border-left: 4px solid var(--gray-400);
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.notification-message {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.notification-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.notification-category {
  background: var(--gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.category-critical .notification-category {
  background: var(--danger);
  color: white;
}

.category-new_report .notification-category {
  background: var(--primary);
  color: white;
}

.category-message .notification-category {
  background: var(--green);
  color: white;
}

.category-system .notification-category {
  background: var(--gray-600);
  color: white;
}

.notification-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.mark-read {
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mark-read:hover {
  background: var(--primary);
  color: white;
}

.notification-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.load-more {
  width: 100%;
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.load-more:hover {
  background: var(--primary);
  color: white;
}

.notification-loading, .notification-error, .no-notifications {
  text-align: center;
  padding: 2rem;
  color: var(--gray-500);
  font-style: italic;
}

.notification-error {
  color: var(--danger);
}

/* Responsive notifications */
@media (max-width: 768px) {
  .notification-dropdown {
    width: 320px;
    right: -50px;
  }
  
  .admin-header {
    padding: 1rem;
  }
  
  .notification-item {
    padding: 1rem;
  }
  
  .notification-filters {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}