@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --ui-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 4px 5px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  --ui-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --ui-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --ui-shadow-border: 1px solid rgba(0, 0, 0, 0.14);
  
  /* Modern Color Palette */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;
  
  --accent-400: #a855f7;
  --accent-500: #9333ea;
  --accent-600: #7c3aed;
  
  --success-400: #4ade80;
  --success-500: #22c55e;
  --success-600: #16a34a;
  
  --warning-400: #facc15;
  --warning-500: #eab308;
  --warning-600: #ca8a04;
  
  --error-400: #f87171;
  --error-500: #ef4444;
  --error-600: #dc2626;
  
  /* Additional colors for enhanced statistics page */
  --green-500: #10b981;
  --green-600: #059669;
  --yellow-500: #f59e0b;
  --red-500: #ef4444;
  --blue-500: #3b82f6;
  --purple-500: #8b5cf6;
  --primary-25: #f8fafc;
  
  /* Typography */
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  --font-family-mono: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Source Code Pro', monospace;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--secondary-800);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-sans);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--secondary-900);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

/* Layout Components */
#root-admin {
  display: block;
  min-height: 100vh;
}

#root-admin .View {
  margin-left: 260px;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 100vh;
  width: calc(100vw - 260px);
  box-sizing: border-box;
}

#root-main {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  min-height: 100vh !important;
  height: auto !important;
}

#root-main .View {
  flex: 1;
  padding: 0;
  background: transparent;
}

#root-main .View .Content {
  max-width: none;
  padding: 0;
  background: transparent;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.main-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.architecture-preview {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 500px;
}

.preview-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

.preview-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.diagram-node {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: var(--secondary-800);
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.node-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.node-label {
  font-size: 0.75rem;
  font-weight: 600;
}

.diagram-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
}

/* Trust Section */
.trust-section {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid var(--secondary-200);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-50);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-text {
  font-weight: 600;
  color: var(--secondary-800);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary-600);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background: var(--secondary-50);
  padding: 6rem 0;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--ui-shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-200);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ui-shadow-xl);
}

.benefit-card.card-featured {
  border: 2px solid var(--primary-500);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--secondary-200);
  color: var(--secondary-700);
  position: relative;
  padding-left: 1.5rem;
}

.card-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: bold;
}

.card-features li:last-child {
  border-bottom: none;
}

/* Process Section */
.process-section {
  background: white;
  padding: 6rem 0;
}

.process-timeline {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--secondary-50);
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.process-step:hover {
  background: var(--primary-50);
  transform: translateY(-4px);
}

.process-step.step-active {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
}

.process-step.step-active .step-title,
.process-step.step-active .step-description {
  color: white;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.step-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tech-tag {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.process-step.step-active .tech-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
}

.arrow-line {
  width: 30px;
  height: 2px;
  background: var(--secondary-300);
  position: relative;
}

.arrow-head {
  color: var(--secondary-500);
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: -10px;
}

/* Social Proof Section */
.social-proof-section {
  background: var(--secondary-900);
  color: white;
  padding: 6rem 0;
}

.social-proof-section .section-title {
  color: white;
}

.social-proof-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features-section {
  background: white;
  padding: 6rem 0;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--secondary-50);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-200);
}

.feature-card:hover {
  background: white;
  box-shadow: var(--ui-shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--secondary-600);
  line-height: 1.6;
}

/* Audience Section */
.audience-section {
  background: var(--secondary-50);
  padding: 6rem 0;
}

.audience-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.audience-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--ui-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-200);
}

.audience-card:hover {
  box-shadow: var(--ui-shadow-lg);
  transform: translateY(-6px);
}

.audience-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.audience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.audience-description {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.audience-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--secondary-200);
  color: var(--secondary-700);
  position: relative;
  padding-left: 1.5rem;
}

.audience-features li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-500);
  font-weight: bold;
}

.audience-features li:last-child {
  border-bottom: none;
}

/* Pricing Section */
.pricing-section {
  background: white;
  padding: 6rem 0;
}

.pricing-preview-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--secondary-50);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  border: 2px solid var(--secondary-200);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ui-shadow-xl);
}

.pricing-card.card-featured {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  border-color: var(--primary-600);
  transform: scale(1.05);
}

.pricing-card.card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
  opacity: 0.7;
}

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
}

.price-period {
  font-size: 1rem;
  opacity: 0.7;
}

.price-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 2rem;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: bold;
  font-size: 1.125rem;
}

.pricing-card.card-featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.card-featured .pricing-features li:before {
  color: white;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--secondary-900) 0%, var(--secondary-800) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-assurance {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.assurance-icon {
  color: var(--success-400);
  font-weight: bold;
}

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.button-secondary {
  background: white;
  color: var(--primary-600);
  border: 2px solid var(--primary-500);
}

.button-secondary:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.button-large {
  padding: 1.125rem 2rem;
  font-size: 1.125rem;
}

.button-text {
  display: inline-block;
}

.button-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.button:hover .button-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .main-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .benefits-grid,
  .features-grid,
  .audience-grid,
  .pricing-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    height: 40px;
    width: 60px;
    margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 60px;
    margin-top: 70px;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .benefits-grid,
  .features-grid,
  .audience-grid,
  .pricing-preview-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-container {
    grid-template-columns: 1fr;
  }
  
  .cta-assurance {
    flex-direction: column;
    gap: 1rem;
  }
  
  .benefit-card,
  .feature-card,
  .audience-card,
  .pricing-card {
    padding: 2rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-container,
  .trust-container,
  .benefits-grid,
  .features-grid,
  .audience-grid,
  .pricing-preview-grid,
  .stats-grid {
    padding: 0 1rem;
  }
  
  .benefit-card,
  .feature-card,
  .audience-card,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .button-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

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

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

.hero-content > * {
  animation: fadeInUp 0.8s ease-out;
}

.hero-content .hero-badge {
  animation-delay: 0.1s;
}

.hero-content .main-title {
  animation-delay: 0.2s;
}

.hero-content .hero-subtitle {
  animation-delay: 0.3s;
}

.hero-content .main-desc {
  animation-delay: 0.4s;
}

.hero-content .hero-stats {
  animation-delay: 0.5s;
}

.hero-content .hero-cta {
  animation-delay: 0.6s;
}

.hero-visual {
  animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

/* Accessibility improvements */
.button:focus,
.trust-item:focus,
.benefit-card:focus,
.feature-card:focus,
.audience-card:focus,
.pricing-card:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-section {
    background: white !important;
    color: black !important;
  }
  
  .social-proof-section,
  .final-cta-section {
    background: white !important;
    color: black !important;
  }
  
  .button {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }
}

/* Modern Navigation Styles */
.modern-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--secondary-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.modern-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--ui-shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-600);
  letter-spacing: 0.01em;
}

