/* --------------------------------------------
   VARIABLES
-------------------------------------------- */
/* --------------------------------------------
   MIXINS
-------------------------------------------- */
/* --------------------------------------------
   CUSTOM CURSOR
-------------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}
.gradient-text:hover {
  background: linear-gradient(135deg, #818cf8 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Alternative: Static gradient without animation */
.gradient-text-static {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* For hero typing text - use static gradient */
.typed-text {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.typed-text::after {
  background: none;
  -webkit-text-fill-color: #6366f1;
}

/* For section headers - subtle gradient */
.section-header h2 .gradient-text {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
  /* No animation */
}

/* --------------------------------------------
   EARTH GLOBE BACKGROUND ANIMATION
-------------------------------------------- */
.globe-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.globe-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  opacity: 0.25;
  animation: rotateGlobe 60s linear infinite;
}
@media (max-width: 768px) {
  .globe-container {
    width: 500px;
    height: 500px;
    opacity: 0.15;
  }
}

.globe {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.3), transparent 70%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.2);
}
.globe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="450" fill="none" stroke="rgba(99,102,241,0.3)" stroke-width="2"/><path d="M500 50 L500 950 M50 500 L950 500" stroke="rgba(99,102,241,0.2)" stroke-width="1"/><circle cx="500" cy="500" r="100" fill="none" stroke="rgba(99,102,241,0.2)" stroke-width="1"/><circle cx="500" cy="500" r="250" fill="none" stroke="rgba(99,102,241,0.2)" stroke-width="1"/><circle cx="500" cy="500" r="350" fill="none" stroke="rgba(99,102,241,0.2)" stroke-width="1"/></svg>') center/cover;
  opacity: 0.5;
  animation: pulseGlow 4s ease infinite;
}
.globe::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
  filter: blur(20px);
  animation: pulseGlow 3s ease infinite;
}

@keyframes rotateGlobe {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
/* Particles overlay for depth */
.particles-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.3));
}

/* --------------------------------------------
   TYPING ANIMATION FOR HERO
-------------------------------------------- */
.typing-wrapper {
  display: inline-block;
  position: relative;
}

.typed-text {
  display: inline-block;
  color: #6366f1;
  position: relative;
  min-height: 1.1em;
  white-space: pre;
  font-size: 64px;
  font-weight: 800;
}
.typed-text::after {
  content: "";
  position: absolute;
  right: -6px;
  width: 2px;
  height: 100%;
  background-color: #06b6d4;
  animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #06b6d4;
  }
}
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
  body {
    cursor: auto;
  }
}
/* --------------------------------------------
   BACKGROUND ANIMATION
-------------------------------------------- */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.3);
  top: -100px;
  left: -100px;
  animation-duration: 25s;
}
.gradient-orb.orb-2 {
  width: 600px;
  height: 600px;
  background: rgba(168, 85, 247, 0.2);
  bottom: -150px;
  right: -150px;
  animation-duration: 30s;
  animation-delay: -5s;
}
.gradient-orb.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(34, 211, 238, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 20s;
  animation-delay: -10s;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}
/* --------------------------------------------
   LOADER
-------------------------------------------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader .loader-container {
  text-align: center;
}
.loader .loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(99, 102, 241, 0.2);
  border-top: 3px solid #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
.loader .loader-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* --------------------------------------------
   GLOBAL
-------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}
.section-header .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }
}
.section-header p {
  font-size: 18px;
  color: #a3a3a3;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 16px;
  }
}

/* --------------------------------------------
   BUTTONS
-------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
}
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn-outline:hover {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  color: #ffffff;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------
   NAVBAR
-------------------------------------------- */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 1000;
}
.navbar.navbar-scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .navbar-brand .brand-icon {
  font-size: 28px;
}
.navbar .navbar-brand:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    padding: 80px 24px;
    z-index: 1000;
  }
  .navbar .navbar-collapse.show {
    right: 0;
  }
}
.navbar .navbar-nav {
  gap: 8px;
}
@media (max-width: 768px) {
  .navbar .navbar-nav {
    flex-direction: column;
    gap: 20px;
  }
}
.navbar .nav-link {
  color: #a3a3a3;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  transition: width 0.3s;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  width: 30px;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #6366f1;
}
@media (max-width: 768px) {
  .navbar .nav-link {
    font-size: 18px;
    padding: 12px 0;
    text-align: center;
  }
  .navbar .nav-link::after {
    bottom: -5px;
  }
}
.navbar .navbar-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  z-index: 1002;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar .navbar-toggler .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px auto;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler.active {
  background: rgba(99, 102, 241, 0.2);
}
.navbar .navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar .navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
  overflow: hidden;
}

