:root {
  /* Light, Clean, Professional Color Palette */
  --primary: #5B9BD5;           /* Soft Sky Blue */
  --primary-dark: #4A8BC4;      /* Slightly deeper blue */
  --primary-light: #7BB3E0;     /* Light sky blue */
  --secondary: #6ECFB8;         /* Soft Mint/Teal */
  --secondary-light: #8EDECE;   /* Light mint */
  --accent: #F5A962;            /* Soft Peach/Coral */
  --accent-light: #F7BC82;      /* Light peach */
  --dark: #4A5568;              /* Soft charcoal (not harsh black) */
  --dark-light: #5A6B7B;        /* Medium gray-blue */
  --gray-50: #FAFBFD;           /* Almost white with hint of blue */
  --gray-100: #F4F6F9;          /* Very light gray */
  --gray-200: #E8ECF1;          /* Light gray */
  --gray-300: #D1D9E2;          /* Soft gray */
  --gray-400: #A0AEC0;          /* Medium gray */
  --gray-500: #718096;          /* Gray */
  --gray-600: #5A6778;          /* Darker gray */
  --white: #FFFFFF;
  --danger: #E57373;            /* Soft red */
  --success: #81C784;           /* Soft green */

  /* Additional light theme colors */
  --bg-gradient-start: #F8FBFF;
  --bg-gradient-end: #FFFFFF;
  --card-bg: #FFFFFF;
  --card-shadow: rgba(90, 107, 123, 0.08);
  --text-primary: #4A5568;
  --text-secondary: #718096;
  --text-light: #A0AEC0;
  --border-light: #E8ECF1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==================== PROBLEMS SECTION ==================== */
.problems-section {
  padding: 6rem 0;
  background: var(--white);
}

.problems-section.hero-problems {
  padding-top: 120px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 300px);
}

/* Compact CTA */
.cta-compact {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

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

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

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

/* Primary CTA Button */
.cta-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 15px rgba(91, 155, 213, 0.35);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-btn-primary .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 155, 213, 0.45);
  color: var(--white);
}

/* Outline CTA Button */
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(110, 207, 184, 0.1));
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray-500);
}

.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.problem-row:nth-child(even) {
  direction: rtl;
}

.problem-row:nth-child(even) > * {
  direction: ltr;
}

.problem-card, .solution-card {
  padding: 2rem;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.problem-card {
  background: linear-gradient(135deg, #FFF5F5, #FFF8F3);
  border: 1px solid #FECDD3;
}

.solution-card {
  background: linear-gradient(135deg, #F0FDF9, #F0FDFA);
  border: 1px solid #BBF7D0;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  width: fit-content;
}

.problem-card .card-badge {
  background: rgba(229, 115, 115, 0.15);
  color: #E57373;
}

.solution-card .card-badge {
  background: rgba(110, 207, 184, 0.15);
  color: #4DB6A0;
}

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

.card-visual {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.card-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Animation Elements */
.anim-guard-idle {
  text-align: center;
}

.anim-guard-idle .emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.anim-guard-idle .question {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.anim-guard-idle .question span {
  font-size: 1.5rem;
  color: var(--danger);
  animation: bounce-q 0.6s ease-in-out infinite;
}

.anim-guard-idle .question span:nth-child(2) { animation-delay: 0.2s; }
.anim-guard-idle .question span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce-q {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.anim-multi-verify {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.anim-multi-verify .verify-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.anim-multi-verify .verify-method {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  animation: method-pulse 2s ease-in-out infinite;
}

.anim-multi-verify .verify-method:nth-child(1) { animation-delay: 0s; }
.anim-multi-verify .verify-method:nth-child(2) { animation-delay: 0.5s; }
.anim-multi-verify .verify-method:nth-child(3) { animation-delay: 1s; }
.anim-multi-verify .verify-method:nth-child(4) { animation-delay: 1.5s; }

@keyframes method-pulse {
  0%, 100% {
    border-color: var(--gray-200);
    background: var(--gray-50);
    transform: scale(1);
  }
  50% {
    border-color: var(--secondary);
    background: rgba(110, 207, 184, 0.1);
    transform: scale(1.05);
  }
}

.anim-multi-verify .verify-method i {
  font-size: 1.25rem;
  color: var(--primary);
}

.anim-multi-verify .verify-method span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
}

.anim-multi-verify .verify-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.anim-multi-verify .verify-result i {
  font-size: 1.25rem;
  color: var(--success);
}

.anim-multi-verify .verify-result span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.anim-map-dots {
  width: 100%;
  height: 120px;
  position: relative;
  background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
  border-radius: 12px;
}

.anim-map-dots .dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.anim-map-dots .dot:nth-child(1) { top: 20%; left: 15%; }
.anim-map-dots .dot:nth-child(2) { top: 50%; left: 55%; animation-delay: 0.5s; }
.anim-map-dots .dot:nth-child(3) { top: 70%; left: 80%; animation-delay: 1s; }

.anim-map-dots .status {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.anim-buddy-punch {
  text-align: center;
}

.anim-buddy-punch .guards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.anim-buddy-punch .speech {
  background: var(--danger);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.anim-buddy-punch .loss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--danger);
  font-weight: 600;
}

.anim-buddy-punch .loss i {
  animation: fly-away 2s ease-in-out infinite;
}

@keyframes fly-away {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(-15px) rotate(15deg); opacity: 0; }
}

.anim-face-gps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.anim-face-gps .face-scan-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-face-gps .face-icon {
  font-size: 3.5rem;
  z-index: 1;
}

.anim-face-gps .scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 12px;
  overflow: hidden;
}

.anim-face-gps .scan-line-face {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  animation: face-scan 2s ease-in-out infinite;
}

@keyframes face-scan {
  0% { top: 0; }
  50% { top: calc(100% - 3px); }
  100% { top: 0; }
}

.anim-face-gps .verification-badges {
  display: flex;
  gap: 0.5rem;
}

.anim-face-gps .v-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
  animation: badge-check 2s ease-in-out infinite;
}

.anim-face-gps .v-badge:nth-child(1) { animation-delay: 0s; }
.anim-face-gps .v-badge:nth-child(2) { animation-delay: 0.3s; }
.anim-face-gps .v-badge:nth-child(3) { animation-delay: 0.6s; }

@keyframes badge-check {
  0%, 100% {
    background: var(--gray-100);
    color: var(--gray-600);
  }
  50% {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
  }
}

.anim-face-gps .v-badge i {
  font-size: 0.8rem;
}

.anim-face-gps .verified-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.anim-face-gps .verified-result i {
  font-size: 1.25rem;
  color: var(--success);
}

.anim-face-gps .verified-result span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.anim-sos-problem {
  text-align: center;
}

.anim-sos-problem .guard-danger {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.anim-sos-problem .sos-text {
  position: absolute;
  top: -10px;
  right: -30px;
  background: var(--danger);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  animation: blink 0.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.anim-sos-problem .no-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.anim-sos-problem .no-alert i {
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.anim-sos-button {
  text-align: center;
}

.anim-sos-button .btn-sos {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--danger), #E57373);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
}

.anim-sos-button .btn-sos .ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--danger);
  animation: ripple 1.5s ease-out infinite;
}

.anim-sos-button .btn-sos .ripple:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.anim-sos-button .alert-sent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
}

.anim-sos-button .alert-sent i {
  font-size: 1.2rem;
}

.anim-vehicle-problem {
  text-align: center;
}

.anim-vehicle-problem .car-coffee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.anim-vehicle-problem .car-coffee .bi-car-front-fill {
  color: var(--gray-400);
}

.anim-vehicle-problem .car-coffee .bi-cup-hot-fill {
  color: var(--accent);
}

.anim-vehicle-problem .unknown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.anim-vehicle-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.anim-vehicle-route .checkpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.anim-vehicle-route .checkpoint i {
  font-size: 1.5rem;
  color: var(--primary);
}

.anim-vehicle-route .checkpoint span {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 600;
}

.anim-vehicle-route .route-line {
  flex: 1;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  position: relative;
  max-width: 120px;
}

.anim-vehicle-route .route-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--secondary);
  border-radius: 2px;
  animation: route-progress 3s ease-in-out infinite;
}

@keyframes route-progress {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 100%; }
}

.anim-vehicle-route .car-moving {
  font-size: 1.5rem;
  color: var(--secondary);
  animation: car-move 3s ease-in-out infinite;
}

@keyframes car-move {
  0% { transform: translateX(-30px); }
  50% { transform: translateX(30px); }
  100% { transform: translateX(30px); }
}

.anim-report-problem {
  text-align: center;
}