.logo-dot {
  color: var(--accent-500);
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--secondary-500);
  font-weight: 500;
  margin-left: 0.5rem;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--secondary-700);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  color: var(--secondary-700);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-login:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.nav-signup:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cta-icon {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.nav-signup:hover .cta-icon {
  transform: translateX(4px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary-100);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--secondary-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--secondary-200);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-600);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: var(--secondary-100);
  color: var(--secondary-800);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex: 1;
}

.mobile-nav-link {
  color: var(--secondary-700);
  font-weight: 500;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
  color: var(--primary-700);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--secondary-200);
}

.mobile-cta-login {
  color: var(--secondary-700);
  font-weight: 500;
  text-decoration: none;
  padding: 1rem;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--secondary-300);
  transition: all 0.3s ease;
}

.mobile-cta-login:hover {
  border-color: var(--primary-500);
  color: var(--primary-600);
  background: var(--primary-50);
}

.mobile-cta-signup {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.mobile-cta-signup:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Adjust hero section for fixed nav */
.hero-section {
  margin-top: 80px;
  padding-top: 120px;
}

/* Navigation responsive design */
@media (max-width: 1024px) {
  .logo-tagline {
    display: none;
  }
  
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    height: 70px;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .mobile-nav-content {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 60px;
  }
  
  .hero-section {
    margin-top: 60px;
    padding: 20px 0 40px;
  }
  
  .mobile-nav-content {
    width: 100%;
    max-width: none;
  }
}

/* Legacy styles for other pages */
.data-table {
  border-radius: 12px;
  overflow: hidden;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  font-family: var(--font-family-sans);
  min-width: 400px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  flex: 0;
  background: white;
  width: 100%;
  border: 1px solid var(--secondary-200);
}

.data-table thead tr {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--secondary-200);
  font-weight: 500;
}

.data-table th {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  padding: 1.25rem 1.25rem;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--secondary-200);
}

.data-table tbody tr {
  transition: all 0.2s ease;
}

.data-table tbody tr:nth-of-type(even) {
  background-color: #f8fafc;
}

.data-table tbody tr:hover {
  background-color: #f1f5f9;
  transform: translateX(2px);
}

.data-table td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--secondary-700);
  border-bottom: 1px solid var(--secondary-200);
  vertical-align: middle;
}

.data-table th {
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
}

.data-table tbody tr:last-of-type {
  border-bottom: none;
}

.data-table tbody tr.active-row {
  font-weight: bold;
  color: var(--primary-600);
  background-color: var(--primary-50);
}

.job-icon {
  height: 20px;
  transition: all 0.3s ease;
}

.job-icon.inactive {
  opacity: 0.5;
  pointer-events: none;
}

/* Action buttons and icons */
.data-table .actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.data-table .action-btn {
  padding: 0.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.data-table .action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-table .action-btn.view {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.data-table .action-btn.edit {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.data-table .action-btn.delete {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.data-table .action-btn.stats {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.stopped {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}

.status-badge.running {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
}

.status-badge.pending {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}

.job-start-time,
.job-end-time {
  text-align: center;
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
}

textarea.job-start,
textarea.ticket-create {
  height: 150px;
  width: 100%;
  max-width: 700px;
  padding: 1rem;
  border: 2px solid var(--secondary-300);
  border-radius: 12px;
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  resize: vertical;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea.job-start:focus,
textarea.ticket-create:focus {
  border-color: var(--primary-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

#root-admin input,
#root-admin textarea,
#root-admin select {
  border-radius: 12px;
  border: 2px solid var(--secondary-300);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#root-admin input:focus,
#root-admin textarea:focus,
#root-admin select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Form styling improvements */
#root-admin form {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
}

#root-admin .form-group {
  display: grid;
  gap: 0.5rem;
}

#root-admin label {
  font-weight: 600;
  color: var(--secondary-700);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#root-admin input[type="text"],
#root-admin input[type="email"],
#root-admin input[type="tel"],
#root-admin textarea,
#root-admin select {
  padding: 1rem;
  border: 2px solid var(--secondary-300);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: var(--font-family-sans);
}

#root-admin input[type="file"] {
  padding: 0.75rem;
  border: 2px dashed var(--secondary-300);
  border-radius: 12px;
  background: var(--secondary-50);
  transition: all 0.3s ease;
}

#root-admin input[type="file"]:hover {
  border-color: var(--primary-400);
  background: var(--primary-50);
}

#root-admin button[type="submit"],
#root-admin .submit-button {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  justify-self: start;
}

#root-admin button[type="submit"]:hover,
#root-admin .submit-button:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.training-info {
  padding-top: 20px;
  background: var(--secondary-50);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.api-table {
  width: 100%;
  margin: 2rem 0;
}

.api-endpoint-info {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--secondary-200);
}

#root-admin .api-server-info {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--secondary-200);
}