/* --------------------------------------------
   HERO SECTION
-------------------------------------------- */
/* --------------------------------------------
   HERO SECTION - MODERN AI STYLE
-------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-section .hero-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03), transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.hero-section .relative-content {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.hero-section .hero-badge span {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 32px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  animation: floatBadge 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-section .hero-badge span {
    margin-top: 30px;
    margin-bottom: 24px;
  }
}
.hero-section .hero-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
.hero-section .typing-wrapper {
  display: block;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero-section .typing-wrapper {
    font-size: 32px !important;
    margin-bottom: 20px;
  }
}
.hero-section .typed-text {
  display: inline-block;
  position: relative;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .hero-section .typed-text {
    font-size: 32px;
  }
}
.hero-section .typed-text::after {
  content: "|";
  position: relative;
  display: inline-block;
  margin-left: 4px;
  animation: blink 0.8s infinite;
  color: #6366f1;
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: #6366f1;
}
.hero-section .hero-subtitle {
  font-size: 20px;
  color: #a3a3a3;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.hero-section .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .hero-section .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.hero-section .hero-buttons .btn-hero {
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .hero-section .hero-buttons .btn-hero {
    padding: 12px 28px;
    font-size: 14px;
  }
}
.hero-section .hero-stats-inline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(42, 42, 42, 0.4);
  border-radius: 48px;
  padding: 8px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline {
    flex-direction: column;
    border-radius: 32px;
    padding: 4px;
    width: 100%;
  }
}
.hero-section .hero-stats-inline .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
}
.hero-section .hero-stats-inline .stat-item .stat-icon {
  width: 20px;
  height: 20px;
  color: #6366f1;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item .stat-icon {
    width: 18px;
    height: 18px;
  }
}
.hero-section .hero-stats-inline .stat-item div {
  text-align: left;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item div {
    text-align: center;
  }
}
.hero-section .hero-stats-inline .stat-item .stat-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item .stat-number-wrapper {
    justify-content: center;
  }
}
.hero-section .hero-stats-inline .stat-item .stat-number {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item .stat-number {
    font-size: 16px;
  }
}
.hero-section .hero-stats-inline .stat-item .stat-number-suffix {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item .stat-number-suffix {
    font-size: 16px;
  }
}
.hero-section .hero-stats-inline .stat-item .stat-label {
  font-size: 11px;
  color: #a3a3a3;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-item .stat-label {
    font-size: 10px;
  }
}
.hero-section .hero-stats-inline .stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(42, 42, 42, 0.5);
}
@media (max-width: 768px) {
  .hero-section .hero-stats-inline .stat-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Floating animation for badge */
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.hero-badge span {
  animation: floatBadge 3s ease-in-out infinite;
}