.anim-report-problem .client {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.anim-report-problem .speech {
  background: var(--gray-200);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.anim-report-problem .scramble {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-500);
}

.anim-report-problem .scramble i:first-child {
  font-size: 1.5rem;
  color: var(--danger);
}

.anim-report-auto {
  text-align: center;
}

.anim-report-auto .report-gen {
  margin-bottom: 1rem;
}

.anim-report-auto .report-icon {
  font-size: 3rem;
  color: var(--danger);
  position: relative;
  display: inline-block;
}

.anim-report-auto .report-icon .spin {
  position: absolute;
  top: -5px;
  right: -15px;
  font-size: 1rem;
  color: var(--primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-report-auto .checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-report-auto .checks span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
}

.anim-report-auto .sent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Problem 7: Scheduling */
.anim-schedule-chaos {
  text-align: center;
}

.anim-schedule-chaos .calendar-mess {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-schedule-chaos .calendar-mess i {
  font-size: 3.5rem;
  color: var(--danger);
}

.anim-schedule-chaos .chaos-marks {
  position: absolute;
  top: -10px;
  right: -20px;
  display: flex;
  gap: 0.2rem;
}

.anim-schedule-chaos .chaos-marks span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  animation: chaos-bounce 0.5s ease-in-out infinite alternate;
}

.anim-schedule-chaos .chaos-marks span:nth-child(2) { animation-delay: 0.15s; }
.anim-schedule-chaos .chaos-marks span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chaos-bounce {
  from { transform: translateY(0) rotate(-5deg); }
  to { transform: translateY(-5px) rotate(5deg); }
}

.anim-schedule-chaos .stress-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-auto-schedule {
  text-align: center;
}

.anim-auto-schedule .schedule-grid {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.anim-auto-schedule .schedule-slot {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gray-200);
  transition: all 0.3s ease;
}

.anim-auto-schedule .schedule-slot.filled {
  background: var(--secondary);
}

.anim-auto-schedule .schedule-slot.filling {
  animation: fill-slot 1.5s ease-in-out infinite;
}

@keyframes fill-slot {
  0%, 100% { background: var(--gray-200); }
  50% { background: var(--secondary); }
}

.anim-auto-schedule .auto-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(91, 155, 213, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

/* Problem 8: Late Guards */
.anim-late-guard {
  text-align: center;
}

.anim-late-guard .clock-late {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-late-guard .clock-late i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-late-guard .late-badge {
  position: absolute;
  top: -5px;
  right: -25px;
  background: var(--danger);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  animation: pulse-badge 1s ease-in-out infinite;
}

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

.anim-late-guard .empty-post {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.anim-late-guard .empty-post i {
  color: var(--danger);
  font-size: 1.25rem;
}

.anim-geofence {
  text-align: center;
}

.anim-geofence .geofence-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
}

.anim-geofence .geofence-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px dashed var(--primary);
  border-radius: 50%;
  animation: rotate-ring 10s linear infinite;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-geofence .guard-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 207, 184, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.anim-geofence .geofence-alerts {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.anim-geofence .alert-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.anim-geofence .alert-item.arrived {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.anim-geofence .alert-item.late {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

/* Problem 9: Communication */
.anim-no-comm {
  text-align: center;
}

.anim-no-comm .phone-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.anim-no-comm .phone-icons i {
  font-size: 2.5rem;
  color: var(--gray-400);
}

.anim-no-comm .phone-icons i:first-child {
  color: var(--danger);
}

.anim-no-comm .comm-problem {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-team-chat {
  text-align: center;
}

.anim-team-chat .chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-team-chat .bubble {
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  max-width: 80%;
  animation: slide-in 0.5s ease-out;
}

.anim-team-chat .bubble.outgoing {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.anim-team-chat .bubble.incoming {
  background: var(--gray-100);
  color: var(--gray-600);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

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

.anim-team-chat .broadcast-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Problem 10: Payroll */
.anim-payroll-mess {
  text-align: center;
}

.anim-payroll-mess .spreadsheet-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-payroll-mess .spreadsheet-icon i {
  font-size: 3.5rem;
  color: var(--gray-400);
}

.anim-payroll-mess .error-marks {
  position: absolute;
  top: 5px;
  right: -15px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.anim-payroll-mess .error-marks span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--danger);
  animation: shake-error 0.5s ease-in-out infinite;
}

@keyframes shake-error {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.anim-payroll-mess .payroll-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-payroll-auto {
  text-align: center;
}

.anim-payroll-auto .payroll-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-payroll-auto .flow-step {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  animation: step-pulse 2s ease-in-out infinite;
}

.anim-payroll-auto .flow-step:nth-child(1) { animation-delay: 0s; }
.anim-payroll-auto .flow-step:nth-child(3) { animation-delay: 0.5s; }
.anim-payroll-auto .flow-step:nth-child(5) { animation-delay: 1s; }

@keyframes step-pulse {
  0%, 100% { background: var(--gray-100); }
  50% { background: rgba(91, 155, 213, 0.15); }
}

.anim-payroll-auto .flow-arrow {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.anim-payroll-auto .payroll-done {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

/* Problem 11: Visitor Management */
.anim-visitor-problem {
  text-align: center;
}

.anim-visitor-problem .visitor-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: var(--gray-400);
}

.anim-visitor-problem .visitor-icons i:first-child {
  animation: walk-in 2s ease-in-out infinite;
}

@keyframes walk-in {
  0%, 100% { transform: translateX(-10px); opacity: 0.5; }
  50% { transform: translateX(0); opacity: 1; }
}

.anim-visitor-problem .no-log {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-visitor-log {
  text-align: center;
}

.anim-visitor-log .visitor-entry {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.anim-visitor-log .visitor-entry > i:first-child {
  font-size: 1.5rem;
  color: var(--primary);
}

.anim-visitor-log .entry-details {
  flex: 1;
  text-align: left;
}

.anim-visitor-log .entry-details .name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.anim-visitor-log .entry-details .time {
  font-size: 0.7rem;
  color: var(--gray-500);
}

.anim-visitor-log .check {
  color: var(--success);
  font-size: 1.25rem;
}

.anim-visitor-log .log-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 12: Incident Reports */
.anim-incident-problem {
  text-align: center;
}

.anim-incident-problem .paper-stack {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-incident-problem .paper-stack i {
  font-size: 2.5rem;
  color: var(--gray-300);
  position: absolute;
}

.anim-incident-problem .paper-stack i:nth-child(1) {
  position: relative;
  color: var(--gray-400);
}

.anim-incident-problem .paper-stack i:nth-child(2) {
  top: -5px;
  left: 8px;
  transform: rotate(5deg);
}

.anim-incident-problem .paper-stack i:nth-child(3) {
  top: -10px;
  left: 16px;
  transform: rotate(10deg);
}

.anim-incident-problem .mess-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-incident-digital {
  text-align: center;
}

.anim-incident-digital .report-card {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.anim-incident-digital .report-card > i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.anim-incident-digital .report-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.anim-incident-digital .report-meta span {
  font-size: 0.7rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.anim-incident-digital .report-meta span i {
  color: var(--primary);
}

.anim-incident-digital .instant-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Problem 13: Leave Management */
.anim-leave-problem {
  text-align: center;
}

.anim-leave-problem .message-chaos {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.anim-leave-problem .message-chaos i {
  font-size: 2rem;
  color: var(--gray-400);
  animation: message-pop 1.5s ease-in-out infinite;
}

.anim-leave-problem .message-chaos i:nth-child(2) { animation-delay: 0.3s; }
.anim-leave-problem .message-chaos i:nth-child(3) { animation-delay: 0.6s; }

@keyframes message-pop {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.anim-leave-problem .chaos-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-leave-system {
  text-align: center;
}

.anim-leave-system .leave-request {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-leave-system .request-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-100);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}

.anim-leave-system .request-box i {
  color: var(--danger);
}

.anim-leave-system .arrow {
  color: var(--gray-400);
  animation: arrow-move 1s ease-in-out infinite;
}

@keyframes arrow-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.anim-leave-system .approve-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.anim-leave-system .balance-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 14: Shift Swap */
.anim-shift-problem {
  text-align: center;
}

.anim-shift-problem .guard-sick {
  margin-bottom: 0.75rem;
}

.anim-shift-problem .guard-sick .emoji {
  font-size: 2.5rem;
  display: block;
}

.anim-shift-problem .guard-sick .text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-shift-problem .panic-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-shift-problem .panic-text i {
  animation: panic-shake 0.3s ease-in-out infinite;
}

@keyframes panic-shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.anim-shift-swap {
  text-align: center;
}

.anim-shift-swap .swap-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.anim-shift-swap .shift-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.anim-shift-swap .shift-box.open {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  animation: box-pulse 1.5s ease-in-out infinite;
}

.anim-shift-swap .shift-box.claimed {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

@keyframes box-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.anim-shift-swap .swap-arrows {
  color: var(--gray-400);
  font-size: 1.25rem;
}

.anim-shift-swap .swap-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Problem 15: Task Management */
.anim-task-problem {
  text-align: center;
}

.anim-task-problem .confused-guard .emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.anim-task-problem .task-question {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-task-list {
  text-align: left;
}

.anim-task-list .task-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.anim-task-list .task-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
}

.anim-task-list .task-item.done {
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
}

.anim-task-list .task-item.done i {
  color: var(--success);
}

.anim-task-list .task-item.pending {
  color: var(--gray-500);
  background: var(--gray-100);
  animation: task-waiting 2s ease-in-out infinite;
}

@keyframes task-waiting {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.anim-task-list .task-item.pending i {
  color: var(--gray-400);
}

/* Problem 16: Asset Tracking */
.anim-asset-problem {
  text-align: center;
}

.anim-asset-problem .missing-items {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.anim-asset-problem .missing-items i:nth-child(1),
.anim-asset-problem .missing-items i:nth-child(2) {
  color: var(--gray-400);
}

.anim-asset-problem .missing-items i:nth-child(3) {
  color: var(--danger);
  animation: question-pulse 1s ease-in-out infinite;
}

@keyframes question-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.anim-asset-problem .missing-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-asset-track {
  text-align: center;
}

.anim-asset-track .asset-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.anim-asset-track .asset-card > i {
  font-size: 1.5rem;
  color: var(--primary);
}

.anim-asset-track .asset-info {
  text-align: left;
}

.anim-asset-track .asset-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.anim-asset-track .asset-holder {
  font-size: 0.7rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.anim-asset-track .track-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 17: Parking Violations */
.anim-parking-problem {
  text-align: center;
}

.anim-parking-problem .car-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-parking-problem .car-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-parking-problem .violation-mark {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--danger);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: violation-blink 0.8s ease-in-out infinite;
}

@keyframes violation-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.anim-parking-problem .no-record {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-parking-system {
  text-align: center;
}

.anim-parking-system .violation-card {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.anim-parking-system .violation-card > i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.anim-parking-system .violation-details {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.anim-parking-system .violation-details span {
  color: var(--primary);
  font-size: 1rem;
}

.anim-parking-system .documented-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 18: Post Orders */
.anim-orders-problem {
  text-align: center;
}

.anim-orders-problem .guard-confused {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-orders-problem .guard-confused .emoji {
  font-size: 2.5rem;
}

.anim-orders-problem .guard-confused .question {
  position: absolute;
  top: -5px;
  right: -15px;
  font-size: 1.25rem;
  animation: float-question 1s ease-in-out infinite;
}

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

.anim-orders-problem .no-orders {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-post-orders {
  text-align: center;
}

.anim-post-orders .orders-screen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.anim-post-orders .orders-screen > i {
  font-size: 2rem;
  color: var(--primary);
}

.anim-post-orders .orders-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.anim-post-orders .order-line {
  width: 60px;
  height: 6px;
  background: var(--gray-300);
  border-radius: 3px;
}

.anim-post-orders .order-line.short {
  width: 40px;
}

.anim-post-orders .access-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 19: Onboarding */
.anim-onboard-problem {
  text-align: center;
}

.anim-onboard-problem .docs-mess {
  position: relative;
  display: inline-flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.anim-onboard-problem .docs-mess i {
  font-size: 2rem;
  color: var(--gray-400);
}

.anim-onboard-problem .docs-mess .x-mark {
  position: absolute;
  top: -5px;
  right: -10px;
  font-size: 1rem;
  color: var(--danger);
}

.anim-onboard-problem .missing-docs {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-onboard-system {
  text-align: center;
}

.anim-onboard-system .doc-checklist {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-onboard-system .doc-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.anim-onboard-system .doc-item.complete {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.anim-onboard-system .expiry-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Problem 20: CRM */
.anim-crm-problem {
  text-align: center;
}

.anim-crm-problem .scattered-info {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  color: var(--gray-400);
}

.anim-crm-problem .scattered-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-crm-system {
  text-align: center;
}

.anim-crm-system .crm-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.anim-crm-system .crm-card > i {
  font-size: 1.75rem;
  color: var(--primary);
}

.anim-crm-system .crm-details {
  text-align: left;
}

.anim-crm-system .client-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.anim-crm-system .client-meta {
  font-size: 0.7rem;
  color: var(--gray-500);
}

.anim-crm-system .central-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 21: Dashboard Visibility */
.anim-visibility-problem {
  text-align: center;
}

.anim-visibility-problem .blind-icon {
  margin-bottom: 0.75rem;
}

.anim-visibility-problem .blind-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-visibility-problem .blind-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-dashboard {
  text-align: center;
}

.anim-dashboard .dash-mini {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  height: 60px;
  margin-bottom: 0.75rem;
}

.anim-dashboard .mini-stat {
  width: 20px;
  height: 100%;
  background: var(--gray-200);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
}

.anim-dashboard .stat-bar {
  width: 100%;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  animation: bar-grow 2s ease-in-out infinite;
}

.anim-dashboard .mini-stat:nth-child(2) .stat-bar { animation-delay: 0.2s; background: var(--secondary); }
.anim-dashboard .mini-stat:nth-child(3) .stat-bar { animation-delay: 0.4s; }
.anim-dashboard .mini-stat:nth-child(4) .stat-bar { animation-delay: 0.6s; background: var(--accent); }

@keyframes bar-grow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.anim-dashboard .insights-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 22: Invoice Management */
.anim-invoice-problem {
  text-align: center;
}

.anim-invoice-problem .invoice-pile {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-invoice-problem .invoice-pile i {
  font-size: 2rem;
  color: var(--gray-400);
  transform: rotate(-5deg);
}

.anim-invoice-problem .invoice-pile i:nth-child(2) { transform: rotate(5deg); }
.anim-invoice-problem .invoice-pile i:nth-child(3) { transform: rotate(-3deg); }

.anim-invoice-problem .unpaid-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 600;
}

.anim-invoice-system {
  text-align: center;
}

.anim-invoice-system .invoice-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-invoice-system .invoice-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 171, 199, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-invoice-system .invoice-icon i {
  font-size: 1.25rem;
  color: var(--primary);
}

.anim-invoice-system .arrow-send {
  color: var(--primary);
  animation: arrow-pulse 1.5s ease infinite;
}

.anim-invoice-system .client-receive {
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-invoice-system .client-receive i {
  font-size: 1.25rem;
  color: var(--success);
}

.anim-invoice-system .auto-invoice-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 23: Manager Log */
.anim-log-problem {
  text-align: center;
}

.anim-log-problem .no-record {
  margin-bottom: 0.75rem;
}

.anim-log-problem .no-record i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-log-problem .forgot-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-manager-log {
  text-align: center;
}

.anim-manager-log .log-entries {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-manager-log .log-entry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  animation: log-slide 3s ease infinite;
}

.anim-manager-log .log-entry:nth-child(2) { animation-delay: 0.5s; }
.anim-manager-log .log-entry:nth-child(3) { animation-delay: 1s; }

@keyframes log-slide {
  0%, 100% { opacity: 0.7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}

.anim-manager-log .log-entry i {
  color: var(--primary);
}

.anim-manager-log .activity-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 24: Site Notes */
.anim-notes-problem {
  text-align: center;
}

.anim-notes-problem .lost-notes {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-notes-problem .lost-notes i {
  font-size: 2rem;
  color: var(--gray-400);
  animation: notes-fade 2s ease infinite;
}

.anim-notes-problem .lost-notes i:nth-child(2) { animation-delay: 0.3s; }

@keyframes notes-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.anim-notes-problem .notes-lost-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-site-notes {
  text-align: center;
}

.anim-site-notes .notes-card {
  background: rgba(0, 171, 199, 0.05);
  border: 1px solid rgba(0, 171, 199, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-site-notes .notes-card .note-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.anim-site-notes .notes-card .note-lines {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.anim-site-notes .notes-card .note-line {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
}

.anim-site-notes .notes-card .note-line:last-child {
  width: 60%;
}

.anim-site-notes .shared-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 25: Real-time Notifications */
.anim-missed-notif {
  text-align: center;
}

.anim-missed-notif .notif-off {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.anim-missed-notif .notif-off i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-missed-notif .notif-off .off-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--danger);
  color: white;
  font-size: 0.6rem;
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.anim-missed-notif .missed-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-live-notif {
  text-align: center;
}

.anim-live-notif .notif-stack {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-live-notif .notif-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  animation: notif-pop 2s ease infinite;
}

.anim-live-notif .notif-item:nth-child(2) { animation-delay: 0.4s; }
.anim-live-notif .notif-item:nth-child(3) { animation-delay: 0.8s; }

@keyframes notif-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.anim-live-notif .notif-item i {
  color: var(--success);
}

.anim-live-notif .instant-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 26: Schedule Templates */
.anim-repeat-schedule {
  text-align: center;
}

.anim-repeat-schedule .repeat-icon {
  margin-bottom: 0.75rem;
}

.anim-repeat-schedule .repeat-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-repeat-schedule .repeat-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-template-schedule {
  text-align: center;
}

.anim-template-schedule .template-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 171, 199, 0.05);
  border: 1px dashed var(--primary);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-template-schedule .template-box i {
  font-size: 1.5rem;
  color: var(--primary);
}

.anim-template-schedule .template-box span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.anim-template-schedule .apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  animation: btn-glow 2s ease infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 171, 199, 0.3); }
  50% { box-shadow: 0 0 10px 3px rgba(0, 171, 199, 0.3); }
}

/* Problem 27: Multi-language Support */
.anim-language-barrier {
  text-align: center;
}

.anim-language-barrier .languages {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-language-barrier .lang-block {
  background: var(--gray-200);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.anim-language-barrier .barrier-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-multi-lang {
  text-align: center;
}

.anim-multi-lang .lang-globe {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-multi-lang .lang-globe i {
  font-size: 2.5rem;
  color: var(--primary);
}

.anim-multi-lang .lang-flags {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0.2rem;
  animation: flags-orbit 4s linear infinite;
}

@keyframes flags-orbit {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.anim-multi-lang .lang-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 28: Client Portal */
.anim-client-dark {
  text-align: center;
}

.anim-client-dark .dark-icon {
  margin-bottom: 0.75rem;
}

.anim-client-dark .dark-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-client-dark .dark-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-client-portal {
  text-align: center;
}

.anim-client-portal .portal-screen {
  background: rgba(0, 171, 199, 0.05);
  border: 1px solid rgba(0, 171, 199, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-client-portal .portal-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.anim-client-portal .portal-stats {
  display: flex;
  gap: 0.3rem;
}

.anim-client-portal .p-stat {
  flex: 1;
  background: white;
  padding: 0.2rem;
  border-radius: 4px;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-client-portal .access-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 29: Mobile App */
.anim-desktop-only {
  text-align: center;
}

.anim-desktop-only .desktop-icon {
  margin-bottom: 0.75rem;
}

.anim-desktop-only .desktop-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-desktop-only .desktop-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-mobile-app {
  text-align: center;
}

.anim-mobile-app .phones {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-mobile-app .phone {
  width: 35px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-bounce 2s ease infinite;
}

.anim-mobile-app .phone:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes phone-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.anim-mobile-app .phone i {
  color: white;
  font-size: 1rem;
}

.anim-mobile-app .store-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.anim-mobile-app .store-badge {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--gray-800);
  color: white;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 600;
}

.anim-mobile-app .store-badge i {
  font-size: 0.7rem;
}

/* Problem 30: Custom Branding */
.anim-generic-brand {
  text-align: center;
}

.anim-generic-brand .generic-report {
  background: var(--gray-200);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-generic-brand .generic-report i {
  font-size: 2rem;
  color: var(--gray-400);
}

.anim-generic-brand .no-brand-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-white-label {
  text-align: center;
}

.anim-white-label .branded-report {
  background: linear-gradient(135deg, rgba(0, 171, 199, 0.1), rgba(108, 99, 255, 0.1));
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-white-label .branded-report .brand-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.anim-white-label .branded-report .brand-lines {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.anim-white-label .branded-report .brand-line {
  height: 5px;
  background: var(--gray-200);
  border-radius: 2px;
}

.anim-white-label .branded-report .brand-line:last-child {
  width: 50%;
}

.anim-white-label .your-logo-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 31: Offline Mode */
.anim-no-signal {
  text-align: center;
}

.anim-no-signal .signal-icon {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.anim-no-signal .signal-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-signal .signal-icon .no-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--danger);
  font-weight: 700;
}

.anim-no-signal .no-signal-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-offline-mode {
  text-align: center;
}

.anim-offline-mode .offline-phone {
  width: 50px;
  height: 70px;
  background: var(--gray-100);
  border: 2px solid var(--primary);
  border-radius: 10px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.anim-offline-mode .offline-phone i {
  font-size: 1.5rem;
  color: var(--primary);
}

.anim-offline-mode .offline-phone .sync-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--success);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  animation: sync-pulse 2s ease infinite;
}

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

.anim-offline-mode .offline-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 32: Data Export */
.anim-locked-data {
  text-align: center;
}

.anim-locked-data .locked-icon {
  margin-bottom: 0.75rem;
}

.anim-locked-data .locked-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-locked-data .locked-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-data-export {
  text-align: center;
}

.anim-data-export .export-formats {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-data-export .export-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  animation: export-pop 2s ease infinite;
}

.anim-data-export .export-btn.pdf {
  background: rgba(239, 68, 68, 0.1);
  color: #E57373;
}

.anim-data-export .export-btn.excel {
  background: rgba(34, 197, 94, 0.1);
  color: #6ECFB8;
  animation-delay: 0.3s;
}

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

.anim-data-export .export-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 33: Role-based Access */
.anim-access-chaos {
  text-align: center;
}

.anim-access-chaos .chaos-icons {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-access-chaos .chaos-icons i {
  font-size: 1.5rem;
  color: var(--gray-400);
}

.anim-access-chaos .access-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-role-access {
  text-align: center;
}

.anim-role-access .role-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-role-access .role-level {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

.anim-role-access .role-level.admin {
  background: rgba(239, 68, 68, 0.1);
  color: #E57373;
}

.anim-role-access .role-level.manager {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.anim-role-access .role-level.guard {
  background: rgba(34, 197, 94, 0.1);
  color: #6ECFB8;
}

.anim-role-access .secure-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 34: Performance Analytics */
.anim-no-metrics {
  text-align: center;
}

.anim-no-metrics .question-metrics {
  margin-bottom: 0.75rem;
}

.anim-no-metrics .question-metrics i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-metrics .metrics-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-performance {
  text-align: center;
}

.anim-performance .perf-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4rem;
  height: 50px;
  margin-bottom: 0.75rem;
}

.anim-performance .perf-bar {
  width: 18px;
  border-radius: 4px 4px 0 0;
  animation: perf-grow 2s ease infinite;
}

.anim-performance .perf-bar:nth-child(1) { height: 60%; background: var(--primary); }
.anim-performance .perf-bar:nth-child(2) { height: 80%; background: var(--secondary); animation-delay: 0.2s; }
.anim-performance .perf-bar:nth-child(3) { height: 45%; background: var(--accent); animation-delay: 0.4s; }
.anim-performance .perf-bar:nth-child(4) { height: 90%; background: var(--success); animation-delay: 0.6s; }

@keyframes perf-grow {
  0%, 100% { opacity: 0.7; transform: scaleY(0.9); }
  50% { opacity: 1; transform: scaleY(1); }
}

.anim-performance .analytics-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 35: Shift Reminders */
.anim-forgot-shift {
  text-align: center;
}

.anim-forgot-shift .forgot-icon {
  margin-bottom: 0.75rem;
}

.anim-forgot-shift .forgot-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-forgot-shift .forgot-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-auto-remind {
  text-align: center;
}

.anim-auto-remind .remind-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.anim-auto-remind .clock-icon {
  width: 35px;
  height: 35px;
  background: rgba(0, 171, 199, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-auto-remind .clock-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.anim-auto-remind .remind-arrow {
  color: var(--primary);
  animation: arrow-pulse 1.5s ease infinite;
}

.anim-auto-remind .phone-notif {
  width: 35px;
  height: 35px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.anim-auto-remind .phone-notif i {
  font-size: 1.2rem;
  color: var(--success);
}

.anim-auto-remind .phone-notif .notif-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
  animation: dot-pulse 1s ease infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.anim-auto-remind .remind-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 36: Contract Management */
.anim-contract-mess {
  text-align: center;
}

.anim-contract-mess .contracts-scattered {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-contract-mess .contracts-scattered i {
  font-size: 1.8rem;
  color: var(--gray-400);
  transform: rotate(-10deg);
}

.anim-contract-mess .contracts-scattered i:nth-child(2) { transform: rotate(5deg); }
.anim-contract-mess .contracts-scattered i:nth-child(3) { transform: rotate(-5deg); }

.anim-contract-mess .contract-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-contract-system {
  text-align: center;
}

.anim-contract-system .contract-card {
  background: rgba(0, 171, 199, 0.05);
  border: 1px solid rgba(0, 171, 199, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-contract-system .contract-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.anim-contract-system .contract-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-contract-system .organized-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 37: Compliance Tracking */
.anim-compliance-risk {
  text-align: center;
}

.anim-compliance-risk .risk-icon {
  margin-bottom: 0.75rem;
}

.anim-compliance-risk .risk-icon i {
  font-size: 3rem;
  color: var(--danger);
  animation: risk-shake 0.5s ease infinite;
}

@keyframes risk-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.anim-compliance-risk .risk-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-compliance-track {
  text-align: center;
}

.anim-compliance-track .compliance-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.anim-compliance-track .compliance-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 500;
}

.anim-compliance-track .compliance-item i {
  font-size: 0.8rem;
}

.anim-compliance-track .compliant-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 38: Timesheet Approval */
.anim-timesheet-chaos {
  text-align: center;
}

.anim-timesheet-chaos .papers-icon {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-timesheet-chaos .papers-icon i {
  font-size: 1.8rem;
  color: var(--gray-400);
}

.anim-timesheet-chaos .pending-text {
  font-size: 0.8rem;
  color: var(--warning);
  font-weight: 600;
}

.anim-timesheet-approve {
  text-align: center;
}

.anim-timesheet-approve .approve-flow {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-timesheet-approve .timesheet-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-100);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
}

.anim-timesheet-approve .timesheet-item .approve-btn {
  background: var(--success);
  color: white;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  font-size: 0.6rem;
  animation: approve-pulse 2s ease infinite;
}

@keyframes approve-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.anim-timesheet-approve .quick-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 39: Billing Rates */
.anim-billing-mess {
  text-align: center;
}

.anim-billing-mess .calc-icon {
  margin-bottom: 0.75rem;
}

.anim-billing-mess .calc-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-billing-mess .manual-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-billing-rates {
  text-align: center;
}

.anim-billing-rates .rates-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.anim-billing-rates .rate-item {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 171, 199, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.anim-billing-rates .rate-item .site-name {
  color: var(--gray-600);
}

.anim-billing-rates .rate-item .rate-value {
  color: var(--primary);
  font-weight: 600;
}

.anim-billing-rates .auto-calc-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 40: Training Records */
.anim-no-training {
  text-align: center;
}

.anim-no-training .training-icon {
  margin-bottom: 0.75rem;
}

.anim-no-training .training-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-training .no-records-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-training-track {
  text-align: center;
}

.anim-training-track .training-cards {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-training-track .training-card {
  background: rgba(34, 197, 94, 0.1);
  padding: 0.3rem 0.4rem;
  border-radius: 6px;
  text-align: center;
}

.anim-training-track .training-card i {
  font-size: 1rem;
  color: var(--success);
  display: block;
  margin-bottom: 0.1rem;
}

.anim-training-track .training-card span {
  font-size: 0.55rem;
  color: var(--success);
  font-weight: 600;
}

.anim-training-track .certified-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 41: Equipment Assignment */
.anim-equipment-lost {
  text-align: center;
}

.anim-equipment-lost .equipment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.anim-equipment-lost .equipment-icons i {
  font-size: 1.5rem;
  color: var(--gray-400);
}

.anim-equipment-lost .lost-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-equipment-track {
  text-align: center;
}

.anim-equipment-track .assigned-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.anim-equipment-track .assigned-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-100);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
}

.anim-equipment-track .assigned-item i {
  color: var(--primary);
}

.anim-equipment-track .tracked-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 42: Photo Evidence */
.anim-no-proof {
  text-align: center;
}

.anim-no-proof .no-photo-icon {
  margin-bottom: 0.75rem;
}

.anim-no-proof .no-photo-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-proof .no-proof-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-photo-proof {
  text-align: center;
}

.anim-photo-proof .photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-photo-proof .photo-thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: photo-fade 3s ease infinite;
}

.anim-photo-proof .photo-thumb:nth-child(2) { animation-delay: 0.5s; }
.anim-photo-proof .photo-thumb:nth-child(3) { animation-delay: 1s; }

@keyframes photo-fade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.anim-photo-proof .photo-thumb i {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-photo-proof .evidence-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 43: Custom Forms */
.anim-paper-forms {
  text-align: center;
}

.anim-paper-forms .paper-stack {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-paper-forms .paper-stack i {
  font-size: 2rem;
  color: var(--gray-400);
}

.anim-paper-forms .outdated-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-digital-forms {
  text-align: center;
}

.anim-digital-forms .form-preview {
  background: rgba(0, 171, 199, 0.05);
  border: 1px solid rgba(0, 171, 199, 0.2);
  border-radius: 8px;
  padding: 0.4rem;
  margin-bottom: 0.75rem;
}

.anim-digital-forms .form-field {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-digital-forms .form-field i {
  color: var(--primary);
  font-size: 0.7rem;
}

.anim-digital-forms .custom-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 44: Availability */
.anim-unknown-avail {
  text-align: center;
}

.anim-unknown-avail .question-cal {
  margin-bottom: 0.75rem;
}

.anim-unknown-avail .question-cal i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-unknown-avail .unknown-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-availability {
  text-align: center;
}

.anim-availability .avail-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.anim-availability .avail-day {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 600;
}

.anim-availability .avail-day.available {
  background: rgba(34, 197, 94, 0.2);
  color: var(--success);
}

.anim-availability .avail-day.unavailable {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.anim-availability .clear-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 45: Site Inspections */
.anim-no-inspect {
  text-align: center;
}

.anim-no-inspect .inspect-icon {
  margin-bottom: 0.75rem;
}

.anim-no-inspect .inspect-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-inspect .no-inspect-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-site-inspect {
  text-align: center;
}

.anim-site-inspect .inspect-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-site-inspect .inspect-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: var(--gray-600);
}

.anim-site-inspect .inspect-item i {
  color: var(--success);
}

.anim-site-inspect .thorough-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 46: Break Tracking */
.anim-break-abuse {
  text-align: center;
}

.anim-break-abuse .break-icon {
  margin-bottom: 0.75rem;
}

.anim-break-abuse .break-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-break-abuse .abuse-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-break-track {
  text-align: center;
}

.anim-break-track .break-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 171, 199, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.anim-break-track .break-timer i {
  font-size: 1.2rem;
  color: var(--primary);
}

.anim-break-track .break-timer .time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: monospace;
}

.anim-break-track .monitored-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 47: Overtime Alerts */
.anim-overtime-surprise {
  text-align: center;
}

.anim-overtime-surprise .surprise-icon {
  margin-bottom: 0.75rem;
}

.anim-overtime-surprise .surprise-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-overtime-surprise .surprise-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-overtime-alert {
  text-align: center;
}

.anim-overtime-alert .alert-card {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  animation: alert-blink 2s ease infinite;
}

@keyframes alert-blink {
  0%, 100% { border-color: rgba(245, 158, 11, 0.3); }
  50% { border-color: rgba(245, 158, 11, 0.6); }
}

.anim-overtime-alert .alert-card .alert-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--warning);
}

.anim-overtime-alert .alert-card .alert-msg {
  font-size: 0.65rem;
  color: var(--gray-600);
  margin-top: 0.2rem;
}

.anim-overtime-alert .proactive-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warning);
}

/* Problem 48: Mileage Tracking */
.anim-mileage-unknown {
  text-align: center;
}

.anim-mileage-unknown .car-question {
  margin-bottom: 0.75rem;
}

.anim-mileage-unknown .car-question i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-mileage-unknown .unknown-miles {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-mileage-track {
  text-align: center;
}

.anim-mileage-track .mileage-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 171, 199, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.anim-mileage-track .mileage-display i {
  font-size: 1.2rem;
  color: var(--primary);
}

.anim-mileage-track .mileage-display .miles {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.anim-mileage-track .reimbursement-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 49: Lone Worker Safety */
.anim-lone-danger {
  text-align: center;
}

.anim-lone-danger .lone-icon {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.anim-lone-danger .lone-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-lone-danger .danger-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-lone-worker {
  text-align: center;
}

.anim-lone-worker .check-in-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-lone-worker .timer-ring {
  width: 50px;
  height: 50px;
  border: 3px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-pulse 2s ease infinite;
}

@keyframes ring-pulse {
  0%, 100% { border-color: var(--success); }
  50% { border-color: var(--primary); }
}

.anim-lone-worker .timer-ring i {
  font-size: 1.5rem;
  color: var(--success);
}

.anim-lone-worker .check-text {
  font-size: 0.7rem;
  color: var(--gray-600);
}

.anim-lone-worker .safety-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 50: GPS History */
.anim-no-history {
  text-align: center;
}

.anim-no-history .history-icon {
  margin-bottom: 0.75rem;
}

.anim-no-history .history-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-history .no-history-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-gps-history {
  text-align: center;
}

.anim-gps-history .breadcrumb-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-gps-history .breadcrumb-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: breadcrumb-trail 2s ease infinite;
}

.anim-gps-history .breadcrumb-dot:nth-child(2) { animation-delay: 0.2s; opacity: 0.8; }
.anim-gps-history .breadcrumb-dot:nth-child(3) { animation-delay: 0.4s; opacity: 0.6; }
.anim-gps-history .breadcrumb-dot:nth-child(4) { animation-delay: 0.6s; opacity: 0.4; }
.anim-gps-history .breadcrumb-dot:nth-child(5) { animation-delay: 0.8s; opacity: 0.3; }

@keyframes breadcrumb-trail {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.anim-gps-history .playback-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 51: Skills Matrix */
.anim-wrong-guard {
  text-align: center;
}

.anim-wrong-guard .mismatch-icon {
  margin-bottom: 0.75rem;
}

.anim-wrong-guard .mismatch-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-wrong-guard .mismatch-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-skills-matrix {
  text-align: center;
}

.anim-skills-matrix .skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-skills-matrix .skill-tag {
  background: rgba(0, 171, 199, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
}

.anim-skills-matrix .match-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 52: Daily Reports */
.anim-no-summary {
  text-align: center;
}

.anim-no-summary .summary-icon {
  margin-bottom: 0.75rem;
}

.anim-no-summary .summary-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-summary .no-summary-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-daily-report {
  text-align: center;
}

.anim-daily-report .email-preview {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.4rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.anim-daily-report .email-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.anim-daily-report .email-stats {
  display: flex;
  gap: 0.3rem;
  font-size: 0.55rem;
  color: var(--gray-600);
}

.anim-daily-report .auto-email-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 53: Holiday Pay */
.anim-holiday-confusion {
  text-align: center;
}

.anim-holiday-confusion .holiday-icon {
  margin-bottom: 0.75rem;
}

.anim-holiday-confusion .holiday-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-holiday-confusion .confusion-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-holiday-auto {
  text-align: center;
}

.anim-holiday-auto .holiday-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.anim-holiday-auto .rate-box {
  background: rgba(34, 197, 94, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
}

.anim-holiday-auto .holiday-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 54: Wage Compliance */
.anim-wage-risk {
  text-align: center;
}

.anim-wage-risk .risk-icon {
  margin-bottom: 0.75rem;
}

.anim-wage-risk .risk-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-wage-risk .risk-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-wage-comply {
  text-align: center;
}

.anim-wage-comply .comply-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.anim-wage-comply .comply-badge i {
  font-size: 1.2rem;
  color: var(--success);
}

.anim-wage-comply .comply-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--success);
}

.anim-wage-comply .compliant-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 55: Guard Reviews */
.anim-no-feedback {
  text-align: center;
}

.anim-no-feedback .feedback-icon {
  margin-bottom: 0.75rem;
}

.anim-no-feedback .feedback-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-feedback .no-feedback-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-guard-reviews {
  text-align: center;
}

.anim-guard-reviews .star-rating {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.anim-guard-reviews .star-rating i {
  font-size: 1rem;
  color: var(--warning);
  animation: star-pop 2s ease infinite;
}

.anim-guard-reviews .star-rating i:nth-child(2) { animation-delay: 0.1s; }
.anim-guard-reviews .star-rating i:nth-child(3) { animation-delay: 0.2s; }
.anim-guard-reviews .star-rating i:nth-child(4) { animation-delay: 0.3s; }
.anim-guard-reviews .star-rating i:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.anim-guard-reviews .rating-text {
  font-size: 0.7rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.anim-guard-reviews .review-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warning);
}

/* Problem 56: Audit Logs */
.anim-no-audit {
  text-align: center;
}

.anim-no-audit .audit-icon {
  margin-bottom: 0.75rem;
}

.anim-no-audit .audit-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-audit .no-audit-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-audit-log {
  text-align: center;
}

.anim-audit-log .log-entries {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-audit-log .log-entry {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gray-100);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-audit-log .log-entry i {
  color: var(--primary);
  font-size: 0.7rem;
}

.anim-audit-log .trail-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 57: API Integrations */
.anim-isolated {
  text-align: center;
}

.anim-isolated .isolated-icon {
  margin-bottom: 0.75rem;
}

.anim-isolated .isolated-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-isolated .isolated-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-api-connect {
  text-align: center;
}

.anim-api-connect .api-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-api-connect .api-box {
  width: 30px;
  height: 30px;
  background: rgba(0, 171, 199, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-api-connect .api-box i {
  font-size: 0.9rem;
  color: var(--primary);
}

.anim-api-connect .connect-line {
  width: 20px;
  height: 2px;
  background: var(--primary);
  animation: line-flow 1.5s ease infinite;
}

@keyframes line-flow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.anim-api-connect .integrate-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 58: Time Rounding */
.anim-time-dispute {
  text-align: center;
}

.anim-time-dispute .dispute-icon {
  margin-bottom: 0.75rem;
}

.anim-time-dispute .dispute-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-time-dispute .dispute-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-time-round {
  text-align: center;
}

.anim-time-round .round-example {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.anim-time-round .time-box {
  background: var(--gray-200);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}

.anim-time-round .time-box.rounded {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.anim-time-round .round-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 59: Dispatch */
.anim-dispatch-chaos {
  text-align: center;
}

.anim-dispatch-chaos .chaos-icon {
  margin-bottom: 0.75rem;
}

.anim-dispatch-chaos .chaos-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-dispatch-chaos .chaos-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-dispatch-system {
  text-align: center;
}

.anim-dispatch-system .dispatch-board {
  background: rgba(0, 171, 199, 0.05);
  border: 1px solid rgba(0, 171, 199, 0.2);
  border-radius: 8px;
  padding: 0.4rem;
  margin-bottom: 0.75rem;
}

.anim-dispatch-system .dispatch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
  font-size: 0.6rem;
  border-bottom: 1px solid var(--gray-200);
}

.anim-dispatch-system .dispatch-item:last-child {
  border-bottom: none;
}

.anim-dispatch-system .dispatch-item .guard-name {
  color: var(--gray-600);
}

.anim-dispatch-system .dispatch-item .status-badge {
  background: var(--success);
  color: white;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.5rem;
}

.anim-dispatch-system .dispatch-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 60: Guard Uniforms */
.anim-uniform-issue {
  text-align: center;
}

.anim-uniform-issue .uniform-icon {
  margin-bottom: 0.75rem;
}

.anim-uniform-issue .uniform-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-uniform-issue .uniform-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-uniform-track {
  text-align: center;
}

.anim-uniform-track .uniform-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.anim-uniform-track .uniform-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gray-100);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.65rem;
}

.anim-uniform-track .uniform-item i {
  color: var(--primary);
}

.anim-uniform-track .issued-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 61: Key Management */
.anim-key-lost {
  text-align: center;
}

.anim-key-lost .key-icon {
  margin-bottom: 0.75rem;
}

.anim-key-lost .key-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-key-lost .key-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-key-track {
  text-align: center;
}

.anim-key-track .key-chain {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-key-track .key-item {
  width: 30px;
  height: 30px;
  background: rgba(0, 171, 199, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: key-jingle 2s ease infinite;
}

.anim-key-track .key-item:nth-child(2) { animation-delay: 0.2s; }
.anim-key-track .key-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes key-jingle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.anim-key-track .key-item i {
  font-size: 0.9rem;
  color: var(--primary);
}

.anim-key-track .key-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 62: Guard Burnout */
.anim-burnout {
  text-align: center;
}

.anim-burnout .burnout-icon {
  margin-bottom: 0.75rem;
}

.anim-burnout .burnout-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-burnout .burnout-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-fair-schedule {
  text-align: center;
}

.anim-fair-schedule .balance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-fair-schedule .balance-block {
  width: 25px;
  height: 20px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 4px;
}

.anim-fair-schedule .balance-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 63: No-Show Coverage */
.anim-no-show {
  text-align: center;
}

.anim-no-show .noshow-icon {
  margin-bottom: 0.75rem;
}

.anim-no-show .noshow-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-no-show .noshow-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-auto-cover {
  text-align: center;
}

.anim-auto-cover .cover-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.anim-auto-cover .alert-box {
  background: rgba(239, 68, 68, 0.1);
  padding: 0.3rem;
  border-radius: 6px;
}

.anim-auto-cover .alert-box i {
  font-size: 1rem;
  color: var(--danger);
}

.anim-auto-cover .cover-arrow {
  color: var(--primary);
  animation: arrow-pulse 1.5s ease infinite;
}

.anim-auto-cover .backup-box {
  background: rgba(34, 197, 94, 0.1);
  padding: 0.3rem;
  border-radius: 6px;
}

.anim-auto-cover .backup-box i {
  font-size: 1rem;
  color: var(--success);
}

.anim-auto-cover .cover-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 64: Client Satisfaction */
.anim-unhappy-client {
  text-align: center;
}

.anim-unhappy-client .unhappy-icon {
  margin-bottom: 0.75rem;
}

.anim-unhappy-client .unhappy-icon i {
  font-size: 3rem;
  color: var(--warning);
}

.anim-unhappy-client .unhappy-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-client-feedback {
  text-align: center;
}

.anim-client-feedback .feedback-score {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.anim-client-feedback .feedback-score .score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--success);
}

.anim-client-feedback .feedback-score .label {
  font-size: 0.7rem;
  color: var(--success);
}

.anim-client-feedback .satisfaction-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 65: Guard Turnover */
.anim-turnover {
  text-align: center;
}

.anim-turnover .turnover-icon {
  margin-bottom: 0.75rem;
}

.anim-turnover .turnover-icon i {
  font-size: 3rem;
  color: var(--danger);
}

.anim-turnover .turnover-text {
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.anim-retention {
  text-align: center;
}

.anim-retention .retention-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  height: 40px;
  margin-bottom: 0.75rem;
}

.anim-retention .retention-bar {
  width: 15px;
  background: var(--success);
  border-radius: 3px 3px 0 0;
  animation: retention-grow 2s ease infinite;
}

.anim-retention .retention-bar:nth-child(1) { height: 50%; }
.anim-retention .retention-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.anim-retention .retention-bar:nth-child(3) { height: 80%; animation-delay: 0.4s; }
.anim-retention .retention-bar:nth-child(4) { height: 95%; animation-delay: 0.6s; }

@keyframes retention-grow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.anim-retention .retention-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

/* Problem 66: Dedicated Support */
.anim-no-support {
  text-align: center;
}

.anim-no-support .support-icon {
  margin-bottom: 0.75rem;
}

.anim-no-support .support-icon i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-no-support .support-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-dedicated-support {
  text-align: center;
}

.anim-dedicated-support .support-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 171, 199, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.anim-dedicated-support .support-badge i {
  font-size: 1.2rem;
  color: var(--primary);
}

.anim-dedicated-support .support-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.anim-dedicated-support .help-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Problem 68: Training Tracking */
.anim-no-training {
  text-align: center;
}

.anim-no-training .expired-cert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.anim-no-training .expired-cert i {
  font-size: 1.5rem;
  color: var(--danger);
}

.anim-no-training .expired-cert span {
  font-size: 0.85rem;
  color: var(--danger);
  font-weight: 600;
  text-decoration: line-through;
}

.anim-no-training .training-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-training-system {
  text-align: center;
}

.anim-training-system .training-progress {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.anim-training-system .training-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.anim-training-system .training-item i {
  color: var(--success);
}

.anim-training-system .training-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.anim-training-system .training-bar-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, var(--primary), var(--success));
  border-radius: 3px;
  animation: trainProgress 2s ease-in-out infinite;
}

@keyframes trainProgress {
  0%, 100% { width: 85%; }
  50% { width: 95%; }
}

.anim-training-system .training-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Problem 69: Site Inspection */
.anim-bad-inspection {
  text-align: center;
}

.anim-bad-inspection .messy-clipboard {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.anim-bad-inspection .messy-clipboard i {
  font-size: 2.5rem;
  color: var(--gray-400);
}

.anim-bad-inspection .messy-notes {
  position: absolute;
  top: 0;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.anim-bad-inspection .messy-notes span {
  font-size: 0.6rem;
  background: var(--gray-300);
  padding: 1px 4px;
  border-radius: 2px;
  transform: rotate(5deg);
}

.anim-bad-inspection .inspection-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-inspection-checklist {
  text-align: center;
}

.anim-inspection-checklist .checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.anim-inspection-checklist .check-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 4px;
  animation: checkSlide 0.3s ease-out forwards;
  opacity: 0;
}

.anim-inspection-checklist .check-item:nth-child(1) { animation-delay: 0s; }
.anim-inspection-checklist .check-item:nth-child(2) { animation-delay: 0.5s; }
.anim-inspection-checklist .check-item:nth-child(3) { animation-delay: 1s; }

@keyframes checkSlide {
  to { opacity: 1; }
}

.anim-inspection-checklist .check-item i {
  color: var(--success);
}

.anim-inspection-checklist .checklist-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 70: Certification Expiry */
.anim-cert-expired {
  text-align: center;
}

.anim-cert-expired .cert-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  animation: certPulse 1.5s ease-in-out infinite;
}

@keyframes certPulse {
  0%, 100% { background: rgba(245, 158, 11, 0.1); }
  50% { background: rgba(245, 158, 11, 0.2); }
}

.anim-cert-expired .cert-warning i {
  font-size: 1.5rem;
  color: var(--warning);
}

.anim-cert-expired .cert-warning span {
  font-size: 0.85rem;
  color: var(--warning);
  font-weight: 600;
}

.anim-cert-expired .cert-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-cert-tracker {
  text-align: center;
}

.anim-cert-tracker .cert-cards {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.anim-cert-tracker .cert-card {
  background: rgba(34, 197, 94, 0.1);
  padding: 0.4rem;
  border-radius: 6px;
  text-align: center;
}

.anim-cert-tracker .cert-card i {
  font-size: 1.2rem;
  color: var(--success);
  display: block;
  margin-bottom: 0.2rem;
}

.anim-cert-tracker .cert-card span {
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-cert-tracker .cert-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 71: Incident Analytics */
.anim-repeat-incidents {
  text-align: center;
}

.anim-repeat-incidents .incident-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.anim-repeat-incidents .incident-loop i {
  font-size: 1.5rem;
  color: var(--danger);
  animation: incidentSpin 2s linear infinite;
}

@keyframes incidentSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.anim-repeat-incidents .incident-loop span {
  font-size: 0.85rem;
  color: var(--danger);
  font-weight: 600;
}

.anim-repeat-incidents .repeat-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-incident-analytics {
  text-align: center;
}

.anim-incident-analytics .analytics-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  height: 50px;
  margin-bottom: 0.5rem;
}

.anim-incident-analytics .analytics-bar {
  width: 20px;
  background: linear-gradient(to top, var(--primary), var(--success));
  border-radius: 3px 3px 0 0;
  animation: analyticsGrow 1.5s ease-out forwards;
}

.anim-incident-analytics .analytics-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.anim-incident-analytics .analytics-bar:nth-child(2) { height: 40%; animation-delay: 0.2s; }
.anim-incident-analytics .analytics-bar:nth-child(3) { height: 25%; animation-delay: 0.4s; }
.anim-incident-analytics .analytics-bar:nth-child(4) { height: 15%; animation-delay: 0.6s; }

@keyframes analyticsGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.anim-incident-analytics .trend-arrow {
  color: var(--success);
  font-size: 1rem;
  margin-left: 0.3rem;
}

.anim-incident-analytics .analytics-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 72: Equipment Inventory */
.anim-lost-equipment {
  text-align: center;
}

.anim-lost-equipment .equipment-mess {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.anim-lost-equipment .equipment-mess i {
  font-size: 1.5rem;
  color: var(--gray-400);
  opacity: 0.5;
}

.anim-lost-equipment .equipment-mess i:nth-child(2) {
  color: var(--danger);
  opacity: 1;
  animation: equipmentShake 0.5s ease-in-out infinite;
}

@keyframes equipmentShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.anim-lost-equipment .equipment-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-equipment-inventory {
  text-align: center;
}

.anim-equipment-inventory .inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.anim-equipment-inventory .inv-item {
  background: rgba(91, 155, 213, 0.1);
  padding: 0.4rem;
  border-radius: 4px;
  text-align: center;
}

.anim-equipment-inventory .inv-item i {
  font-size: 1rem;
  color: var(--primary);
}

.anim-equipment-inventory .inv-item span {
  display: block;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-equipment-inventory .inventory-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 73: Contract Management */
.anim-lost-contracts {
  text-align: center;
}

.anim-lost-contracts .contract-pile {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.anim-lost-contracts .contract-pile i {
  font-size: 2.5rem;
  color: var(--gray-400);
}

.anim-lost-contracts .contract-pile .dust {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 1rem;
  animation: dustFloat 2s ease-in-out infinite;
}

@keyframes dustFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-5px) rotate(10deg); opacity: 1; }
}

.anim-lost-contracts .contract-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-contract-system {
  text-align: center;
}

.anim-contract-system .contract-cards {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.anim-contract-system .contract-card {
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem;
  border-radius: 6px;
  text-align: center;
}

.anim-contract-system .contract-card i {
  font-size: 1.2rem;
  color: var(--success);
}

.anim-contract-system .contract-card span {
  display: block;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-contract-system .contract-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 74: Performance Reviews */
.anim-no-reviews {
  text-align: center;
}

.anim-no-reviews .review-void {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(156, 163, 175, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.anim-no-reviews .review-void i {
  font-size: 1.5rem;
  color: var(--gray-400);
}

.anim-no-reviews .review-void span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.anim-no-reviews .review-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-review-system {
  text-align: center;
}

.anim-review-system .review-card {
  background: rgba(91, 155, 213, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.anim-review-system .review-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}

.anim-review-system .review-stars i {
  font-size: 1rem;
  color: #fbbf24;
  animation: starPop 0.3s ease-out forwards;
  opacity: 0;
}

.anim-review-system .review-stars i:nth-child(1) { animation-delay: 0s; }
.anim-review-system .review-stars i:nth-child(2) { animation-delay: 0.1s; }
.anim-review-system .review-stars i:nth-child(3) { animation-delay: 0.2s; }
.anim-review-system .review-stars i:nth-child(4) { animation-delay: 0.3s; }
.anim-review-system .review-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPop {
  to { opacity: 1; transform: scale(1.1); }
}

.anim-review-system .review-text {
  font-size: 0.7rem;
  color: var(--gray-600);
}

.anim-review-system .review-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 75: Visitor Management */
.anim-no-visitor-log {
  text-align: center;
}

.anim-no-visitor-log .visitor-chaos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.anim-no-visitor-log .visitor-chaos i {
  font-size: 1.3rem;
  color: var(--gray-400);
}

.anim-no-visitor-log .visitor-chaos .question-marks {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: bold;
}

.anim-no-visitor-log .visitor-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-visitor-system {
  text-align: center;
}

.anim-visitor-system .visitor-log {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.anim-visitor-system .visitor-entry {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  background: rgba(91, 155, 213, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}

.anim-visitor-system .visitor-entry i {
  color: var(--primary);
}

.anim-visitor-system .visitor-entry .time {
  margin-left: auto;
  color: var(--gray-500);
}

.anim-visitor-system .visitor-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 76: System Integration */
.anim-no-integration {
  text-align: center;
}

.anim-no-integration .isolated-systems {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.anim-no-integration .isolated-systems .system-box {
  background: var(--gray-200);
  padding: 0.5rem;
  border-radius: 6px;
}

.anim-no-integration .isolated-systems .system-box i {
  font-size: 1.2rem;
  color: var(--gray-500);
}

.anim-no-integration .isolated-systems .no-connect {
  display: flex;
  align-items: center;
  color: var(--danger);
  font-size: 1.2rem;
}

.anim-no-integration .integration-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-integration-hub {
  text-align: center;
}

.anim-integration-hub .hub-visual {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.anim-integration-hub .hub-center {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--success));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-integration-hub .hub-center i {
  color: white;
  font-size: 1.2rem;
}

.anim-integration-hub .hub-connections {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.anim-integration-hub .hub-connections .conn-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: hubPulse 1.5s ease-in-out infinite;
}

.anim-integration-hub .hub-connections .conn-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.anim-integration-hub .hub-connections .conn-dot:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.3s; }
.anim-integration-hub .hub-connections .conn-dot:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%); animation-delay: 0.6s; }
.anim-integration-hub .hub-connections .conn-dot:nth-child(4) { right: 0; top: 50%; transform: translateY(-50%); animation-delay: 0.9s; }

@keyframes hubPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.anim-integration-hub .hub-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 77: Business Analytics */
.anim-no-analytics {
  text-align: center;
}

.anim-no-analytics .blind-business {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.anim-no-analytics .blind-business i {
  font-size: 2rem;
  color: var(--gray-400);
}

.anim-no-analytics .blind-business .blindfold {
  position: absolute;
  background: var(--gray-600);
  height: 8px;
  width: 30px;
  border-radius: 4px;
}

.anim-no-analytics .analytics-problem-text {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.anim-bi-dashboard {
  text-align: center;
}

.anim-bi-dashboard .bi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.anim-bi-dashboard .bi-card {
  background: rgba(91, 155, 213, 0.1);
  padding: 0.4rem;
  border-radius: 4px;
  text-align: center;
}

.anim-bi-dashboard .bi-card i {
  font-size: 0.9rem;
  color: var(--primary);
}

.anim-bi-dashboard .bi-card span {
  display: block;
  font-size: 0.6rem;
  color: var(--gray-600);
}

.anim-bi-dashboard .bi-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Problem 78: Uptime */
.anim-downtime-problem {
  text-align: center;
}

.anim-downtime-problem .server-down {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.anim-downtime-problem .server-down i {
  font-size: 3rem;
  color: var(--gray-400);
}

.anim-downtime-problem .down-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--danger);
  font-weight: 700;
}

.anim-downtime-problem .downtime-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.anim-uptime {
  text-align: center;
}

.anim-uptime .uptime-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.anim-uptime .uptime-badge i {
  font-size: 1.25rem;
  color: var(--success);
}

.anim-uptime .uptime-badge span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
}

.anim-uptime .backup-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.anim-uptime .backup-icons i {
  font-size: 1.25rem;
  color: var(--primary);
  animation: server-pulse 1.5s ease-in-out infinite;
}

.anim-uptime .backup-icons i:nth-child(2) { animation-delay: 0.3s; }
.anim-uptime .backup-icons i:nth-child(3) { animation-delay: 0.6s; }

@keyframes server-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.anim-uptime .backup-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* ==================== ALL FEATURES SECTION ==================== */
.all-features {
  padding: 6rem 0;
  background: var(--gray-50);
}

.features-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.feature-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-tab:hover,
.feature-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.features-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-mega-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

.feature-mega-card:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: transparent;
}

.feature-mega-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(110, 207, 184, 0.1));
  color: var(--primary);
}

.feature-mega-card:nth-child(3n+2) .feature-mega-icon {
  background: linear-gradient(135deg, rgba(110, 207, 184, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--secondary);
}

.feature-mega-card:nth-child(3n+3) .feature-mega-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
  color: var(--accent);
}

.feature-mega-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-mega-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ==================== SWITCH JOURNEY SECTION ==================== */
.switch-journey {
  position: relative;
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

/* Clean subtle background pattern */
.switch-journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(91, 155, 213, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(110, 207, 184, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Hide aurora background - not needed */
.aurora-bg,
.floating-icons {
  display: none;
}

/* Section Header - Clean & Professional */
.journey-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #059669;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.journey-badge i {
  font-size: 1rem;
  animation: gentleBounce 2s ease-in-out infinite;
}

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

.journey-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.journey-header h2 .highlight {
  color: #5B9BD5;
  position: relative;
}

.journey-header h2 .highlight::after {
  display: none;
}

.journey-header p {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Journey Path Container */
.journey-path {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

/* Hide the wavy SVG path */
.journey-line-svg {
  display: none;
}

/* Journey Cards Grid */
.journey-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Connecting Line */
.journey-cards::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #5B9BD5, #7BB3E0, #6ECFB8, #F5A962);
  z-index: 0;
  border-radius: 2px;
}

/* Journey Card */
.journey-card {
  position: relative;
  opacity: 1;
  transform: none;
  z-index: 1;
}

.journey-card-inner {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.journey-card-inner::before {
  display: none;
}

.journey-card:hover .journey-card-inner {
  transform: translateY(-8px);
  border-color: var(--card-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Step Number - Clean Circle */
.journey-step-num {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 48px;
  height: 48px;
  background: var(--card-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px var(--card-shadow);
  border: 3px solid #FFFFFF;
  transition: all 0.3s ease;
}

.journey-card:hover .journey-step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--card-shadow);
}

/* Card Icon - Clean & Simple */
.journey-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.journey-icon-bg {
  display: none;
}

.journey-icon {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  font-size: 1.75rem;
  color: var(--card-color);
  transition: all 0.3s ease;
}

.journey-card:hover .journey-icon-wrap {
  transform: scale(1.05);
}

.journey-card:hover .journey-icon {
  transform: scale(1.1);
}

/* Card Content */
.journey-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.journey-card p {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Time Badge - Clean Style */
.journey-time {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #F3F4F6;
  color: #4B5563;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
}

.journey-time i {
  font-size: 0.8rem;
  color: var(--card-color);
}

/* Card Colors - Clean Palette */
.journey-card:nth-child(1) {
  --card-color: #5B9BD5;
  --card-color-dark: #4A8BC4;
  --card-bg: #EFF6FF;
  --card-shadow: rgba(91, 155, 213, 0.3);
  --card-rgb: 91, 155, 213;
}

.journey-card:nth-child(2) {
  --card-color: #7BB3E0;
  --card-color-dark: #5B9BD5;
  --card-bg: #F0F9FF;
  --card-shadow: rgba(123, 179, 224, 0.3);
  --card-rgb: 123, 179, 224;
}

.journey-card:nth-child(3) {
  --card-color: #6ECFB8;
  --card-color-dark: #5BC4AA;
  --card-bg: #ECFDF5;
  --card-shadow: rgba(110, 207, 184, 0.3);
  --card-rgb: 110, 207, 184;
}

.journey-card:nth-child(4) {
  --card-color: #F5A962;
  --card-color-dark: #E89B4E;
  --card-bg: #FFF7ED;
  --card-shadow: rgba(245, 169, 98, 0.3);
  --card-rgb: 245, 169, 98;
}

/* Animation on scroll */
.journey-card {
  animation: fadeInUp 0.6s ease forwards;
}

.journey-card:nth-child(1) { animation-delay: 0.1s; }
.journey-card:nth-child(2) { animation-delay: 0.2s; }
.journey-card:nth-child(3) { animation-delay: 0.3s; }
.journey-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Bottom Stats Bar in Journey Section - Hidden for cleaner look */
.journey-stats {
  display: none;
}

.journey-stat {
  display: none;
}

.journey-stat .stat-number {
  display: none;
}

.journey-stat .stat-label {
  display: none;
}

/* CTA Button - Clean Style */
.journey-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5B9BD5;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(91, 155, 213, 0.3);
  transition: all 0.3s ease;
}

.journey-cta-btn::before {
  display: none;
}

.journey-cta-btn:hover {
  background: #4A8BC4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 155, 213, 0.4);
}

.journey-cta-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.journey-cta-btn:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
  .journey-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-cards::before {
    display: none;
  }

  .journey-header h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .switch-journey {
    padding: 4rem 0;
  }

  .journey-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .journey-header h2 {
    font-size: 1.75rem;
  }

  .journey-header p {
    font-size: 1rem;
  }

  .journey-card-inner {
    padding: 1.5rem 1.25rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .journey-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #5B9BD5 0%, #4A8BC4 50%, #6ECFB8 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.cta-benefit i {
  color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  color: var(--gray-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ==================== PROFESSIONAL ANIMATIONS ==================== */

/* Card Visual Container */
.card-visual {
  position: relative;
  overflow: hidden;
}

/* Professional Keyframe Animations */
@keyframes float-smooth {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  75% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 155, 213, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(91, 155, 213, 0.1); }
}

@keyframes shake-subtle {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes ripple-effect {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes typing-cursor {
  0%, 100% { border-right-color: transparent; }
  50% { border-right-color: var(--primary); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes swing {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
}

@keyframes wave-motion {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-5px) scaleY(0.9); }
}

@keyframes rotate-3d {
  0% { transform: perspective(500px) rotateY(0deg); }
  100% { transform: perspective(500px) rotateY(360deg); }
}

@keyframes flash-attention {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.5; }
}

@keyframes draw-line {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@keyframes morph-blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes icon-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

@keyframes check-mark {
  0% { stroke-dashoffset: 50; }
  100% { stroke-dashoffset: 0; }
}

@keyframes error-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  20%, 60% { transform: translateX(-5px) rotate(-2deg); }
  40%, 80% { transform: translateX(5px) rotate(2deg); }
}

@keyframes success-pop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes notification-slide {
  0% { transform: translateX(100%); opacity: 0; }
  10% { transform: translateX(0); opacity: 1; }
  90% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}

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

@keyframes loading-dots {
  0%, 20% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes radar-ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes card-flip {
  0% { transform: perspective(1000px) rotateY(0); }
  100% { transform: perspective(1000px) rotateY(180deg); }
}

/* Enhanced Animation Elements inside Cards */
.card-visual [class*="anim-"] {
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Enhanced Problem Animation Styles */
.anim-guard-idle {
  animation: float-smooth 4s ease-in-out infinite;
}

.anim-guard-idle .emoji {
  animation: shake-subtle 3s ease-in-out infinite;
}

.anim-guard-idle .question span {
  animation: bounce-soft 0.8s ease-in-out infinite;
  display: inline-block;
}

/* Enhanced Multi-Verify Animation */
.anim-multi-verify .verify-method {
  animation: scale-pulse 2s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-multi-verify .verify-method:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(91, 155, 213, 0.25);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-light), white);
}

.anim-multi-verify .verify-method i {
  transition: transform 0.3s ease;
}

.anim-multi-verify .verify-method:hover i {
  transform: scale(1.2);
}

/* GPS Tracking Enhanced */
.anim-gps-track {
  position: relative;
}

.anim-gps-track .track-dot {
  animation: radar-ping 2s ease-out infinite;
}

.anim-gps-track .track-line {
  position: relative;
  overflow: hidden;
}

.anim-gps-track .track-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: data-flow 2s linear infinite;
}

/* Clock Animations Enhanced */
.anim-late-clock, .anim-time-confusion {
  animation: error-shake 4s ease-in-out infinite;
}

.anim-auto-track {
  animation: success-pop 0.5s ease-out forwards;
}

/* Status Indicators */
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: status-blink 2s ease-in-out infinite;
}

.status-dot.online {
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.status-dot.offline {
  background: var(--danger);
  box-shadow: 0 0 10px var(--danger);
}

/* Progress Bars Enhanced */
.progress-animated {
  position: relative;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.progress-animated .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--success));
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite, progress-fill 2s ease-out forwards;
  border-radius: 4px;
}


/* Enhanced Notification Animations */
.notif-badge {
  animation: heartbeat 2s ease-in-out infinite;
}

.notif-dot {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Chart Bars Animation */
.chart-bar, .analytics-bar, .retention-bar, .balance-bar {
  transform-origin: bottom;
  animation: wave-motion 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

/* Document & File Animations */
.doc-icon, .file-icon {
  animation: swing 3s ease-in-out infinite;
}

/* Money/Currency Animations */
.money-icon, .dollar-icon {
  animation: bounce-soft 2s ease-in-out infinite;
  color: var(--success);
}

/* Alert/Warning Animations */
.alert-icon, .warning-icon {
  animation: flash-attention 2s ease-in-out infinite;
  color: var(--warning);
}

/* Checkmark Success Animations */
.check-icon, .success-icon {
  animation: success-pop 0.5s ease-out forwards;
  color: var(--success);
}

/* Loading State Animations */
.loading-spinner {
  animation: spin-slow 1s linear infinite;
}

.loading-dot {
  animation: loading-dots 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

/* Mobile/Phone Animations */
.phone-icon {
  animation: swing 4s ease-in-out infinite;
}

.phone-vibrate {
  animation: shake-subtle 0.5s ease-in-out infinite;
}

/* ==================== ENHANCED INTERNAL ELEMENT ANIMATIONS ==================== */

/* Emoji Character Animations */
.anim-guard-idle .emoji,
.anim-buddy-punch .guards,
.anim-shift-problem .guard-sick .emoji,
.anim-task-problem .confused-guard .emoji,
.anim-orders-problem .guard-confused .emoji {
  display: inline-block;
  animation: emoji-bounce 3s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes emoji-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-8px) scale(1.05); }
  50% { transform: translateY(-3px) scale(1.02); }
  75% { transform: translateY(-6px) scale(1.03); }
}

/* Enhanced Question Mark Animation */
.anim-guard-idle .question span,
.anim-orders-problem .guard-confused .question {
  animation: question-float 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes question-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 1; }
  50% { transform: translateY(-10px) rotate(5deg); opacity: 0.7; }
}

/* Icon Glow Effects */
.anim-multi-verify .verify-method i,
.anim-face-gps .v-badge i,
.anim-geofence .guard-dot,
.anim-sos-button .btn-sos,
.anim-live-notif .notif-item i,
.anim-compliance-track .compliance-item i {
  filter: drop-shadow(0 0 0 transparent);
  transition: filter 0.3s ease;
}

.anim-multi-verify .verify-method:hover i {
  filter: drop-shadow(0 0 8px var(--primary));
}

/* Scanning Line Enhanced Animation */
.anim-face-gps .scan-line-face {
  animation: face-scan-enhanced 2s ease-in-out infinite;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(110, 207, 184, 0.3) 25%,
    var(--secondary) 50%,
    rgba(110, 207, 184, 0.3) 75%,
    transparent 100%);
  box-shadow: 0 0 15px var(--secondary);
}

@keyframes face-scan-enhanced {
  0% { top: 0; opacity: 0.5; }
  25% { opacity: 1; }
  50% { top: calc(100% - 3px); opacity: 1; }
  75% { opacity: 1; }
  100% { top: 0; opacity: 0.5; }
}

/* Enhanced SOS Button Pulse */
.anim-sos-button .btn-sos {
  animation: sos-pulse 1s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

@keyframes sos-pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  50% { box-shadow: 0 0 20px 10px rgba(239, 68, 68, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
}

/* Map Dot Radar Effect */
.anim-map-dots .dot {
  position: relative;
}

.anim-map-dots .dot::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  animation: radar-wave 2s ease-out infinite;
  opacity: 0;
}

@keyframes radar-wave {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* Enhanced Vehicle Route Animation */
.anim-vehicle-route .car-moving {
  animation: car-drive 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes car-drive {
  0% { transform: translateX(-30px) rotate(-5deg); }
  25% { transform: translateX(-10px) rotate(0deg); }
  50% { transform: translateX(30px) rotate(5deg); }
  75% { transform: translateX(20px) rotate(0deg); }
  100% { transform: translateX(30px) rotate(-5deg); }
}

/* Checkpoint Glow Animation */
.anim-vehicle-route .checkpoint i {
  animation: checkpoint-glow 2s ease-in-out infinite;
}

@keyframes checkpoint-glow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 10px var(--primary)); }
}

/* Chat Bubble Typing Animation */
.anim-team-chat .bubble {
  position: relative;
  overflow: hidden;
}

.anim-team-chat .bubble.outgoing::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: bubble-shine 3s ease-in-out infinite;
}

@keyframes bubble-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Schedule Slot Fill Animation */
.anim-auto-schedule .schedule-slot {
  position: relative;
  overflow: hidden;
}

.anim-auto-schedule .schedule-slot.filling::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--secondary);
  animation: slot-fill 1.5s ease-in-out infinite;
  border-radius: inherit;
}

@keyframes slot-fill {
  0%, 100% { height: 0; opacity: 0.5; }
  50% { height: 100%; opacity: 1; }
}

/* Payroll Flow Step Glow */
.anim-payroll-auto .flow-step {
  position: relative;
}

.anim-payroll-auto .flow-step::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  z-index: -1;
  opacity: 0;
  animation: step-glow 2s ease-in-out infinite;
}

.anim-payroll-auto .flow-step:nth-child(1)::after { animation-delay: 0s; }
.anim-payroll-auto .flow-step:nth-child(3)::after { animation-delay: 0.5s; }
.anim-payroll-auto .flow-step:nth-child(5)::after { animation-delay: 1s; }

@keyframes step-glow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* Geofence Ring Enhanced Animation */
.anim-geofence .geofence-ring {
  animation: geofence-rotate 8s linear infinite, geofence-pulse 2s ease-in-out infinite;
}

@keyframes geofence-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes geofence-pulse {
  0%, 100% { border-color: var(--primary); opacity: 0.7; }
  50% { border-color: var(--secondary); opacity: 1; }
}

/* Guard Dot Heartbeat */
.anim-geofence .guard-dot {
  animation: guard-heartbeat 1.5s ease-in-out infinite;
}

@keyframes guard-heartbeat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 4px rgba(110, 207, 184, 0.3); }
  15% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 8px rgba(110, 207, 184, 0.2); }
  30% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 4px rgba(110, 207, 184, 0.3); }
  45% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 0 6px rgba(110, 207, 184, 0.25); }
}

/* Dashboard Bar Growth Animation */
.anim-dashboard .stat-bar {
  animation: bar-grow-enhanced 2s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes bar-grow-enhanced {
  0% { transform: scaleY(0.3); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.5; }
}

/* Notification Pop Enhanced */
.anim-live-notif .notif-item {
  animation: notif-slide-pop 2s ease infinite;
  transform-origin: left;
}

@keyframes notif-slide-pop {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.8; }
  50% { transform: translateX(5px) scale(1.02); opacity: 1; }
}

/* Task Item Check Animation */
.anim-task-list .task-item.done i {
  animation: check-bounce 0.5s ease-out;
}

@keyframes check-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Document Flip Animation */
.anim-incident-digital .report-card > i,
.anim-post-orders .orders-screen > i,
.anim-contract-system .contract-card i {
  animation: doc-float 3s ease-in-out infinite;
}

@keyframes doc-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(2deg); }
  75% { transform: translateY(-3px) rotate(-2deg); }
}

/* Phone Notification Bounce */
.anim-auto-remind .phone-notif {
  animation: phone-notify 2s ease-in-out infinite;
}

@keyframes phone-notify {
  0%, 100% { transform: translateY(0); }
  10% { transform: translateY(-3px) rotate(-5deg); }
  20% { transform: translateY(0) rotate(0deg); }
  30% { transform: translateY(-2px) rotate(3deg); }
  40% { transform: translateY(0); }
}

/* Template Box Dashed Border Animation */
.anim-template-schedule .template-box {
  background: linear-gradient(90deg, var(--primary) 50%, transparent 50%) repeat-x,
              linear-gradient(90deg, var(--primary) 50%, transparent 50%) repeat-x,
              linear-gradient(0deg, var(--primary) 50%, transparent 50%) repeat-y,
              linear-gradient(0deg, var(--primary) 50%, transparent 50%) repeat-y;
  background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  animation: border-dance 1s linear infinite;
  border: none !important;
}

@keyframes border-dance {
  100% {
    background-position: 8px 0, -8px 100%, 0 -8px, 100% 8px;
  }
}

/* Apply Button Glow Enhanced */
.anim-template-schedule .apply-btn {
  animation: apply-glow 2s ease infinite;
  position: relative;
  overflow: hidden;
}

.anim-template-schedule .apply-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Globe Orbit Animation */
.anim-multi-lang .lang-globe i {
  animation: globe-spin 10s linear infinite;
}

@keyframes globe-spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* Mobile App Phone Float */
.anim-mobile-app .phone {
  animation: phone-float 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(91, 155, 213, 0.3);
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); box-shadow: 0 10px 30px rgba(91, 155, 213, 0.3); }
  50% { transform: translateY(-10px) rotate(3deg); box-shadow: 0 20px 40px rgba(91, 155, 213, 0.4); }
}

/* Photo Grid Shimmer */
.anim-photo-proof .photo-thumb {
  position: relative;
  overflow: hidden;
}

.anim-photo-proof .photo-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: photo-shimmer 3s ease-in-out infinite;
}

.anim-photo-proof .photo-thumb:nth-child(1)::after { animation-delay: 0s; }
.anim-photo-proof .photo-thumb:nth-child(2)::after { animation-delay: 0.5s; }
.anim-photo-proof .photo-thumb:nth-child(3)::after { animation-delay: 1s; }

@keyframes photo-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Compliance Checkmark Cascade */
.anim-compliance-track .compliance-item {
  animation: compliance-check 2s ease-in-out infinite;
}

.anim-compliance-track .compliance-item:nth-child(1) { animation-delay: 0s; }
.anim-compliance-track .compliance-item:nth-child(2) { animation-delay: 0.3s; }
.anim-compliance-track .compliance-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes compliance-check {
  0%, 100% { transform: translateX(0); background: rgba(34, 197, 94, 0.1); }
  50% { transform: translateX(3px); background: rgba(34, 197, 94, 0.2); }
}

/* Invoice Arrow Pulse */
.anim-invoice-system .arrow-send {
  animation: arrow-fly 1.5s ease-in-out infinite;
}

@keyframes arrow-fly {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* Training Card Badge Animation */
.anim-training-track .training-card {
  animation: training-pop 2s ease-in-out infinite;
}

.anim-training-track .training-card:nth-child(1) { animation-delay: 0s; }
.anim-training-track .training-card:nth-child(2) { animation-delay: 0.3s; }
.anim-training-track .training-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes training-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
}

/* Equipment Icon Float */
.anim-equipment-track .assigned-item i {
  animation: equip-wiggle 3s ease-in-out infinite;
}

@keyframes equip-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* Report Spin Icon */
.anim-report-auto .report-icon .spin {
  animation: spin-glow 1s linear infinite;
}

@keyframes spin-glow {
  0% { transform: rotate(0deg); filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 5px var(--primary)); }
  100% { transform: rotate(360deg); filter: drop-shadow(0 0 0 transparent); }
}

/* Late Badge Urgent Pulse */
.anim-late-guard .late-badge {
  animation: late-urgent 0.8s ease-in-out infinite;
}

@keyframes late-urgent {
  0%, 100% { transform: scale(1); background: var(--danger); }
  50% { transform: scale(1.15); background: #B91C1C; box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
}

/* Visitor Walk Animation */
.anim-visitor-problem .visitor-icons i:first-child {
  animation: visitor-walk 2s ease-in-out infinite;
}

@keyframes visitor-walk {
  0%, 100% { transform: translateX(-10px) scaleX(1); opacity: 0.5; }
  25% { transform: translateX(-5px) scaleX(0.95); opacity: 0.7; }
  50% { transform: translateX(0) scaleX(1); opacity: 1; }
  75% { transform: translateX(-2px) scaleX(0.98); opacity: 0.9; }
}

/* Asset Card Shimmer */
.anim-asset-track .asset-card {
  position: relative;
  overflow: hidden;
}

.anim-asset-track .asset-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: card-shimmer 4s ease-in-out infinite;
}

@keyframes card-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

/* CRM Card Icon Pulse */
.anim-crm-system .crm-card > i {
  animation: crm-pulse 2s ease-in-out infinite;
}

@keyframes crm-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 8px var(--primary)); }
}

/* Client Portal Stats Animation */
.anim-client-portal .p-stat {
  animation: stat-highlight 3s ease-in-out infinite;
}

.anim-client-portal .p-stat:nth-child(1) { animation-delay: 0s; }
.anim-client-portal .p-stat:nth-child(2) { animation-delay: 0.5s; }
.anim-client-portal .p-stat:nth-child(3) { animation-delay: 1s; }

@keyframes stat-highlight {
  0%, 100% { background: white; }
  50% { background: rgba(91, 155, 213, 0.1); }
}

/* Notes Card Lines Animation */
.anim-site-notes .notes-card .note-line {
  animation: line-type 2s ease-in-out infinite;
  transform-origin: left;
}

.anim-site-notes .notes-card .note-line:nth-child(1) { animation-delay: 0s; }
.anim-site-notes .notes-card .note-line:nth-child(2) { animation-delay: 0.3s; }
.anim-site-notes .notes-card .note-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes line-type {
  0% { transform: scaleX(0); opacity: 0; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0.7; }
}

/* Leave System Approve Button Pop */
.anim-leave-system .approve-box {
  animation: approve-pop 2s ease-in-out infinite;
}

@keyframes approve-pop {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 15px 5px rgba(34, 197, 94, 0.2); }
}

/* Shift Swap Box Glow */
.anim-shift-swap .shift-box.open {
  animation: shift-glow 1.5s ease-in-out infinite;
}

@keyframes shift-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 20px 8px rgba(245, 158, 11, 0.2); }
}

/* Success Verified Result Glow */
.anim-multi-verify .verify-result,
.anim-face-gps .verified-result {
  animation: verified-glow 2s ease-in-out infinite;
}

@keyframes verified-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 15px 3px rgba(34, 197, 94, 0.2); }
}

/* Danger Icon Shake */
.anim-sos-problem .guard-danger,
.anim-compliance-risk .risk-icon i {
  animation: danger-alert 0.5s ease-in-out infinite;
}

@keyframes danger-alert {
  0%, 100% { transform: translateX(0) rotate(0); }
  20% { transform: translateX(-3px) rotate(-3deg); }
  40% { transform: translateX(3px) rotate(3deg); }
  60% { transform: translateX(-2px) rotate(-2deg); }
  80% { transform: translateX(2px) rotate(2deg); }
}

/* Money Fly Away Enhanced */
.anim-buddy-punch .loss i {
  animation: money-fly 2s ease-in-out infinite;
}

@keyframes money-fly {
  0% { transform: translateY(0) rotate(0) scale(1); opacity: 1; }
  50% { transform: translateY(-20px) rotate(20deg) scale(0.8); opacity: 0.5; }
  100% { transform: translateY(-30px) rotate(30deg) scale(0.6); opacity: 0; }
}

/* Calendar Chaos Enhanced */
.anim-schedule-chaos .calendar-mess i {
  animation: calendar-shake 2s ease-in-out infinite;
}

@keyframes calendar-shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-5deg); }
  20% { transform: rotate(5deg); }
  30% { transform: rotate(-3deg); }
  40% { transform: rotate(3deg); }
  50% { transform: rotate(0deg); }
}

/* Chaos Marks Explode */
.anim-schedule-chaos .chaos-marks span {
  animation: chaos-explode 0.8s ease-in-out infinite alternate;
}

@keyframes chaos-explode {
  0% { transform: translateY(0) rotate(-10deg) scale(1); }
  100% { transform: translateY(-8px) rotate(10deg) scale(1.2); }
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .features-mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .features-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .problem-row {
    grid-template-columns: 1fr;
  }

  .problem-row:nth-child(even) {
    direction: ltr;
  }

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

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

  .steps-row::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .features-strip-grid {
    grid-template-columns: 1fr;
  }

  .features-mega-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-benefits {
    flex-direction: column;
    align-items: center;
  }
}


/* ==================== SWITCH TO STAFFERIN SECTION ==================== */
.switch-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
  overflow: hidden;
}

.switch-bg-elements {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.shape-1 {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(110, 207, 184, 0.05));
  top: -100px; left: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(110, 207, 184, 0.1), rgba(52, 211, 153, 0.05));
  bottom: -50px; right: 10%;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px; height: 150px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  top: 30%; right: -50px;
  animation: floatShape 18s ease-in-out infinite;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91, 155, 213, 0.15) 0%, transparent 70%);
  top: 20%; left: 10%;
  animation: pulseOrb 8s ease-in-out infinite;
}

.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(110, 207, 184, 0.12) 0%, transparent 70%);
  bottom: 10%; right: 15%;
  animation: pulseOrb 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 20px) rotate(-5deg); }
  75% { transform: translate(15px, 10px) rotate(3deg); }
}

@keyframes pulseOrb {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* Hero Header Styles */
.switch-hero-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #4A5568;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0, #6ECFB8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-cta-buttons .cta-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(91, 155, 213, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.hero-cta-buttons .cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(91, 155, 213, 0.5);
}

.hero-cta-buttons .cta-btn-primary .btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-cta-buttons .cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: #5B9BD5;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid rgba(91, 155, 213, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.hero-cta-buttons .cta-btn-outline:hover {
  border-color: #5B9BD5;
  background: rgba(91, 155, 213, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.1rem; padding: 0 1rem; }
  .hero-cta-buttons { flex-direction: column; align-items: center; }
  .hero-cta-buttons .cta-btn-primary,
  .hero-cta-buttons .cta-btn-outline { width: 100%; max-width: 280px; justify-content: center; }
}

.switch-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.switch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(110, 207, 184, 0.1));
  color: #5B9BD5;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(91, 155, 213, 0.2);
}

.switch-badge i { animation: flashIcon 2s ease-in-out infinite; }

@keyframes flashIcon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.switch-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.switch-subtitle {
  font-size: 1.2rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.comparison-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.comparison-card {
  flex: 1;
  max-width: 380px;
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.comparison-card.old-way { border: 2px solid #FEE2E2; }

.comparison-card.stafferin-way {
  border: 2px solid #D1FAE5;
  background: linear-gradient(180deg, white 0%, #F0FDF4 100%);
}

.card-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: #FEE2E2;
  color: #E57373;
}

.card-header-tag.success { background: #D1FAE5; color: #8EDECE; }

.chaos-animation {
  position: relative;
  height: 180px;
  margin-bottom: 1.5rem;
}

.chaos-item {
  position: absolute;
  width: 45px; height: 45px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: chaosFloat 3s ease-in-out infinite;
}

.chaos-item i { font-size: 1.25rem; color: var(--gray-400); }

.chaos-item.paper { top: 10%; left: 10%; animation-delay: 0s; }
.chaos-item.phone { top: 5%; right: 20%; animation-delay: 0.5s; }
.chaos-item.excel { bottom: 20%; left: 15%; animation-delay: 1s; }
.chaos-item.clock { top: 40%; right: 10%; animation-delay: 1.5s; }
.chaos-item.question { bottom: 10%; right: 25%; animation-delay: 0.8s; }

@keyframes chaosFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(5px, -8px) rotate(5deg); }
  50% { transform: translate(-5px, 5px) rotate(-5deg); }
  75% { transform: translate(8px, 3px) rotate(3deg); }
}

.chaos-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.stress-emoji {
  font-size: 3rem;
  display: block;
  animation: stressShake 0.5s ease-in-out infinite;
}

@keyframes stressShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.chaos-text { font-size: 0.85rem; font-weight: 700; color: #E57373; margin-top: 0.25rem; }

.pain-points, .benefits-list { list-style: none; padding: 0; margin: 0; }

.pain-points li, .benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.pain-points li:last-child, .benefits-list li:last-child { border-bottom: none; }
.pain-points li i { color: #E57373; font-size: 1rem; }
.benefits-list li i { color: #8EDECE; font-size: 1rem; }

.switch-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.arrow-line {
  width: 3px; height: 60px;
  background: linear-gradient(180deg, #E5E7EB 0%, #5B9BD5 50%, #6ECFB8 100%);
  border-radius: 2px;
}

.arrow-circle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(91, 155, 213, 0.4);
  margin: 1rem 0;
  animation: arrowPulse 2s ease-in-out infinite;
}

.arrow-circle i {
  color: white;
  font-size: 1.5rem;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(91, 155, 213, 0.4); }
  50% { box-shadow: 0 8px 35px rgba(91, 155, 213, 0.6); }
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.switch-time { text-align: center; margin-top: 0.5rem; }

.time-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #5B9BD5;
  line-height: 1;
}

.time-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.organized-animation { position: relative; margin-bottom: 1.5rem; }

.dashboard-mockup {
  background: white;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mockup-header {
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mockup-dots { display: flex; gap: 0.35rem; }

.mockup-dots span {
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.mockup-dots span:first-child { background: #FF6B6B; }
.mockup-dots span:nth-child(2) { background: #FFE66D; }
.mockup-dots span:nth-child(3) { background: #4ECB71; }

.mockup-title { color: white; font-size: 0.75rem; font-weight: 600; }
.mockup-content { padding: 0.75rem; }

.guard-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  background: var(--gray-50);
}

.guard-avatar { font-size: 1.5rem; }
.guard-info { flex: 1; }

.guard-name {
  height: 8px; width: 60px;
  background: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 4px;
}

.guard-status {
  height: 6px; width: 40px;
  background: #D1FAE5;
  border-radius: 3px;
}

.guard-check i { color: #6ECFB8; font-size: 1rem; }

.happy-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.happy-emoji {
  font-size: 2rem;
  animation: happyBounce 2s ease-in-out infinite;
}

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

.happy-text { font-size: 0.9rem; font-weight: 700; color: #8EDECE; }

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 50%, #F4F6F9 100%);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.2), transparent);
}

/* ==================== ADVANCED STATS COUNTER ==================== */
.switch-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.03) 0%, rgba(110, 207, 184, 0.03) 100%);
  border-radius: 30px;
  border: 1px solid rgba(91, 155, 213, 0.1);
}

.switch-stats::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.3), rgba(110, 207, 184, 0.3), rgba(110, 207, 184, 0.3));
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.switch-stats:hover::before {
  opacity: 1;
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(91, 155, 213, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--stat-color, #5B9BD5), var(--stat-color-light, #818CF8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, var(--stat-color-glow, rgba(91, 155, 213, 0.1)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(91, 155, 213, 0.15);
  border-color: rgba(91, 155, 213, 0.2);
}

/* Stat Colors */
.stat-item:nth-child(1) {
  --stat-color: #5B9BD5;
  --stat-color-light: #818CF8;
  --stat-color-glow: rgba(91, 155, 213, 0.15);
}

.stat-item:nth-child(2) {
  --stat-color: #6ECFB8;
  --stat-color-light: #34D399;
  --stat-color-glow: rgba(110, 207, 184, 0.15);
}

.stat-item:nth-child(3) {
  --stat-color: #F5A962;
  --stat-color-light: #FBBF24;
  --stat-color-glow: rgba(245, 158, 11, 0.15);
}

.stat-item:nth-child(4) {
  --stat-color: #7BB3E0;
  --stat-color-light: #A78BFA;
  --stat-color-glow: rgba(110, 207, 184, 0.15);
}

/* Stat Icon */
.stat-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  z-index: 1;
}

.stat-icon-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--stat-color, #5B9BD5), var(--stat-color-light, #818CF8));
  border-radius: 20px;
  transform: rotate(45deg);
  opacity: 0.1;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-icon-bg {
  transform: rotate(45deg) scale(1.1);
  opacity: 0.2;
}

.stat-icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--stat-color, #5B9BD5), var(--stat-color-light, #818CF8));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(91, 155, 213, 0.3);
  transition: all 0.4s ease;
}

.stat-item:hover .stat-icon-inner {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(91, 155, 213, 0.4);
}

.stat-icon i {
  font-size: 1.75rem;
  color: white;
  transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon i {
  transform: scale(1.1);
}

/* Stat Number */
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--stat-color, #5B9BD5), var(--stat-color-light, #818CF8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stat-color, #5B9BD5);
  opacity: 0.8;
}

.stat-prefix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stat-color, #5B9BD5);
  opacity: 0.8;
}

/* Stat Labels */
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-sub-label {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Floating Particles */
.stat-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.stat-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--stat-color, #5B9BD5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover .stat-particle {
  opacity: 0.3;
  animation: statParticleFloat 3s ease-in-out infinite;
}

.stat-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.stat-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: -0.5s; }
.stat-particle:nth-child(3) { top: 30%; right: 15%; animation-delay: -1s; }
.stat-particle:nth-child(4) { top: 70%; right: 10%; animation-delay: -1.5s; }

@keyframes statParticleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.5); }
}

/* Pulse Ring Animation */
.stat-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--stat-color, #5B9BD5);
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
}

.stat-item:hover .stat-pulse-ring {
  animation: statPulse 1.5s ease-out infinite;
}

@keyframes statPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Section Title */
.stats-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-section-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 0.5rem;
}

.stats-section-header p {
  color: #64748B;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .switch-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .switch-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-icon-inner {
    width: 50px;
    height: 50px;
  }
}

/* ==================== ADVANCED SIMPLE STEPS ==================== */
.simple-steps-wrapper {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.simple-steps-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.simple-steps-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #4A5568;
  margin-bottom: 0.75rem;
}

.simple-steps-header h3 span {
  background: linear-gradient(135deg, #5B9BD5, #6ECFB8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.simple-steps-header p {
  color: #64748B;
  font-size: 1.1rem;
}

.simple-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Animated Connection Line */
.steps-connection {
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: rgba(91, 155, 213, 0.1);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}

.steps-connection-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5B9BD5, #7BB3E0, #6ECFB8);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(91, 155, 213, 0.5);
  transition: width 0.8s ease;
}

.steps-connection-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
}

.connection-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid rgba(91, 155, 213, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.connection-dot:nth-child(1) { left: 0%; }
.connection-dot:nth-child(2) { left: 33.33%; }
.connection-dot:nth-child(3) { left: 66.66%; }
.connection-dot:nth-child(4) { left: 100%; }

.connection-dot.active {
  background: #5B9BD5;
  border-color: #5B9BD5;
  box-shadow: 0 0 20px rgba(91, 155, 213, 0.6);
}

/* Step Card */
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}

.step-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Step Number Badge */
.step-number-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--step-color, #5B9BD5), var(--step-color-dark, #4A8BC4));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 15px rgba(91, 155, 213, 0.4);
  z-index: 2;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card.animate-in .step-number-badge {
  opacity: 1;
  transform: scale(1);
}

/* Step Inner Card */
.step-card-inner {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 1.5rem 2rem;
  border: 1px solid rgba(91, 155, 213, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--step-color, #5B9BD5), var(--step-color-light, #818CF8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover .step-card-inner::before {
  transform: scaleX(1);
}

.step-card:hover .step-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(91, 155, 213, 0.15);
  border-color: rgba(91, 155, 213, 0.2);
}

/* Step Colors */
.step-card:nth-child(1) {
  --step-color: #5B9BD5;
  --step-color-dark: #4A8BC4;
  --step-color-light: #818CF8;
}

.step-card:nth-child(2) {
  --step-color: #7BB3E0;
  --step-color-dark: #6ECFB8;
  --step-color-light: #A78BFA;
}

.step-card:nth-child(3) {
  --step-color: #6ECFB8;
  --step-color-dark: #8EDECE;
  --step-color-light: #34D399;
}

.step-card:nth-child(4) {
  --step-color: #F5A962;
  --step-color-dark: #D97706;
  --step-color-light: #FBBF24;
}

/* Step Icon */
.step-icon-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.step-icon-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(91, 155, 213, 0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon-ring {
  border-color: var(--step-color, #5B9BD5);
  transform: scale(1.1);
}

.step-icon-ring-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--step-color, #5B9BD5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover .step-icon-ring-progress {
  opacity: 1;
  animation: stepRingSpin 2s linear infinite;
}

@keyframes stepRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.step-icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--step-color, #5B9BD5), var(--step-color-light, #818CF8));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(91, 155, 213, 0.3);
  transition: all 0.4s ease;
}

.step-card:hover .step-icon-inner {
  transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
  box-shadow: 0 20px 50px rgba(91, 155, 213, 0.4);
}

.step-icon-inner i {
  font-size: 2rem;
  color: white;
  transition: transform 0.4s ease;
}

.step-card:hover .step-icon-inner i {
  transform: scale(1.1);
}

/* Pulse Effect */
.step-icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--step-color, #5B9BD5);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.step-card:hover .step-icon-pulse {
  animation: stepPulse 1.5s ease-out infinite;
}

@keyframes stepPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Step Content */
.step-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Step Time Badge */
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(91, 155, 213, 0.05));
  color: var(--step-color, #5B9BD5);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(91, 155, 213, 0.1);
}

.step-time i {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .simple-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .steps-connection {
    display: none;
  }
}

@media (max-width: 576px) {
  .simple-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .simple-steps-header h3 {
    font-size: 1.5rem;
  }

  .step-icon-wrap {
    width: 80px;
    height: 80px;
  }

  .step-icon-inner {
    width: 64px;
    height: 64px;
  }

  .step-icon-inner i {
    font-size: 1.5rem;
  }
}

.switch-cta { text-align: center; }

.switch-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(91, 155, 213, 0.4);
  overflow: hidden;
  transition: all 0.3s ease;
}

.switch-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(91, 155, 213, 0.5);
  color: white;
}

.switch-cta-btn .btn-glow {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.cta-note { margin-top: 1rem; font-size: 0.85rem; color: var(--gray-400); }

@media (max-width: 992px) {
  .comparison-container { flex-direction: column; align-items: center; }
  .comparison-card { max-width: 100%; width: 100%; }
  .switch-arrow { flex-direction: row; padding: 1.5rem 0; }
  .arrow-line { width: 60px; height: 3px; }
  .switch-title { font-size: 2.25rem; }
  .step-line { display: none; }
  .simple-steps { gap: 2rem; }
}

@media (max-width: 768px) {
  .switch-section { padding: 4rem 0; }
  .switch-title { font-size: 1.75rem; }
  .switch-stats { gap: 1.5rem; }
  .stat-item { min-width: 120px; padding: 1rem; }
  .stat-number { font-size: 2rem; }
}
/* ==================== MESMERIZING FILTER SYSTEM ==================== */
.filter-section {
  position: relative;
  padding: 2rem 0 3rem;
  margin-bottom: 2rem;
  overflow: visible;
}

.filter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(91,155,213,0.03) 0%, rgba(110,207,184,0.03) 50%, rgba(245,169,98,0.03) 100%);
  animation: gradientShift 8s ease-in-out infinite;
  z-index: -1;
}

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

.filter-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; background: var(--primary); animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; background: var(--secondary); animation-delay: 2s; }
.particle:nth-child(3) { left: 35%; top: 30%; background: var(--accent); animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; top: 70%; background: var(--primary); animation-delay: 1s; }
.particle:nth-child(5) { left: 65%; top: 25%; background: var(--secondary); animation-delay: 3s; }
.particle:nth-child(6) { left: 80%; top: 55%; background: var(--accent); animation-delay: 5s; }
.particle:nth-child(7) { left: 90%; top: 35%; background: var(--primary); animation-delay: 2.5s; }
.particle:nth-child(8) { left: 5%; top: 80%; background: var(--secondary); animation-delay: 4.5s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
  25% { transform: translateY(-20px) translateX(10px) scale(1.2); opacity: 0.6; }
  50% { transform: translateY(-10px) translateX(-5px) scale(0.8); opacity: 0.3; }
  75% { transform: translateY(-30px) translateX(15px) scale(1.1); opacity: 0.5; }
}

.filter-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.filter-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.filter-header p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.filter-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
  max-width: 1100px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-container:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.filter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  white-space: nowrap;
}

.filter-btn i { font-size: 1rem; transition: transform 0.3s ease; }

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: radial-gradient(circle, rgba(91,155,213,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.filter-btn:hover::before { width: 200%; height: 200%; }
.filter-btn:hover { color: var(--primary); transform: translateY(-2px); }
.filter-btn:hover i { transform: scale(1.15) rotate(-5deg); }

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(91,155,213,0.25);
  animation: none;
}

@keyframes activeGlow {
  0%, 100% { box-shadow: 0 4px 12px rgba(91,155,213,0.25); }
  50% { box-shadow: 0 4px 16px rgba(91,155,213,0.3); }
}

.filter-btn.active::before { display: none; }
.filter-btn.active i { animation: iconBounce 0.5s ease; }

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

.filter-btn[data-filter="patrol"].active { background: linear-gradient(135deg, #5B9BD5, #7BB3E0); box-shadow: 0 4px 12px rgba(91,155,213,0.2); }
.filter-btn[data-filter="gps"].active { background: linear-gradient(135deg, #6ECFB8, #8EDECE); box-shadow: 0 4px 12px rgba(110,207,184,0.2); }
.filter-btn[data-filter="attendance"].active { background: linear-gradient(135deg, #F5A962, #F7BC82); box-shadow: 0 4px 12px rgba(245,169,98,0.2); }
.filter-btn[data-filter="scheduling"].active { background: linear-gradient(135deg, #E8A0BF, #F0B8CE); box-shadow: 0 4px 12px rgba(232,160,191,0.2); }
.filter-btn[data-filter="safety"].active { background: linear-gradient(135deg, #E57373, #EF9A9A); box-shadow: 0 4px 12px rgba(229,115,115,0.2); }
.filter-btn[data-filter="reporting"].active { background: linear-gradient(135deg, #7BB3E0, #9DC5E8); box-shadow: 0 4px 12px rgba(123,179,224,0.2); }
.filter-btn[data-filter="payroll"].active { background: linear-gradient(135deg, #80CBC4, #A7DED8); box-shadow: 0 4px 12px rgba(128,203,196,0.2); }
.filter-btn[data-filter="communication"].active { background: linear-gradient(135deg, #90CAF9, #BBDEFB); box-shadow: 0 4px 12px rgba(144,202,249,0.2); }
.filter-btn[data-filter="management"].active { background: linear-gradient(135deg, #FFAB91, #FFCCBC); box-shadow: 0 4px 12px rgba(255,171,145,0.2); }

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.filter-btn.active .filter-count { background: rgba(255,255,255,0.25); color: white; }

.problem-row.filtering-out { opacity: 0; transform: scale(0.95) translateY(20px); pointer-events: none; }
.problem-row.filtering-in { animation: filterIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

@keyframes filterIn {
  0% { opacity: 0; transform: scale(0.95) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.problem-row.hidden { display: none !important; }

.no-results { text-align: center; padding: 4rem 2rem; display: none; }
.no-results.show { display: block; animation: fadeInUp 0.5s ease; }

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

.no-results-icon { font-size: 4rem; color: var(--gray-300); margin-bottom: 1rem; }
.no-results h4 { color: var(--gray-600); margin-bottom: 0.5rem; }
.no-results p { color: var(--gray-400); }

.filter-stats { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--gray-400); }
.filter-stats strong { color: var(--primary); font-weight: 700; }

@media (max-width: 992px) {
  .filter-container { border-radius: 24px; padding: 1.25rem 1.5rem; gap: 0.5rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .filter-section { padding: 1.5rem 0 2rem; }
  .filter-container { flex-direction: column; align-items: stretch; border-radius: 20px; padding: 1rem; gap: 0.4rem; }
  .filter-btn { justify-content: center; padding: 0.75rem 1rem; border-radius: 12px; }
  .filter-btn.active { order: -1; }
}
/* ==================== NEW STUNNING HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #F8FBFF 0%, #EEF4FB 50%, #F5F9FF 100%);
  overflow: hidden;
}

/* Hero Background Effects */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-gradient-orb.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91, 155, 213, 0.15) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110, 207, 184, 0.12) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.hero-gradient-orb.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 169, 98, 0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 15s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(91, 155, 213, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 155, 213, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(91, 155, 213, 0.6);
  border-radius: 50%;
  animation: particleFloat 10s infinite ease-in-out;
}

.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 40%; left: 25%; animation-delay: -2s; }
.hero-particles span:nth-child(3) { top: 60%; left: 15%; animation-delay: -4s; }
.hero-particles span:nth-child(4) { top: 80%; left: 5%; animation-delay: -6s; }
.hero-particles span:nth-child(5) { top: 30%; right: 20%; animation-delay: -1s; }
.hero-particles span:nth-child(6) { top: 50%; right: 10%; animation-delay: -3s; }
.hero-particles span:nth-child(7) { top: 70%; right: 25%; animation-delay: -5s; }
.hero-particles span:nth-child(8) { top: 15%; right: 35%; animation-delay: -7s; }
.hero-particles span:nth-child(9) { top: 85%; left: 40%; animation-delay: -8s; }
.hero-particles span:nth-child(10) { top: 25%; left: 60%; animation-delay: -9s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

/* Hero Content */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(91, 155, 213, 0.1);
  border: 1px solid rgba(91, 155, 213, 0.25);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: #4A8BC4;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #6ECFB8;
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-headline {
  font-size: 4rem;
  font-weight: 800;
  color: #3D4852;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-highlight {
  display: block;
  background: linear-gradient(135deg, #5B9BD5, #6ECFB8, #7BB3E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #5A6B7B;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  color: white;
  box-shadow: 0 10px 40px rgba(91, 155, 213, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(91, 155, 213, 0.5);
}

.hero-btn.primary .btn-bg {
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-btn.primary .btn-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-btn.secondary {
  background: #FFFFFF;
  color: #4A5568;
  border: 2px solid #E8ECF1;
  box-shadow: 0 4px 15px rgba(90, 107, 123, 0.1);
}

.hero-btn.secondary:hover {
  background: #F8FBFF;
  border-color: #5B9BD5;
  color: #5B9BD5;
  transform: translateY(-3px);
}

.hero-trust-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748B;
  font-size: 0.9rem;
}

.hero-trust-text i {
  color: #6ECFB8;
}

/* Hero Dashboard Visual */
.hero-visual {
  position: relative;
}

.hero-dashboard {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(91, 155, 213, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(90, 107, 123, 0.12), 0 8px 24px rgba(90, 107, 123, 0.08);
  backdrop-filter: blur(20px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(248, 251, 255, 0.9);
  border-bottom: 1px solid rgba(91, 155, 213, 0.1);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #E57373; }
.dashboard-dots span:nth-child(2) { background: #F5A962; }
.dashboard-dots span:nth-child(3) { background: #6ECFB8; }

.dashboard-title {
  flex: 1;
  text-align: center;
  color: #5A6B7B;
  font-size: 0.85rem;
  font-weight: 500;
}

.dashboard-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #6ECFB8;
  font-size: 0.8rem;
  font-weight: 600;
}

.live-dot {
  width: 6px; height: 6px;
  background: #6ECFB8;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.dashboard-content {
  display: flex;
  min-height: 280px;
}

.dashboard-sidebar {
  width: 50px;
  background: rgba(244, 246, 249, 0.9);
  border-right: 1px solid rgba(91, 155, 213, 0.1);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-item {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #64748B;
  transition: all 0.3s ease;
}

.sidebar-item.active {
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  color: white;
}

.dashboard-main {
  flex: 1;
  padding: 1rem;
}

.dashboard-stat-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mini-stat {
  flex: 1;
  background: rgba(91, 155, 213, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

.mini-stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D4852;
}

.mini-stat-label {
  font-size: 0.7rem;
  color: #718096;
}

.dashboard-map {
  background: rgba(244, 246, 249, 0.8);
  border-radius: 12px;
  height: 100px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91, 155, 213, 0.1);
}

.map-pins {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  width: 24px; height: 24px;
  background: #5B9BD5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  animation: pinPulse 2s infinite;
}

.map-pin.pin-1 { top: 20%; left: 25%; animation-delay: 0s; }
.map-pin.pin-2 { top: 50%; left: 60%; animation-delay: -0.5s; }
.map-pin.pin-3 { top: 30%; right: 20%; animation-delay: -1s; }
.map-pin.pin-4 { bottom: 20%; left: 40%; animation-delay: -1.5s; }

@keyframes pinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(91, 155, 213, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(91, 155, 213, 0); }
}

.dashboard-activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(91, 155, 213, 0.06);
  border-radius: 10px;
  padding: 0.6rem;
}

.activity-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
}

.activity-info {
  flex: 1;
}

.activity-name {
  display: block;
  color: #3D4852;
  font-size: 0.8rem;
  font-weight: 500;
}

.activity-time {
  font-size: 0.7rem;
  color: #64748B;
}

.activity-status {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.activity-status.success {
  background: rgba(110, 207, 184, 0.2);
  color: #6ECFB8;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A5568;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.1rem;
  color: #5B9BD5;
}

.floating-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 45%;
  left: -30px;
  animation-delay: -2s;
}

.floating-card.card-3 {
  bottom: 15%;
  right: 10%;
  animation-delay: -4s;
}

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

/* ==================== TRUSTED BY SECTION ==================== */
.trusted-section {
  padding: 3rem 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
}

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

.trusted-header p {
  color: #64748B;
  font-size: 0.95rem;
}

.trusted-header span {
  color: #5B9BD5;
  font-weight: 700;
}

.trusted-logos {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logo-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748B;
  white-space: nowrap;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
  padding: 7rem 0;
  background: white;
}

.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(110, 207, 184, 0.1));
  color: #5B9BD5;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(91, 155, 213, 0.2);
}

.section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #4A5568;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header-centered p {
  font-size: 1.15rem;
  color: #64748B;
  line-height: 1.7;
}

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

.feature-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5B9BD5, #7BB3E0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(91, 155, 213, 0.15);
  border-color: rgba(91, 155, 213, 0.2);
}

.feature-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.feature-icon-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(110, 207, 184, 0.05));
  border-radius: 16px;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
  transform: rotate(45deg) scale(1.1);
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.15), rgba(110, 207, 184, 0.1));
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5B9BD5, #7BB3E0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(91, 155, 213, 0.3);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #4A5568;
  margin-bottom: 0.75rem;
}

.feature-card > p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.feature-list li i {
  color: #6ECFB8;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-headline { font-size: 3.25rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin: 0 auto 2.5rem; }
  .hero-cta-group { justify-content: center; }
  .hero-trust-text { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .floating-card.card-2 { left: 10px; }
  .section-header-centered h2 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .hero-section { padding: 6rem 0 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-description { font-size: 1.1rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; max-width: 280px; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .floating-card { display: none; }
}