#root-admin .api-server-info h2 {
  color: var(--secondary-900);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#root-admin .api-server-info h2::before {
  content: '🌐';
  font-size: 1.25rem;
}

#root-admin .api-server-info h3::before {
  content: '🔑';
  font-size: 1rem;
}

.apiRow {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--secondary-200);
}

.apiCol {
  flex: 1;
  padding: 0 0.5rem;
}

.profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--secondary-200);
  margin: 2rem 0;
  align-items: start;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  border: 4px solid var(--primary-200);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  grid-column: 3;
  grid-row: 1 / -1;
}

.profileInfo {
  grid-column: 1 / 3;
  display: grid;
  gap: 2rem;
}

#root-admin .profile h3 {
  color: var(--secondary-900);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-500);
  position: relative;
}

#root-admin .profile h3::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
  border-radius: 2px;
}

/* Profile data table improvements */
#root-admin .profile .data-table {
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#root-admin .profile .data-table th {
  background: var(--secondary-100);
  color: var(--secondary-700);
  font-weight: 600;
  padding: 1rem;
}

#root-admin .profile .data-table td {
  padding: 1rem;
  font-weight: 500;
}

.FuzzingContentTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.FuzzingContentJobsHeader {
  background: var(--primary-500);
  color: white;
  padding: 1rem;
  border-radius: 8px 8px 0 0;
}

.FuzzingContentJobsRow {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--secondary-200);
}

.FuzzingContentJobsCol {
  flex: 1;
  padding: 0 0.5rem;
}

.FuzzingContentTable {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ui-shadow);
}

.Content-White {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--ui-shadow);
  margin: 0;
}

#root-admin .Content-White {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--secondary-200);
  margin-bottom: 2rem;
}

#root-admin .title {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--secondary-200);
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--secondary-200);
}

#root-admin .title h1 {
  margin: 0;
  font-size: 2.5rem;
  color: var(--secondary-900);
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary-900) 0%, var(--primary-600) 100%);
  -webkit-background-clip: text;
  /*-webkit-text-fill-color: transparent;*/
  background-clip: text;
}

#root-admin .title h2 {
  margin: 0.5rem 0 0 0;
  font-size: 1.5rem;
  color: var(--secondary-900);
  font-weight: 600;
}

#root-admin .title h3 {
  margin: 1rem 0 0 0;
  font-size: 1.125rem;
  color: var(--secondary-600);
  font-weight: 500;
}

/* Title header with icon styling */
.title-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.title-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.2s ease;
}

.title-icon:hover {
  transform: scale(1.05);
}

.title-text {
  flex: 1;
}

.title-text h1 {
  margin: 0;
  padding-left: 0;
}

.title-text .section-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Training page specific styles */
#root-admin .training-info {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--secondary-200);
  position: relative;
}

#root-admin .training-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 16px 16px 0 0;
}

#root-admin .training-info h2 {
  color: var(--secondary-900);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#root-admin .training-info h2::before {
  content: '📚';
  font-size: 1.25rem;
}

#root-admin .training-info h3 {
  color: var(--primary-600);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#root-admin .training-info p {
  color: var(--secondary-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Integration section styling */
#root-admin .training-info:last-of-type h2::before {
  content: '🔗';
}

/* Dashboard and Home page styling */
#root-admin .home-container {
  display: grid;
  gap: 2rem;
  margin: 0;
}

/* Home page welcome section styling */
.Content-White .title.home-title {
  background: linear-gradient(135deg, white 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--secondary-200);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.Content-White .title.home-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--primary-600));
  border-radius: 20px 20px 0 0;
}

.Content-White .title.home-title h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary-900) 0%, var(--primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

#root-admin .welcome-subtitle {
  font-size: 1.125rem;
  color: var(--secondary-600);
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

#root-admin .DashTip {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
  position: relative;
  overflow: hidden;
}

#root-admin .DashTip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
  border-radius: 20px 20px 0 0;
}

#root-admin .DashTipTitle {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#root-admin .DashTipTitle::before {
  content: '💡';
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

#root-admin .DashTipContent {
  color: var(--primary-800);
  line-height: 1.7;
  font-weight: 500;
  font-size: 1rem;
}

/* Stats grid for dashboard */
#root-admin .PageModalStatRow {
  margin: 0;
}

#root-admin .PageModalStatBoxTitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 2rem;
  text-align: left;
  position: relative;
  padding-left: 1rem;
}

#root-admin .PageModalStatBoxTitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-500), var(--accent-500));
  border-radius: 2px;
}

#root-admin .PageModalStatBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

#root-admin .PageModalStat {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--secondary-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

#root-admin .PageModalStat:nth-child(1) {
  animation-delay: 0.1s;
}

#root-admin .PageModalStat:nth-child(2) {
  animation-delay: 0.2s;
}

#root-admin .PageModalStat:nth-child(3) {
  animation-delay: 0.3s;
}

#root-admin .PageModalStat:nth-child(4) {
  animation-delay: 0.4s;
}

#root-admin .PageModalStat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#root-admin .PageModalStat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

#root-admin .PageModalStat:hover::before {
  opacity: 1;
}

#root-admin .PageModalStat:nth-child(1) .PageModalContent {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#root-admin .PageModalStat:nth-child(2) .PageModalContent {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#root-admin .PageModalStat:nth-child(3) .PageModalContent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#root-admin .PageModalStat:nth-child(4) .PageModalContent {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#root-admin .PageModalContent {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1;
}