/* --------------------------------------------
   STRUGGLE SECTION
-------------------------------------------- */
.struggle-section {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
}
.struggle-section .struggle-card {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.struggle-section .struggle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}
.struggle-section .struggle-card .struggle-icon {
  width: 70px;
  height: 70px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.struggle-section .struggle-card .struggle-icon i {
  font-size: 32px;
  color: #6366f1;
}
.struggle-section .struggle-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.struggle-section .struggle-card p {
  color: #a3a3a3;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.struggle-section .struggle-card .struggle-stat {
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
}
.struggle-section .struggle-card .struggle-stat .stat-badge {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 4px;
}
.struggle-section .struggle-card .struggle-stat .stat-trend {
  font-size: 12px;
  color: #6b7280;
}
.struggle-section .struggle-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 30px;
  background: rgba(99, 102, 241, 0.03);
  border-radius: 24px;
  border: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .struggle-section .struggle-stats-row {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}
.struggle-section .struggle-stats-row .stat-item {
  flex: 1;
  text-align: center;
}
.struggle-section .struggle-stats-row .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.struggle-section .struggle-stats-row .stat-item .stat-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.struggle-section .struggle-stats-row .stat-item .stat-desc {
  font-size: 12px;
  color: #a3a3a3;
}

/* --------------------------------------------
   PROBLEM SECTION
-------------------------------------------- */
.problem-section {
  background: linear-gradient(180deg, #0a0a0a 0%, rgba(99, 102, 241, 0.02) 100%);
}
.problem-section .problem-card {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.problem-section .problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.problem-section .problem-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.problem-section .problem-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.problem-section .problem-card p {
  color: #a3a3a3;
  margin-bottom: 20px;
  font-size: 15px;
}
.problem-section .problem-card .card-metric {
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}

/* --------------------------------------------
   AI EMPLOYEES SECTION - PREMIUM TABS
-------------------------------------------- */
.employees-section .ai-tabs-premium {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .employees-section .ai-tabs-premium {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 32px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .employees-section .ai-tabs-premium::-webkit-scrollbar {
    height: 4px;
  }
  .employees-section .ai-tabs-premium::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
  }
  .employees-section .ai-tabs-premium::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 10px;
  }
}
.employees-section .ai-tabs-premium .tab-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid #2a2a2a;
  border-radius: 60px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .employees-section .ai-tabs-premium .tab-premium {
    padding: 10px 20px;
    gap: 10px;
  }
}
.employees-section .ai-tabs-premium .tab-premium .tab-icon {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .employees-section .ai-tabs-premium .tab-premium .tab-icon {
    width: 36px;
    height: 36px;
  }
}
.employees-section .ai-tabs-premium .tab-premium .tab-icon i {
  font-size: 18px;
  color: #6366f1;
}
@media (max-width: 768px) {
  .employees-section .ai-tabs-premium .tab-premium .tab-icon i {
    font-size: 16px;
  }
}
.employees-section .ai-tabs-premium .tab-premium .tab-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.employees-section .ai-tabs-premium .tab-premium .tab-text .tab-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 768px) {
  .employees-section .ai-tabs-premium .tab-premium .tab-text .tab-title {
    font-size: 14px;
  }
}
.employees-section .ai-tabs-premium .tab-premium .tab-text .tab-desc {
  font-size: 12px;
  color: #a3a3a3;
}
@media (max-width: 768px) {
  .employees-section .ai-tabs-premium .tab-premium .tab-text .tab-desc {
    font-size: 10px;
  }
}
.employees-section .ai-tabs-premium .tab-premium:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
  background: rgba(99, 102, 241, 0.05);
}
.employees-section .ai-tabs-premium .tab-premium.active {
  background: rgba(99, 102, 241, 0.15);
  border-color: #6366f1;
}
.employees-section .ai-tabs-premium .tab-premium.active .tab-icon {
  background: #6366f1;
}
.employees-section .ai-tabs-premium .tab-premium.active .tab-icon i {
  color: #ffffff;
}
.employees-section .ai-tabs-premium .tab-premium.active .tab-text .tab-title {
  color: #6366f1;
}
.employees-section .tab-content-premium {
  position: relative;
}
.employees-section .tab-pane-premium {
  display: none;
  animation: fadeSlideUp 0.4s ease;
}
.employees-section .tab-pane-premium.active {
  display: block;
}
.employees-section .agent-card-premium {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 32px;
  padding: 40px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .employees-section .agent-card-premium {
    padding: 24px 20px;
  }
}
.employees-section .agent-card-premium:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
}
.employees-section .agent-card-premium .agent-header-premium {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .employees-section .agent-card-premium .agent-header-premium {
    gap: 16px;
    margin-bottom: 30px;
    flex-direction: column;
    text-align: center;
  }
}
.employees-section .agent-card-premium .agent-header-premium .agent-icon-premium {
  width: 70px;
  height: 70px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
@media (max-width: 768px) {
  .employees-section .agent-card-premium .agent-header-premium .agent-icon-premium {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
.employees-section .agent-card-premium .agent-header-premium .agent-info-premium h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .employees-section .agent-card-premium .agent-header-premium .agent-info-premium h3 {
    font-size: 24px;
  }
}
.employees-section .agent-card-premium .agent-header-premium .agent-info-premium p {
  color: #a3a3a3;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .employees-section .agent-card-premium .agent-header-premium .agent-info-premium p {
    font-size: 14px;
  }
}
.employees-section {
  /* Metrics Grid */
}
.employees-section .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .employees-section .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .employees-section .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.employees-section .metrics-grid .metric-card {
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .employees-section .metrics-grid .metric-card {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .employees-section .metrics-grid .metric-card .metric-icon {
    margin-bottom: 0;
    font-size: 28px;
  }
  .employees-section .metrics-grid .metric-card .metric-content {
    flex: 1;
    text-align: right;
  }
}
.employees-section .metrics-grid .metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.05);
}
.employees-section .metrics-grid .metric-card .metric-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .employees-section .metrics-grid .metric-card .metric-icon {
    margin-bottom: 0;
  }
}
.employees-section .metrics-grid .metric-card .metric-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .employees-section .metrics-grid .metric-card .metric-value {
    font-size: 28px;
  }
}
.employees-section .metrics-grid .metric-card .metric-value .metric-unit {
  font-size: 20px;
}
@media (max-width: 768px) {
  .employees-section .metrics-grid .metric-card .metric-value .metric-unit {
    font-size: 16px;
  }
}
.employees-section .metrics-grid .metric-card .metric-label {
  font-size: 14px;
  color: #a3a3a3;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .employees-section .metrics-grid .metric-card .metric-label {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.employees-section .metrics-grid .metric-card .metric-trend {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
@media (max-width: 768px) {
  .employees-section .metrics-grid .metric-card .metric-trend {
    font-size: 10px;
    padding: 3px 8px;
  }
}
.employees-section .metrics-grid .metric-card .metric-trend.up {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}
.employees-section .metrics-grid .metric-card .metric-trend.down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}
.employees-section {
  /* Features Section */
}
.employees-section .features-section {
  border-top: 1px solid #2a2a2a;
  padding-top: 32px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .employees-section .features-section {
    padding-top: 24px;
  }
}
.employees-section .features-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .employees-section .features-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.employees-section .features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .employees-section .features-section .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.employees-section .features-section .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(99, 102, 241, 0.03);
  border-radius: 12px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .employees-section .features-section .features-grid .feature-item {
    padding: 10px 14px;
  }
}
.employees-section .features-section .features-grid .feature-item i {
  color: #6366f1;
  font-size: 14px;
}
@media (max-width: 768px) {
  .employees-section .features-section .features-grid .feature-item i {
    font-size: 12px;
  }
}
.employees-section .features-section .features-grid .feature-item span {
  font-size: 14px;
  color: #a3a3a3;
}
@media (max-width: 768px) {
  .employees-section .features-section .features-grid .feature-item span {
    font-size: 13px;
  }
}
.employees-section .features-section .features-grid .feature-item:hover {
  background: rgba(99, 102, 241, 0.08);
  transform: translateX(5px);
}
.employees-section {
  /* Live Activity Feed */
}
.employees-section .live-activity {
  background: rgba(99, 102, 241, 0.03);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}