#root-admin .PageModalTitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Dashboard responsive design */
@media (max-width: 1024px) {
  #root-admin .PageModalStatBox {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  #root-admin .PageModalStat {
    padding: 2rem;
  }
  
  #root-admin .PageModalContent {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  #root-admin .PageModalStatBox {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  #root-admin .welcome-section {
    padding: 2rem;
  }
  
  #root-admin .welcome-section h1 {
    font-size: 2rem;
  }
  
  #root-admin .welcome-subtitle {
    font-size: 1rem;
  }
  
  #root-admin .DashTip {
    padding: 1.5rem;
  }
  
  #root-admin .DashTipTitle {
    font-size: 1.25rem;
  }
}

/* Navigation styles */
.VertNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

/* Hide mobile toggle on desktop */
.mobile-nav-toggle {
  display: none;
}

.NavButtons {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.75rem;
  flex: 1;
  overflow-y: auto;
}

.nav-logout {
  margin-top: auto;
  padding: 0 0.75rem 0.75rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.NavButton {
  padding: 0.75rem 1rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 44px;
}

.NavButton a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.NavButton:hover,
.NavButton:focus {
  background: rgba(59, 130, 246, 0.12);
  color: white;
  transform: translateX(3px);
}

.NavButton:hover::before {
  opacity: 1;
}

.NavButton::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-400), var(--primary-600));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.NavButton .icon {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.NavButton:hover .icon {
  opacity: 1;
}

.nav-logout .NavButton {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.nav-logout .NavButton:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.nav-logout .NavButton:hover::before {
  background: linear-gradient(180deg, #f87171, #ef4444);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logodot {
  color: #8b5cf6;
  font-size: 1.5rem;
  font-weight: 800;
}

.VertLogo {
  text-align: center;
  margin-bottom: 1rem;
  padding: 1.5rem 1rem 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  flex-shrink: 0;
}

.VertLogo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
  border-radius: 2px;
}

/* Navigation footer */
.nav-footer {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  flex-shrink: 0;
}

/* Admin page loading state */
#root-admin .View::before {
  content: '';
  position: fixed;
  top: 0;
  left: 260px;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  z-index: 999;
  opacity: 0;
  animation: pageLoad 1s ease-out;
}

@keyframes pageLoad {
  0% {
    opacity: 1;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

.Message {
  background: linear-gradient(135deg, var(--secondary-50), var(--secondary-100));
  border-left: 4px solid var(--primary-500);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideInFromLeft 0.5s ease-out;
}

.Message .Title {
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

.Message .Details {
  color: var(--secondary-700);
  line-height: 1.6;
}

.Message.success {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-left-color: #10b981;
  color: #166534;
}

.Message.error {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-left-color: #ef4444;
  color: #991b1b;
}

.Message.warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-left-color: #f59e0b;
  color: #92400e;
}

/* Additional component styles for improved .pug files */

/* Profile section improvements */
.profile-section {
  margin-bottom: 2rem;
}

/* Form improvements */
.form-container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.form-description {
  color: var(--secondary-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-help {
  font-size: 0.875rem;
  color: var(--secondary-500);
  margin-top: 0.5rem;
}

/* API page improvements */
.api-description {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.api-key {
  background: var(--secondary-100);
  padding: 0.5rem;
  border-radius: 8px;
  font-family: var(--font-family-mono);
}

.copy-btn {
  background: var(--primary-500);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-left: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--primary-600);
}

.copy-btn.copied {
  background: var(--success-500);
}

.method-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.method-badge.get { background: #dcfce7; color: #166534; }
.method-badge.post { background: #dbeafe; color: #1e40af; }
.method-badge.put { background: #fef3c7; color: #92400e; }
.method-badge.delete { background: #fee2e2; color: #991b1b; }

/* Stats page improvements */
.stats-description {
  color: var(--secondary-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.stats-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stats-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-200);
}

.stats-count {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.no-data {
  color: var(--secondary-400);
  font-style: italic;
}

.stats-help {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.stats-help ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.stats-help li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Logs page improvements */
.logs-header {
  margin-bottom: 2rem;
}

.logs-description {
  color: var(--secondary-600);
  line-height: 1.6;
}

.logs-container {
  background: var(--secondary-900);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  overflow-x: auto;
}

.log-content {
  color: #00ff00;
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  white-space: pre-wrap;
}

.logs-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.logs-help {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
}

/* Error page improvements */
.error-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.error-actions {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  text-align: left;
}

.error-suggestions {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.error-suggestions li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Training page improvements */
.section-intro {
  color: var(--secondary-600);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

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

.service-badge {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-content {
  line-height: 1.6;
}

.service-features, .service-benefits {
  margin: 2rem 0;
}

.service-features h4, .service-benefits h4 {
  color: var(--secondary-800);
  margin-bottom: 1rem;
}

.service-features ul, .service-benefits ul {
  padding-left: 1.5rem;
}

.service-features li, .service-benefits li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.service-contact {
  background: var(--secondary-50);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* About page improvements */
.lead-text {
  font-size: 1.25rem;
  color: var(--secondary-600);
  line-height: 1.6;
  text-align: center;
  margin: 2rem 0 3rem;
}

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  padding: 1.5rem;
  background: var(--secondary-50);
  border-radius: 12px;
}

.benefits-list {
  padding-left: 0;
  list-style: none;
}

.benefits-list li {
  padding: 1rem;
  margin: 0.5rem 0;
  background: var(--secondary-50);
  border-radius: 8px;
  line-height: 1.6;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tech-item {
  padding: 1rem;
  background: var(--secondary-50);
  border-radius: 8px;
  text-align: center;
}

/* Contact page improvements */
.contact-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-top: 1rem;
  line-height: 1.8;
}

.contact-form-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.business-info {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 16px;
  margin: 3rem 0;
  text-align: center;
}

.business-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Billing page improvements */
.billing-overview {
  text-align: center;
  margin-bottom: 3rem;
}

.billing-description {
  color: var(--secondary-600);
  font-size: 1.125rem;
  line-height: 1.6;
}

.billing-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.billing-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-card {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-600);
  margin: 1rem 0;
}

.plan-features {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.plan-features li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.payment-method {
  font-family: var(--font-family-mono);
  background: var(--secondary-100);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.support-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Pricing page improvements */
.pricing-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-faq {
  margin: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-cta {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
}

/* API page improvements */
.section-subtitle {
  color: var(--secondary-600);
  font-size: 1.125rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.api-server-info,
.api-user-info,
.api-documentation {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  border: 1px solid var(--secondary-200);
}

.api-server-info h2,
.api-user-info h2,
.api-documentation h2 {
  color: var(--secondary-900);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.api-description {
  color: var(--secondary-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.api-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-card {
  background: var(--secondary-50);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-200);
  transition: all 0.3s ease;
}

.info-card:hover {
  background: var(--secondary-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-icon {
  font-size: 1.25rem;
}

.info-title {
  font-weight: 600;
  color: var(--secondary-800);
  font-size: 0.875rem;
}

.info-value {
  font-size: 1rem;
  color: var(--secondary-900);
  font-weight: 500;
}

.credentials-section {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-200);
  margin: 2rem 0;
}

.credential-item {
  margin-bottom: 2rem;
}

.credential-item label {
  display: block;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.credential-value {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.credential-status {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.status-info,
.expiry-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-label,
.expiry-label {
  font-weight: 500;
  color: var(--secondary-700);
  font-size: 0.875rem;
}

.loading-content {
  text-align: center;
  padding: 3rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--secondary-200);
  border-top: 4px solid var(--primary-500);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-message {
  background: var(--error-50);
  color: var(--error-700);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--error-200);
  text-align: center;
}

.endpoints-container {
  margin-top: 2rem;
}

.api-key {
  background: var(--secondary-100);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  color: var(--secondary-800);
  border: 1px solid var(--secondary-300);
  margin-right: 1rem;
  word-break: break-all;
}

.copy-btn {
  background: var(--primary-500);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.copy-btn:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}

.copy-btn.copied {
  background: var(--success-500);
}

.method-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-badge.get {
  background: var(--success-100);
  color: var(--success-700);
  border: 1px solid var(--success-200);
}

.method-badge.post {
  background: var(--primary-100);
  color: var(--primary-700);
  border: 1px solid var(--primary-200);
}

.method-badge.put {
  background: var(--warning-100);
  color: var(--warning-700);
  border: 1px solid var(--warning-200);
}

.method-badge.delete {
  background: var(--error-100);
  color: var(--error-700);
  border: 1px solid var(--error-200);
}

.endpoint-loading {
  text-align: center;
  padding: 2rem;
  color: var(--secondary-600);
}

.endpoint-loading .error {
  color: var(--error-600);
  font-weight: 500;
}

#api-endpoints-table {
  margin-top: 2rem;
}

#api-endpoints-table pre {
  background: var(--secondary-100);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

#api-endpoints-table code {
  background: var(--secondary-100);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  color: var(--secondary-800);
}

#api-endpoints-table td {
  vertical-align: top;
  max-width: 250px;
}

#api-endpoints-table th {
  white-space: nowrap;
}

/* API table specific styling */
.api-server-info .data-table,
.api-user-info .data-table {
  margin: 1rem 0;
}

.api-server-info .data-table th,
.api-user-info .data-table th {
  background: var(--secondary-100);
  color: var(--secondary-800);
  font-weight: 600;
  width: 35%;
}

.api-server-info .data-table td,
.api-user-info .data-table td {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Jobs page improvements */
.jobs-section {
  margin-bottom: 3rem;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.jobs-controls {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.jobs-search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.search-input {
  padding: 0.75rem 1rem;
  border: 2px solid var(--secondary-300);
  border-radius: 8px;
  font-size: 0.875rem;
  min-width: 200px;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.search-btn {
  background: var(--primary-500);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.search-btn:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}

.jobs-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--secondary-300);
  border-radius: 8px;
  font-size: 0.875rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.pagination-info {
  margin: 1.5rem 0;
  text-align: center;
}

.results-count {
  color: var(--secondary-600);
  font-size: 0.875rem;
  margin: 0;
}

.table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: none;
}

.sort-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  font-size: 0.875rem;
}

.sort-btn:hover {
  opacity: 1;
}

.job-row:hover {
  background-color: var(--secondary-50);
}

.job-description {
  color: var(--secondary-500);
  font-weight: normal;
  font-size: 0.8rem;
  line-height: 1.4;
}

.pagination-container {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid var(--secondary-300);
  border-radius: 8px;
  text-decoration: none;
  color: var(--secondary-700);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  min-width: 44px;
  height: 44px;
  box-sizing: border-box;
}

.page-btn:hover:not(.disabled):not(.active) {
  border-color: var(--primary-500);
  color: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-btn.active {
  background: var(--primary-500);
  border-color: var(--primary-500);
  color: white;
  font-weight: 600;
}

.page-btn.disabled {
  background: var(--secondary-100);
  color: var(--secondary-400);
  cursor: not-allowed;
  border-color: var(--secondary-200);
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.page-ellipsis {
  padding: 0.75rem 0.5rem;
  color: var(--secondary-400);
  font-weight: 500;
}

.prev-btn, .next-btn {
  font-weight: 600;
}

.job-creation-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

/* Responsive pagination */
@media (max-width: 768px) {
  .title-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .title-icon {
    width: 40px;
    height: 40px;
  }
  
  .title-text h1 {
    font-size: 2rem;
  }
  
  .jobs-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .jobs-controls {
    flex-direction: column;
    gap: 1rem;
  }
  
  .jobs-search,
  .jobs-filters {
    justify-content: stretch;
  }
  
  .search-input {
    min-width: auto;
    flex: 1;
  }
  
  .pagination {
    gap: 0.25rem;
  }
  
  .page-btn {
    padding: 0.5rem 0.75rem;
    min-width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  
  .page-ellipsis {
    padding: 0.5rem 0.25rem;
  }
  
  .table-container {
    font-size: 0.875rem;
  }
  
  .job-description {
    font-size: 0.75rem;
  }
  
  /* API page responsive */
  .api-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-card {
    padding: 1.25rem;
  }
  
  .api-server-info,
  .api-user-info,
  .api-documentation {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .credentials-section {
    padding: 1.5rem;
  }
  
  .credential-value {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .credential-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .api-key {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .copy-btn {
    margin-left: 0;
    width: 100%;
  }
  
  #api-endpoints-table {
    font-size: 0.875rem;
  }
  
  #api-endpoints-table td {
    max-width: 200px;
  }
  
  #api-endpoints-table pre {
    font-size: 0.75rem;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .page-numbers {
    display: none;
  }
  
  .pagination {
    justify-content: space-between;
    width: 100%;
  }
  
  .prev-btn, .next-btn {
    flex: 1;
    max-width: 120px;
  }
}

/* Responsive design improvements */
@media (max-width: 768px) {
  .services-grid,
  .contact-sections,
  .business-details {
    grid-template-columns: 1fr;
  }
  
  .action-buttons,
  .cta-buttons,
  .support-actions {
    flex-direction: column;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.TitleMessage {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin: 2rem 0;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--secondary-200);
}

.Banner {
  background: var(--primary-500);
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Pricing page styles */
#pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.pricing-whole {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--ui-shadow);
}

.pricing-type {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-plan {
  background: var(--secondary-50);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: all 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--ui-shadow-lg);
}

.pricing-standard {
  border: 2px solid var(--primary-500);
  transform: scale(1.05);
}

.pricing-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.pricing-month {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-500);
  margin: 1rem 0;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-900);
}

.pricing-cart {
  background: var(--primary-500);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-cart:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
}

/* Form styles */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--secondary-300);
  border-radius: 8px;
  font-family: var(--font-family-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Mobile menu styles */
.menuicon {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--secondary-800);
  margin: 6px 0;
  transition: 0.3s;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-8px, -8px);
}

/* Navigation responsive design */
@media (max-width: 1200px) {
  .VertNav {
    width: 240px;
  }
  
  #root-admin .View {
    margin-left: 240px;
    width: calc(100vw - 240px);
  }
  
  #root-admin .View::before {
    left: 240px;
  }
}

@media (max-width: 768px) {
  .VertNav {
    width: 280px;
    left: -280px;
    transition: left 0.3s ease;
    z-index: 1001;
  }
  
  .VertNav.active {
    left: 0;
  }
  
  #root-admin .View {
    margin-left: 0;
    width: 100vw;
    padding: 1.5rem;
  }
  
  #root-admin .View::before {
    left: 0;
  }
  
  /* Mobile navigation overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile menu toggle button */
  .mobile-nav-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1002;
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .mobile-nav-toggle:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
  }
  
  .mobile-nav-toggle .hamburger {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .mobile-nav-toggle .hamburger span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .pricing-type {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-plan {
    max-width: 100%;
    margin: 0.5rem 0;
  }
  
  .pricing-standard {
    transform: none;
  }
}

/* Enhanced styling for About, Pricing, and Contact pages */

/* About page enhanced styling */
.about-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4rem;
  border: 1px solid var(--secondary-200);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 20px 20px 0 0;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-900);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-section p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--secondary-700);
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--secondary-200);
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--secondary-600);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.benefits-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.benefits-list li {
  background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-200);
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 3rem;
}

.benefits-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--success-500);
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tech-item {
  background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-200);
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tech-item strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
}

/* Pricing page enhanced styling */
.pricing-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4rem;
  border: 1px solid var(--secondary-200);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  border: 2px solid var(--secondary-200);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 24px 24px 0 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-500);
}

.pricing-card.card-featured {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  border-color: var(--primary-600);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.pricing-card.card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}

.pricing-price {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.pricing-card:not(.card-featured) .pricing-price {
  background: var(--secondary-50);
  border: 1px solid var(--secondary-200);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 0.25rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  font-size: 1.125rem;
  opacity: 0.8;
  font-weight: 500;
  margin-left: 0.25rem;
}

.pricing-features {
  margin-bottom: 2.5rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 3rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-card:not(.card-featured) .pricing-features li {
  background: var(--secondary-50);
  border: 1px solid var(--secondary-200);
}

.pricing-features li:hover {
  transform: translateX(5px);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--success-500);
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.pricing-cart {
  display: block;
  width: 100%;
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pricing-card:not(.card-featured) .pricing-cart {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-card.card-featured .pricing-cart {
  background: white;
  color: var(--primary-600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-cart:hover {
  transform: translateY(-2px);
}

.pricing-card:not(.card-featured) .pricing-cart:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.pricing-faq {
  background: var(--secondary-50);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
  border: 1px solid var(--secondary-200);
}

.pricing-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary-900);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--secondary-600);
  line-height: 1.6;
  margin: 0;
}

.pricing-cta {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin: 4rem 0;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.pricing-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.pricing-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact page enhanced styling */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4rem;
  border: 1px solid var(--secondary-200);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 20px 20px 0 0;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-method h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-900);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-method p {
  color: var(--secondary-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-info {
  background: var(--secondary-50);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-200);
  line-height: 1.8;
}

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

.contact-info a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.contact-form-section {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 20px 20px 0 0;
}

.contact-form-section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--secondary-900);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-container {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary-700);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid var(--secondary-300);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-family-sans);
  transition: all 0.3s ease;
  background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.submit-button {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  justify-self: start;
}

.submit-button:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.business-info {
  background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
  padding: 3rem;
  border-radius: 20px;
  margin: 4rem 0;
  text-align: center;
  border: 1px solid var(--secondary-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.business-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary-900);
}

.business-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  text-align: left;
}

.business-details p {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--secondary-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.business-details strong {
  color: var(--secondary-900);
  font-weight: 700;
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
  .contact-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .pricing-card.card-featured {
    transform: scale(1.02);
  }
  
  .pricing-card.card-featured:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 768px) {
  .about-sections,
  .contact-methods {
    gap: 2rem;
  }
  
  .about-section,
  .contact-method,
  .contact-form-section {
    padding: 2rem;
  }
  
  .feature-grid,
  .tech-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .business-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-hero,
  .contact-hero,
  .pricing-hero {
    padding: 2rem 1.5rem;
  }
  
  .about-section h2,
  .contact-method h2,
  .contact-form-section h2 {
    font-size: 1.5rem;
  }
  
  .pricing-faq,
  .pricing-cta,
  .business-info {
    padding: 2rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-card.card-featured {
    transform: none;
  }
  
  .pricing-card.card-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 480px) {
  .about-hero,
  .contact-hero,
  .pricing-hero {
    padding: 1.5rem 1rem;
  }
  
  .about-section,
  .contact-method,
  .contact-form-section,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .price-amount {
    font-size: 3rem;
  }
  
  .about-section h2 {
    font-size: 1.5rem;
  }
  
  .pricing-faq h2,
  .pricing-cta h2,
  .business-info h2 {
    font-size: 2rem;
  }
}

/* Enhanced Job Statistics Page Styling */

/* Stats Overview and Summary Cards */
.stats-overview {
  margin-bottom: 3rem;
}

.stats-description {
  font-size: 1.125rem;
  color: var(--secondary-600);
  margin-bottom: 2rem;
  text-align: center;
}

.stats-summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.summary-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.summary-card .card-icon {
  font-size: 2.5rem;
  padding: 1rem;
  background: var(--primary-50);
  border-radius: 12px;
  flex-shrink: 0;
}

.summary-card .card-content {
  flex: 1;
}

.summary-card .card-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.summary-card .card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.summary-card .card-trend {
  font-size: 0.75rem;
  color: var(--green-600);
  font-weight: 500;
}

/* Charts Section */
.stats-charts-section {
  margin-bottom: 4rem;
}

.stats-charts-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-200);
}

.stats-charts-section .section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin: 0;
}

.chart-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.chart-container {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  min-height: 300px;
  position: relative;
}

.chart-container canvas {
  max-height: 250px !important;
}

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

.chart-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-800);
  margin: 0;
}

.chart-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  gap: 0.5rem;
}

.legend-item::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-primary::before { background: var(--primary-500); }
.legend-success::before { background: var(--green-500); }
.legend-warning::before { background: var(--yellow-500); }
.legend-danger::before { background: var(--red-500); }
.legend-info::before { background: var(--blue-500); }
.legend-accent::before { background: var(--purple-500); }

/* Enhanced Stats Sections */
.stats-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stats-section {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  overflow: hidden;
}

.stats-section .section-header {
  padding: 2rem 2rem 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
  border-bottom: 1px solid var(--secondary-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.stats-section .section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  margin: 0;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stats-count {
  font-size: 0.875rem;
  color: var(--secondary-600);
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--secondary-300);
}

.section-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Enhanced Table Styling */
.table-container {
  overflow-x: auto;
  margin: 0;
}

.stats-section .data-table {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.stats-section .data-table th {
  background: var(--secondary-700);
  color: white;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
}

.stats-section .data-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.stats-section .data-table th.sortable:hover {
  background: var(--secondary-800);
}

.stats-section .data-table th.sortable span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sort-arrow {
  opacity: 0.6;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.stats-section .data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--secondary-200);
  vertical-align: middle;
}

.stats-section .data-table tbody tr:hover {
  background: var(--primary-25);
}

/* Enhanced Data Display */
.timestamp {
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  color: var(--secondary-600);
}

.performance-metric {
  font-weight: 600;
  color: var(--primary-600);
  font-family: var(--font-family-mono);
}

.numeric-value {
  font-family: var(--font-family-mono);
  font-weight: 500;
  color: var(--secondary-700);
}

.text-value {
  color: var(--secondary-700);
}

.no-data {
  color: var(--secondary-400);
  font-style: italic;
  font-size: 0.875rem;
}

/* Search and Filter Controls */
.search-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--secondary-300);
  border-radius: 8px;
  font-size: 0.875rem;
  width: 200px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--secondary-300);
  border-radius: 8px;
  font-size: 0.875rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.export-btn {
  padding: 0.5rem 1rem;
  background: var(--secondary-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.export-btn:hover {
  background: var(--secondary-700);
  transform: translateY(-1px);
}

/* Pagination Styling */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--secondary-50);
  border-top: 1px solid var(--secondary-200);
  flex-wrap: wrap;
  gap: 1rem;
}

.pagination-info {
  font-size: 0.875rem;
  color: var(--secondary-600);
}

.results-count {
  font-weight: 500;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--secondary-300);
  background: white;
  color: var(--secondary-700);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.page-btn:hover:not(.disabled):not(.active) {
  background: var(--primary-50);
  border-color: var(--primary-300);
  color: var(--primary-700);
}

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

.page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 0.25rem;
}

.page-ellipsis {
  padding: 0.5rem;
  color: var(--secondary-400);
  font-weight: 500;
}

.prev-btn, .next-btn {
  font-weight: 600;
}

/* Tools Section */
.stats-tools-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--secondary-200);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tool-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.tool-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-800);
  margin: 0 0 0.5rem 0;
}

.tool-content p {
  font-size: 0.875rem;
  color: var(--secondary-600);
  margin: 0 0 1.5rem 0;
}

/* Empty State Styling */
.stats-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state {
  max-width: 600px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-800);
  margin-bottom: 1rem;
}

.empty-description {
  font-size: 1rem;
  color: var(--secondary-600);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.getting-started {
  margin: 3rem 0;
}

.getting-started h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-200);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem auto;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-800);
  margin: 0 0 0.5rem 0;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--secondary-600);
  margin: 0;
  line-height: 1.5;
}

/* No Data Message */
.no-data-message {
  padding: 3rem 2rem;
  text-align: center;
}

.no-data-message .Message {
  background: var(--secondary-50);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--secondary-200);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-summary-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .charts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .chart-container {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .stats-section .section-header {
    padding: 1.5rem 1rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .section-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .section-actions {
    flex-direction: column;
  }
  
  .search-input {
    width: 100%;
  }
  
  .pagination-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .pagination {
    justify-content: center;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .summary-card {
    padding: 1rem;
  }
  
  .summary-card .card-icon {
    font-size: 2rem;
    padding: 0.75rem;
  }
  
  .summary-card .card-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-overview {
    margin-bottom: 2rem;
  }
  
  .stats-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .stats-summary-cards {
    grid-template-columns: 1fr;
  }
  
  .summary-card {
    flex-direction: column;
    text-align: center;
  }
  
  .table-container {
    font-size: 0.875rem;
  }
  
  .stats-section .data-table th,
  .stats-section .data-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Custom scrollbar for table containers */
.table-container::-webkit-scrollbar {
  height: 8px;
}

.table-container::-webkit-scrollbar-track {
  background: var(--secondary-100);
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
  background: var(--secondary-400);
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-500);
}

/* Home Page Action Buttons */
.home-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.action-button::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;
}

.action-button:hover::before {
  left: 100%;
}

.action-button.primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #5856eb, #7c3aed);
}