.employees-section .live-activity h4 {
  font-size: 14px;
  font-weight: 600;
  color: #a3a3a3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.employees-section .live-activity .activity-feed .activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .employees-section .live-activity .activity-feed .activity-item {
    flex-direction: column;
  }
}
.employees-section .live-activity .activity-feed .activity-item:last-child {
  border-bottom: none;
}
.employees-section .live-activity .activity-feed .activity-item i {
  width: 24px;
  color: #6366f1;
  font-size: 14px;
}
.employees-section .live-activity .activity-feed .activity-item span {
  flex: 1;
  font-size: 14px;
  color: #a3a3a3;
}
.employees-section .live-activity .activity-feed .activity-item span strong {
  color: #ffffff;
}
.employees-section .live-activity .activity-feed .activity-item .time {
  font-size: 12px;
  color: #6b7280;
}
.employees-section {
  /* Shipment Tracking Timeline */
}
.employees-section .shipment-tracking {
  background: rgba(99, 102, 241, 0.03);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking {
    padding: 16px;
  }
}
.employees-section .shipment-tracking .tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking .tracking-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.employees-section .shipment-tracking .tracking-header .tracking-id .label {
  font-size: 12px;
  color: #6b7280;
  display: block;
}
.employees-section .shipment-tracking .tracking-header .tracking-id .value {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking .tracking-header .tracking-id .value {
    font-size: 14px;
  }
}
.employees-section .shipment-tracking .tracking-header .tracking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}
.employees-section .shipment-tracking .tracking-header .tracking-status.on-schedule {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.employees-section .shipment-tracking .tracking-header .tracking-status.delayed {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.employees-section .shipment-tracking .timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking .timeline {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
  .employees-section .shipment-tracking .timeline::before {
    display: none;
  }
}
.employees-section .shipment-tracking .timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: #2a2a2a;
  z-index: 0;
}
.employees-section .shipment-tracking .timeline .timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking .timeline .timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
}
.employees-section .shipment-tracking .timeline .timeline-item .timeline-dot {
  width: 12px;
  height: 12px;
  background: #2a2a2a;
  border-radius: 50%;
  margin: 0 auto 12px;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking .timeline .timeline-item .timeline-dot {
    margin: 0;
    flex-shrink: 0;
  }
}
.employees-section .shipment-tracking .timeline .timeline-item .timeline-dot.pulse {
  background: #6366f1;
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  animation: pulse 1.5s infinite;
}
.employees-section .shipment-tracking .timeline .timeline-item.completed .timeline-dot {
  background: #10b981;
}
.employees-section .shipment-tracking .timeline .timeline-item.active .timeline-dot {
  background: #6366f1;
}
@media (max-width: 768px) {
  .employees-section .shipment-tracking .timeline .timeline-item .timeline-content {
    flex: 1;
  }
}
.employees-section .shipment-tracking .timeline .timeline-item .timeline-content .location {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}
.employees-section .shipment-tracking .timeline .timeline-item .timeline-content .location .port-code {
  font-size: 10px;
  color: #6b7280;
  display: block;
}
.employees-section .shipment-tracking .timeline .timeline-item .timeline-content .event {
  font-size: 12px;
  color: #a3a3a3;
  margin-top: 4px;
}
.employees-section .shipment-tracking .timeline .timeline-item .timeline-content .date {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}
.employees-section .shipment-tracking .tracking-alerts {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}
.employees-section .shipment-tracking .tracking-alerts .alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
}
.employees-section .shipment-tracking .tracking-alerts .alert-item.info {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.employees-section .shipment-tracking .tracking-alerts .alert-item.info i {
  color: #6366f1;
}
.employees-section .shipment-tracking .tracking-alerts .alert-item.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.employees-section {
  /* Live Chat Preview */
}
.employees-section .live-chat-preview {
  margin-bottom: 30px;
}
.employees-section .live-chat-preview .chat-window {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}
.employees-section .live-chat-preview .chat-window .chat-window-header {
  background: rgba(99, 102, 241, 0.1);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-window-header {
    padding: 10px 14px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-window-header i {
  color: #6366f1;
}
.employees-section .live-chat-preview .chat-window .chat-window-header span {
  flex: 1;
  font-weight: 500;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-window-header span {
    font-size: 13px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-window-header .online-badge {
  font-size: 12px;
  color: #10b981;
}
.employees-section .live-chat-preview .chat-window .chat-messages {
  padding: 20px;
  height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-messages {
    padding: 12px;
    height: 280px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-messages {
  /* Custom Scrollbar */
}
.employees-section .live-chat-preview .chat-window .chat-messages::-webkit-scrollbar {
  width: 6px;
}
.employees-section .live-chat-preview .chat-window .chat-messages::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 10px;
}
.employees-section .live-chat-preview .chat-window .chat-messages::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 10px;
}
.employees-section .live-chat-preview .chat-window .chat-messages::-webkit-scrollbar-thumb:hover {
  background: #4f46e5;
}
.employees-section .live-chat-preview .chat-window .chat-messages {
  scrollbar-width: thin;
  scrollbar-color: #6366f1 #1a1a1a;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: messageFadeIn 0.3s ease;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-messages .message {
    max-width: 95%;
  }
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.user {
  align-self: flex-end;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.user .message-bubble {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.user .message-time {
  text-align: right;
  margin-right: 8px;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.ai {
  align-self: flex-start;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.ai .message-bubble {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a3a3a3;
  border-bottom-left-radius: 4px;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.ai .message-bubble a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.ai .message-bubble a:hover {
  text-decoration: underline;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.typing .message-bubble {
  opacity: 0.8;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.typing .message-bubble .typing-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 4px;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.typing .message-bubble .typing-dots span {
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite ease-in-out;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.typing .message-bubble .typing-dots span:nth-child(1) {
  animation-delay: 0s;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.typing .message-bubble .typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message.typing .message-bubble .typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.employees-section .live-chat-preview .chat-window .chat-messages .message .message-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  word-break: break-word;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-messages .message .message-bubble {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-messages .message .message-time {
  font-size: 10px;
  color: #6b7280;
  margin-top: 6px;
  margin-left: 12px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-messages .message .message-time {
    font-size: 8px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-input-area {
  padding: 15px 20px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  gap: 10px;
  background: #0f0f0f;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-input-area {
    padding: 10px 2px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-input-area input {
  flex: 1;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-input-area input {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-input-area input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}
.employees-section .live-chat-preview .chat-window .chat-input-area input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.employees-section .live-chat-preview .chat-window .chat-input-area input::placeholder {
  color: #6b7280;
}
.employees-section .live-chat-preview .chat-window .chat-input-area button {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-window .chat-input-area button {
    width: 36px;
    height: 36px;
  }
}
.employees-section .live-chat-preview .chat-window .chat-input-area button:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
.employees-section .live-chat-preview .chat-window .chat-input-area button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.employees-section .live-chat-preview .chat-window .chat-input-area button i {
  font-size: 16px;
}
.employees-section .live-chat-preview .chat-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(99, 102, 241, 0.03);
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-stats {
    gap: 8px;
    padding: 10px 16px;
  }
}
.employees-section .live-chat-preview .chat-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a3a3a3;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-stats .stat {
    font-size: 11px;
  }
}
.employees-section .live-chat-preview .chat-stats .stat i {
  color: #6366f1;
  font-size: 14px;
}
@media (max-width: 768px) {
  .employees-section .live-chat-preview .chat-stats .stat i {
    font-size: 12px;
  }
}
.employees-section .live-chat-preview .chat-stats .stat strong {
  color: #ffffff;
  font-weight: 600;
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}
@keyframes messageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}
/* --------------------------------------------
   PRICING SECTION
-------------------------------------------- */
.pricing-section {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.pricing-toggle .toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: #a3a3a3;
}
.pricing-toggle .toggle-label .save-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
}
.pricing-toggle .toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}
.pricing-toggle .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-toggle .toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}
.pricing-toggle .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(28px);
}
.pricing-toggle .toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 34px;
  transition: 0.3s;
}
.pricing-toggle .toggle-switch .toggle-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background: #6366f1;
  border-radius: 50%;
  transition: 0.3s;
}

.pricing-card {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 32px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}
.pricing-card.popular {
  border: 2px solid #6366f1;
  transform: scale(1.02);
}
.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}
.pricing-card.popular .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.pricing-card .plan-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.pricing-card .plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-card .plan-price {
  margin-bottom: 16px;
}
.pricing-card .plan-price .currency {
  font-size: 24px;
  font-weight: 600;
  vertical-align: top;
}
.pricing-card .plan-price .price {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card .plan-price .period {
  font-size: 14px;
  color: #a3a3a3;
}
.pricing-card .plan-desc {
  font-size: 14px;
  color: #a3a3a3;
  margin-bottom: 30px;
}
.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}
.pricing-card .plan-features li {
  padding: 10px 0;
  color: #a3a3a3;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-card .plan-features li i {
  color: #6366f1;
  font-size: 14px;
  width: 20px;
}
.pricing-card .plan-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
}
.btn-outline-primary:hover {
  background: #6366f1;
  color: #ffffff;
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 16px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note i {
  color: #6366f1;
  font-size: 18px;
}
.pricing-note span {
  font-size: 14px;
  color: #a3a3a3;
}

/* --------------------------------------------
   COMPARISON SECTION
-------------------------------------------- */
.comparison-section .comparison-table {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
}
.comparison-section .comparison-table .comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #2a2a2a;
}
.comparison-section .comparison-table .comparison-row:last-child {
  border-bottom: none;
}
.comparison-section .comparison-table .comparison-row.header {
  background: rgba(99, 102, 241, 0.05);
  font-weight: 600;
  color: #6366f1;
}
.comparison-section .comparison-table .comparison-row div {
  padding: 18px 20px;
  text-align: center;
}
@media (max-width: 992px) {
  .comparison-section .comparison-table .comparison-row div {
    padding: 14px 12px;
    font-size: 14px;
  }
}
.comparison-section .comparison-table .comparison-row div:first-child {
  text-align: left;
  font-weight: 500;
}
.comparison-section .comparison-table .comparison-row .highlight {
  color: #22d3ee;
  font-weight: 600;
}
.comparison-section .comparison-cards {
  display: none;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 32px;
}
.comparison-section .comparison-cards .comparison-card {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 18px 20px;
}
.comparison-section .comparison-cards .comparison-card .metric {
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}
.comparison-section .comparison-cards .comparison-card .human {
  font-size: 14px;
  color: #a3a3a3;
  margin-bottom: 8px;
}
.comparison-section .comparison-cards .comparison-card .ai {
  font-size: 14px;
  color: #22d3ee;
  font-weight: 500;
}
.comparison-section .savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 60px;
  padding: 12px 28px;
  margin: 0 auto;
  width: fit-content;
}
.comparison-section .savings-badge i {
  font-size: 20px;
  color: #6366f1;
}
.comparison-section .savings-badge span {
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 768px) {
  .comparison-section .savings-badge {
    padding: 10px 20px;
  }
  .comparison-section .savings-badge span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .comparison-section .comparison-table {
    display: none;
  }
  .comparison-section .comparison-cards {
    display: flex;
  }
}
/* --------------------------------------------
   CTA SECTION
-------------------------------------------- */
.cta-section .cta-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 40px;
  padding: 60px 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section .cta-box {
    padding: 40px 24px;
    border-radius: 32px;
  }
}
.cta-section .cta-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cta-section .cta-box h2 {
    font-size: 28px;
  }
}
.cta-section .cta-box p {
  font-size: 18px;
  color: #a3a3a3;
  margin-bottom: 32px;
}
.cta-section .cta-box .cta-form {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section .cta-box .cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cta-section .cta-box .cta-form .form-row {
    grid-template-columns: 1fr;
  }
}
.cta-section .cta-box .cta-form input,
.cta-section .cta-box .cta-form select {
  width: 100%;
  padding: 14px 18px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
}
.cta-section .cta-box .cta-form input:focus,
.cta-section .cta-box .cta-form select:focus {
  outline: none;
  border-color: #6366f1;
}
.cta-section .cta-box .cta-form .btn {
  margin-top: 8px;
}
.cta-section .cta-box .form-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 24px;
}

/* --------------------------------------------
   FOOTER
-------------------------------------------- */
.footer {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(42, 42, 42, 0.5);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  opacity: 0.3;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.footer .footer-col .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer .footer-col .footer-description {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer .footer-col .footer-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .footer-col .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.footer .footer-col .footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .footer .footer-col .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer .footer-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-col .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-col .footer-links li a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-col .footer-links li a i {
  font-size: 10px;
  transition: transform 0.3s;
}
.footer .footer-col .footer-links li a:hover {
  color: #6366f1;
}
.footer .footer-col .footer-links li a:hover i {
  transform: translateX(4px);
}
.footer .footer-col .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.footer .footer-col .footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #a3a3a3;
}
.footer .footer-col .footer-contact li i {
  width: 20px;
  color: #6366f1;
}
.footer .footer-col .footer-contact li a {
  color: #a3a3a3;
  text-decoration: none;
}
.footer .footer-col .footer-contact li a:hover {
  color: #6366f1;
}
@media (max-width: 768px) {
  .footer .footer-col .footer-contact li {
    justify-content: center;
  }
}
.footer .footer-social {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer .footer-social {
    justify-content: center;
  }
}
.footer .footer-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a3a3;
  transition: all 0.3s;
}
.footer .footer-social .social-link:hover {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  transform: translateY(-3px);
}
.footer .footer-newsletter {
  margin-top: 20px;
}
.footer .footer-newsletter p {
  font-size: 13px;
  color: #a3a3a3;
  margin-bottom: 12px;
}
.footer .footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
}
.footer .footer-newsletter .newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
}
.footer .footer-newsletter .newsletter-form input:focus {
  outline: none;
  border-color: #6366f1;
}
.footer .footer-newsletter .newsletter-form button {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}
.footer .footer-newsletter .newsletter-form button:hover {
  transform: translateX(3px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}
.footer .footer-newsletter .newsletter-success {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  font-size: 12px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer-bottom .footer-copyright p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer .footer-bottom .footer-bottom-links a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
}
.footer .footer-bottom .footer-bottom-links a:hover {
  color: #6366f1;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --------------------------------------------
   WHATSAPP FLOAT BUTTON
-------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-float span {
  display: none;
  position: absolute;
  right: 70px;
  background: #0f0f0f;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b859;
}
.whatsapp-float:hover span {
  display: block;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float span {
    display: none;
  }
}

/* --------------------------------------------
   SALES ACTIVITY FEED
-------------------------------------------- */
/* --------------------------------------------
   SALES ACTIVITY FEED - MOBILE FIX
-------------------------------------------- */
.sales-activity-feed {
  background: rgba(99, 102, 241, 0.03);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}
@media (max-width: 768px) {
  .sales-activity-feed {
    padding: 16px;
    border-radius: 20px;
  }
}
.sales-activity-feed .activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
}
.sales-activity-feed .activity-header h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-header h4 {
    font-size: 14px;
  }
}
.sales-activity-feed .activity-header .sent-count {
  font-size: 13px;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-header .sent-count {
    font-size: 12px;
    padding: 3px 10px;
  }
}
.sales-activity-feed .activity-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list {
    gap: 12px;
    margin-bottom: 16px;
  }
}
.sales-activity-feed .activity-list .activity-lead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(10, 10, 10, 0.5);
  border-radius: 16px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
}
.sales-activity-feed .activity-list .activity-lead:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead:hover {
    transform: translateX(0);
  }
}
.sales-activity-feed .activity-list .activity-lead .lead-info {
  flex: 1;
}
.sales-activity-feed .activity-list .activity-lead .lead-info .lead-email {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  word-break: break-all;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead .lead-info .lead-email {
    font-size: 13px;
    word-break: break-word;
  }
}
.sales-activity-feed .activity-list .activity-lead .lead-info .lead-subject {
  font-size: 12px;
  color: #a3a3a3;
  word-break: break-word;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead .lead-info .lead-subject {
    font-size: 11px;
  }
}
.sales-activity-feed .activity-list .activity-lead .lead-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 30px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead .lead-status {
    align-self: flex-start;
    padding: 3px 10px;
    font-size: 11px;
    gap: 6px;
  }
}
.sales-activity-feed .activity-list .activity-lead .lead-status i {
  font-size: 12px;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead .lead-status i {
    font-size: 10px;
  }
}
.sales-activity-feed .activity-list .activity-lead .lead-status.opened {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.sales-activity-feed .activity-list .activity-lead .lead-status.replied {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.sales-activity-feed .activity-list .activity-lead .lead-status.sent {
  background: rgba(163, 163, 163, 0.1);
  color: #a3a3a3;
}
.sales-activity-feed .activity-list .activity-lead .lead-status .time {
  font-size: 10px;
  color: #6b7280;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-list .activity-lead .lead-status .time {
    font-size: 9px;
  }
}
.sales-activity-feed .activity-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  font-size: 14px;
  color: #10b981;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-footer {
    gap: 10px;
    padding-top: 12px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sales-activity-feed .activity-footer i {
  font-size: 16px;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-footer i {
    font-size: 14px;
  }
}
.sales-activity-feed .activity-footer span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .sales-activity-feed .activity-footer span {
    font-size: 12px;
  }
}

/* --------------------------------------------
   BACKGROUND IMPROVEMENT - Better Text Visibility
-------------------------------------------- */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.background-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}
.gradient-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.4);
  top: -200px;
  left: -200px;
  animation-duration: 25s;
}
.gradient-orb.orb-2 {
  width: 700px;
  height: 700px;
  background: rgba(168, 85, 247, 0.3);
  bottom: -250px;
  right: -250px;
  animation-duration: 30s;
  animation-delay: -5s;
}
.gradient-orb.orb-3 {
  width: 500px;
  height: 500px;
  background: rgba(34, 211, 238, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 20s;
  animation-delay: -10s;
}

/* Dark overlay for better text contrast */
section {
  position: relative;
  z-index: 1;
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

/* Pricing Section Dark Background Fix */
.pricing-section {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, #0a0a0a 100%);
  position: relative;
}
.pricing-section::before {
  background: rgba(0, 0, 0, 0.6);
}

.pricing-card {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 42, 42, 0.8);
}
.pricing-card:hover {
  background: #0f0f0f;
}

/* --------------------------------------------
   UTILITIES
-------------------------------------------- */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

@media (max-width: 768px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