.action-button.secondary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.action-button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #0d9488, #047857);
}

.action-button.tertiary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.action-button.tertiary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

/* Enhanced Page Modal Stats for better visual hierarchy */
#root-admin .PageModalStatBox {
  /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));*/
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
}

#root-admin .PageModalStat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Enhanced DashTip styling */
#root-admin .DashTip {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border-left: 4px solid #6366f1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#root-admin .DashTipTitle {
  color: #6366f1;
  font-weight: 700;
}

#root-admin .DashTipContent {
  line-height: 1.6;
  color: #374151;
}

/* Responsive design for action buttons */
@media (max-width: 768px) {
  .home-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .action-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .action-button {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  
  #root-admin .home-container {
    padding: 1rem;
  }
}

.NavButton .icon {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Support for emoji icons in navigation */
.NavButton span.icon {
  width: auto;
  height: auto;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.NavButton:hover .icon {
  opacity: 1;
}

/* Knowledge Base Admin Styles */
.add-document-section {
  background: var(--secondary-50);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--secondary-200);
}

.add-document-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.document-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.tag {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.tag.more {
  background: var(--secondary-200);
  color: var(--secondary-600);
}

.category-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.category-badge.whitepaper { background: #dbeafe; color: #1e40af; }
.category-badge.research { background: #fef3c7; color: #92400e; }
.category-badge.tutorial { background: #dcfce7; color: #166534; }
.category-badge.best-practice { background: #f3e8ff; color: #7c3aed; }
.category-badge.technical { background: #fef2f2; color: #dc2626; }

.file-type-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.file-type-badge.markdown { background: #f0f9ff; color: #0369a1; }
.file-type-badge.text { background: #f0fdf4; color: #166534; }
.file-type-badge.pdf { background: #fef2f2; color: #dc2626; }

.status-badge.published { background: #dcfce7; color: #166534; }
.status-badge.draft { background: #fef3c7; color: #92400e; }

.action-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.inline-form {
  display: inline;
}

/* Admin Dashboard Additional Action Button */
.action-button.quinary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  border: none;
  padding: 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.action-button.quinary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Learn Page - Resource Cards */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.resource-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.resource-body {
  flex-grow: 1; /* This makes the body take up available space */
}

.resource-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.resource-icon {
  font-size: 20px;
  margin-right: 10px;
}

.resource-type {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background-color: #f0f0f0;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.resource-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.resource-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.resource-meta {
  font-size: 12px;
  color: #888;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
  margin-top: auto; /* Pushes meta to bottom of body if no description */
}

.meta-item {
  display: block;
  margin-bottom: 5px;
}

.meta-label {
  font-weight: 600;
  color: #555;
}

.resource-links {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.resource-link {
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

a.resource-link:hover {
  background-color: #0056b3;
}

.resource-stats {
  font-size: 12px;
  color: #777;
}

/* Pagination Styles */
.pagination-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.page-item {
  margin: 0;
}

.page-item .page-link {
  color: #007bff;
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.2s ease;
  display: block;
}

.page-item:first-child .page-link {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-item .page-link:hover {
  background-color: #f4f4f4;
}

.page-item.active .page-link:hover {
  background-color: #0056b3;
}

.mobile-nav {
  background: #111827 !important;
  opacity: 1 !important;
}

.mobile-nav.active {
  background: #111827 !important;
  opacity: 1 !important;
}

.mobile-nav-content {
  background: #fff !important;
  min-height: 100vh;
  height: 100vh;
}

.mobile-nav-content .mobile-nav-link,
.mobile-nav-content .mobile-cta-login,
.mobile-nav-content .mobile-cta-signup {
  background: #fff;
  color: #111827;
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.mobile-nav-content .mobile-cta-signup {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
}


