/* ============================================
   BASE STYLES & CSS VARIABLES
   ============================================ */
:root {
  --primary: #5c00cc;
  --primary-hover: #4a00a3;
  --primary-light: rgba(92, 0, 204, 0.1);
  --primary-border: rgba(92, 0, 204, 0.2);
  --secondary: #6c757d;
  --dark: #212529;
  --light: #f8f9fa;
  --white: #ffffff;
  --white-transperent: #ffffff36;
  --muted: #6c757d;
  --border: #dee2e6;
  --shadow: rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
  --transition: all 0.3s ease;
  --gradient-start: #5c00cc;
  --gradient-end: #7928ca;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;

  /* disable text selection */
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
  overflow-x: hidden;
  /* Prevent horizontal scrollbar */
}

/* Allow text selection for better UX */
/* p, span, h1, h2, h3, h4, h5, h6, li, a, button {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
} */

/* ============================================
   DARK MODE
   ============================================ */
body.dark-mode {
  --primary: #7928ca;
  --primary-hover: #8a3ad9;
  --primary-light: rgba(121, 40, 202, 0.1);
  --primary-border: rgba(121, 40, 202, 0.2);
  --dark: #f8f9fa;
  --light: #212529;
  --white: #121212;
  --muted: #a7a7a7;
  --border: #2d2d2d;
  --shadow: rgba(0, 0, 0, 0.3);
}

.bg-primary {
  background-color: var(--primary) !important;
}

/* Dark Mode Toggle */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
}

.theme-switch {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 24px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition);
}

input:checked+.slider {
  background-color: var(--primary);
}

input:checked+.slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Apply dark mode when checkbox is checked */
#theme-toggle:checked~body {
  --primary: #7928ca;
  --primary-hover: #8a3ad9;
  --primary-light: rgba(121, 40, 202, 0.1);
  --primary-border: rgba(121, 40, 202, 0.2);
  --dark: #f8f9fa;
  --light: #212529;
  --white: #121212;
  --muted: #a7a7a7;
  --border: #2d2d2d;
  --shadow: rgba(0, 0, 0, 0.3);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-container {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  will-change: width, transform;
}

.navbar-container.scrolled {
  background-color: var(--white-transperent);
  backdrop-filter: blur(10px);
  width: 60%;
  margin: 1rem auto;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 0;
}

.navbar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: padding;
}

.navbar .btn {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: padding, font-size;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  will-change: background-color, color;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.navbar-toggler {
  border-radius: 50px;
  padding: 0.5rem 1rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: padding;
}

.logo-placeholder {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
}

/* CSS-only Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.device-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-mockup {
  animation: float 6s ease-in-out infinite;
  border: none !important;
}

.desktop-mockup {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 1;
  transform: perspective(1000px) rotateY(15deg) translateX(20%);
  transition: var(--transition);
}

.desktop-mockup {
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.phone-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -20% !important;
  left: 50%;
  transform: translate(-50%, 0) perspective(1000px) rotateY(-15deg);
  transition: var(--transition);
}

.phone-mockup {
  animation: float 6s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

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

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

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-gradient {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  border: none;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  color: var(--white);
}

.btn-dark {
  background-color: #000000;
  border-color: #000000;
  color: var(--white);
  font-weight: 500;
}

.btn-dark:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: var(--white);
}

.btn-outline-dark {
  color: #000000;
  border-color: #000000;
  background-color: transparent;
  font-weight: 500;
}

.btn-outline-dark:hover {
  background-color: #000000;
  border-color: #000000;
  color: var(--white);
}

.btn-dark:focus,
.btn-dark:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.btn-outline-dark:focus,
.btn-outline-dark:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.btn-gradient:focus,
.btn-gradient:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary:focus,
.btn-primary:focus-visible {
  outline: 2px solid var(--primary-hover);
  outline-offset: 2px;
}

.text-gradient {
  /* color: linear-gradient(to right, var(--gradient-start), var(--gradient-end)) !important; */
  background-image: linear-gradient(90deg, var(--gradient-start) 40%, var(--gradient-end) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  /* min-height: calc(215vh - 80px); */
  overflow: hidden;
  padding: 4rem 0;
  display: flex;
  align-items: center;
}

.mt-13 {
  margin-top: 13%;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom right, rgba(92, 0, 204, 0.08), rgba(121, 40, 202, 0.05), transparent);
}

.hero-section h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-section .lead-lg {
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.hero-image-container-simple {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  z-index: 1;
  text-align: center;
}

.hero-main-image-simple {
  width: 80%;
  height: auto;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-main-image-simple:hover {
  transform: translateY(-5px);
}

/* Legacy styles for backward compatibility */
.hero-image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(92, 0, 204, 0.2), rgba(121, 40, 202, 0.2));
  border-radius: 1.5rem;
  filter: blur(24px);
  z-index: -1;
}

.hero-main-image {
  position: relative;
  z-index: 1;
}

.hero-secondary-image {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 2;
  width: 250px;
  height: auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
  background: linear-gradient(135deg, #2D1B69, #1E0B43);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(92, 0, 204, 0.3), transparent 70%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image-container {
  position: relative;
  width: 100%;
  padding: 1rem;
  border: none !important;
}

.feature-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(124, 58, 237, 0.2), rgba(92, 0, 204, 0.2));
  border-radius: 1rem;
  filter: blur(24px);
  z-index: -1;
}

.image-mockup {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  border: none !important;
}

.image-mockup:hover {
  transform: translateY(-5px);
  border: none !important;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-list li i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-list li span {
  opacity: 0.9;
}

/* Spacing utility */
.mb-7 {
  margin-bottom: 5rem;
}

.py-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Analytics Section */
.analytics-section {
  position: relative;
  background: linear-gradient(to bottom, var(--white), rgba(248, 249, 250, 0.8));
}

.analytics-container {
  position: relative;
}

.analytics-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(92, 0, 204, 0.1), rgba(121, 40, 202, 0.1));
  border-radius: 1rem;
  filter: blur(24px);
  z-index: -1;
}

.chart-placeholder {
  height: 200px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  position: relative;
  background: linear-gradient(to bottom, var(--white), rgba(248, 249, 250, 0.8));
}

.accordion-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  background-color: var(--white);
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--primary-border);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.accordion-button {
  border-radius: var(--radius) !important;
  font-weight: 500;
  padding: 1.25rem;
  background-color: var(--white);
  color: var(--dark);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c00cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem;
  color: var(--muted);
}

/* Testimonials */
.testimonial-card {
  border-color: var(--primary-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  position: relative;
  background: linear-gradient(to bottom, var(--white), rgba(248, 249, 250, 0.8));
}

.nav-pills {
  display: inline-flex;
  background-color: var(--white);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-pills .nav-link {
  color: var(--muted);
  font-weight: 500;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
  position: relative;
}

.nav-pills .nav-link.active {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--white);
}

.badge.bg-gradient {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.pricing-card {
  transition: var(--transition);
  border-color: var(--border);
}

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pricing-popular {
  position: relative;
  border-color: var(--primary-border);
  z-index: 1;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
}

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

.pricing-features li {
  margin-bottom: 0.75rem;
  cursor: help;
}

/* ============================================
   AFFILIATE SECTION
   ============================================ */
.affiliate-section {
  position: relative;
  overflow: hidden;
}

.affiliate-card {
  background: linear-gradient(135deg, #2D1B69, #1E0B43);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.affiliate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(92, 0, 204, 0.3), transparent 70%);
  pointer-events: none;
}

.bg-primary-subtle {
  background-color: rgba(92, 0, 204, 0.2) !important;
}

.text-primary {
  color: #7C3AED !important;
}

.text-light-subtle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.affiliate-image-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-avatars {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.floating-avatar {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.avatar-1 {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.avatar-2 {
  top: 60%;
  right: 15%;
  animation: float 8s ease-in-out infinite;
}

.avatar-3 {
  top: 30%;
  right: 25%;
  animation: float 7s ease-in-out infinite;
}

.avatar-4 {
  /* top: -5%;
  left: 63%; */
  top: -14%;
  left: 86%;
  animation: float 7s ease-in-out infinite;
  z-index: 2;
}

.affiliate-bot-container {
  position: relative;
  width: 280px;
  height: 280px;
  animation: float 6s ease-in-out infinite;
}

.affiliate-bot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.3));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

/* CTA Section */
.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(92, 0, 204, 0.1), transparent, rgba(121, 40, 202, 0.1));
  z-index: -1;
}

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

.btn-chat-widget {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-chat-widget i {
  font-size: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #000000;
  color: var(--white);
}

.footer .text-light,
.footer .text-white {
  color: var(--white) !important;
}

.footer .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer .social-icon {
  color: var(--white);
}

.footer .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-light);
  color: var(--primary) !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .hero-secondary-image {
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: auto;
  }
}

/* CSS-only Dark Mode Toggle */
#theme-toggle:checked~* {
  /* This will be applied when the checkbox is checked */
  color-scheme: dark;
}

/* Tooltip custom styling */
.tooltip {
  --bs-tooltip-bg: var(--primary);
  --bs-tooltip-color: var(--white);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-up {
  animation: slideUp 0.5s ease forwards;
}

/* CSS-only Parallax Effect */
.hero-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Floating Stats Section */
.floating-stats {
  position: relative;
  margin-top: -80px;
  z-index: 10;
}

.stats-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stat-item {
  padding: 1rem;
  position: relative;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: rotate(0deg) scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Enhanced Card Styles */
.card {
  will-change: transform;
}

.feature-card,
.info-card,
.affiliate-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::after,
.info-card::after,
.affiliate-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover::after,
.info-card:hover::after,
.affiliate-card:hover::after {
  transform: translateX(100%);
}

/* Enhanced Button Styles */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Scroll Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Enhanced Image Styles */
.image-mockup,
.info-image,
.affiliate-bot {
  transition: all 0.3s ease;
  will-change: transform;
}

.image-mockup:hover,
.info-image:hover,
.affiliate-bot:hover {
  transform: perspective(1000px) rotateY(5deg) scale(1.02);
}

/* Particle Background */
.particle-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  z-index: 1100;
  transition: width 0.2s ease;
}

/* New styles for light background feature sections */
.feature-light-bg {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-light-bg:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Ensure text colors are correct on light background */
.feature-light-bg h2 {
  color: var(--dark);
}

.feature-light-bg p {
  color: var(--muted);
}

.feature-light-bg .feature-list {
  color: var(--muted);
}

/* End new styles */

/* Modern Feature Card Styles (for specific features) */
.feature-card-modern {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.8));
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(92, 0, 204, 0.15);
  border-color: var(--primary-border);
}

.feature-card-modern:hover::before {
  opacity: 1;
}

/* Ensure consistent content styling within modern cards */
.feature-card-modern h2 {
  color: var(--dark);
}

.feature-card-modern p {
  color: var(--muted);
}

/* If needed, ensure image container styles are appropriate */
.feature-card-modern .feature-image-container {
  padding: 0;
  /* Reset padding if inherited */
}

.feature-card-modern .image-mockup {
  border-radius: 1rem;
  /* Consistent radius */
  /* Optional: Remove specific hover effect if desired */
  /* transition: none; */
  /* transform: none !important; */
}

/* Ensure list style is consistent */
.feature-card-modern .feature-list {
  color: var(--muted);
  /* Ensure correct text color */
}

.feature-card-modern .feature-list i {
  color: var(--primary);
  /* Ensure icon color */
}

/* End Modern Feature Card Styles */

/* Feature Icon Container */
.feature-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-icon-container i {
  font-size: 2rem;
  color: var(--white);
}

.feature-card-modern:hover .feature-icon-container {
  transform: scale(1.1) rotate(5deg);
}

/* ============================================
   CHANNEL SHOWCASE SECTION
   ============================================ */
.channel-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon i {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.channel-card:hover .channel-icon i {
  transform: scale(1.1);
}

/* Channel Icon Colors */
.channel-icon .bi-whatsapp {
  color: #25D366;
}

.channel-icon .bi-messenger {
  color: #0084FF;
}

.channel-icon .bi-instagram {
  color: #E4405F;
}

.channel-icon .bi-telegram {
  color: #0088cc;
}

.channel-icon .bi-chat-dots {
  color: #00C300;
}

.channel-icon .bi-chat-left-text {
  color: #5c00cc;
}

.channel-icon .bi-envelope {
  color: #6c757d;
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integration-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.integration-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.integration-icon i {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.integration-card:hover .integration-icon i {
  transform: scale(1.1);
}

/* Integration Icon Colors */
.integration-icon .bi-diagram-3 {
  color: #007bff;
}

.integration-icon .bi-envelope {
  color: #6c757d;
}

.integration-icon .bi-code-slash {
  color: #28a745;
}

.integration-icon .bi-plug {
  color: #ff6b6b;
}

/* ============================================
   SECURITY & COMPLIANCE SECTION
   ============================================ */
.security-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.security-icon i {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.security-card:hover .security-icon i {
  transform: scale(1.1);
}

/* Security Icon Colors */
.security-icon .bi-shield-lock {
  color: #007bff;
}

.security-icon .bi-shield-check {
  color: #28a745;
}

.security-icon .bi-file-earmark-lock {
  color: #dc3545;
}

/* ============================================
   USE CASES & TESTIMONIALS SECTION
   ============================================ */
.use-case-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.use-case-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.use-case-icon i {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-icon i {
  transform: scale(1.1);
}

/* Use Case Icon Colors */
.use-case-icon .bi-cart {
  color: #007bff;
}

.use-case-icon .bi-heart-pulse {
  color: #dc3545;
}

.use-case-icon .bi-house {
  color: #28a745;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.step-card {
  background-color: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(92, 0, 204, 0.3);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 2rem;
  color: var(--white);
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-feature {
  margin-bottom: 0.75rem;
}

/* How It Works Section */
.how-it-works-section {
  background-color: var(--white);
  position: relative;
}

.how-it-works-container {
  position: relative;
  padding: 2rem 0;
}

.connection-lines {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.connection-lines .line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  opacity: 0.3;
}

.connection-lines .line-1 {
  top: 0;
  left: 25%;
  width: 25%;
}

.connection-lines .line-2 {
  top: 0;
  left: 50%;
  width: 25%;
}

.connection-lines .line-3 {
  top: 0;
  left: 75%;
  width: 25%;
}

/* Utility Classes */
.lead-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lead-container-sm {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-image-container {
  width: 100%;
  max-width: 400px;
}

.comparison-slider {
  width: 100%;
  height: auto;
}

.comparison-slider video {
  width: 100%;
  height: auto;
}

/* Progress Bar Styles */
.progress {
  height: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}

.progress-bar {
  border-radius: 10px;
}

/* ROI Bar Heights */
.roi-bar-height-100 {
  height: 100px;
}

.roi-bar-height-135 {
  height: 135px;
}

/* Compliance Highlight */
.compliance-highlight {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background-color: var(--white);
}

.compliance-highlight i {
  font-size: 4rem;
  color: #28a745;
}

.compliance-highlight .bi-shield-fill-check {
  font-size: 4rem;
  color: #28a745;
}

/* Testimonial Highlight */
.testimonial-highlight {
  background: linear-gradient(135deg, rgba(92, 0, 204, 0.05), rgba(121, 40, 202, 0.05));
  border: 1px solid var(--primary-border);
  border-radius: 1rem;
}

/* Analytics Image Container */
.analytics-image-container img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

/* Analytics Section Images */
.analytics-section .rounded img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

@media (max-width: 991.98px) {

  .analytics-section .rounded img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }


  .navbar-container {
    background-color: var(--white-transperent);
    backdrop-filter: blur(10px);

  }


}

/* Image Comparison Slider Adjustments */
.comparison-slider {
  /* transform: scale(150%) !important; */
  max-width: 100%;
  /* Ensure it scales */
  height: auto;
  /* Adjust if needed based on image aspect ratio */
  aspect-ratio: 4 / 5;
  /* Example: Set aspect ratio based on your images (500/400) */
  --divider-width: 3px;
  --divider-color: var(--primary);
  /* Match theme color */
  --handle-size: 40px;
  --handle-color: var(--primary);
  /* Match theme color */
  --handle-background-color: var(--white);
  /* --handle-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  --handle-border-color: var(--border); */
  border: 0;
}

/* Ensure the slider component itself adopts the styling */
img-comparison-slider.rounded-4 {
  border-radius: 1rem;
  /* Bootstrap's rounded-4 equivalent */
  overflow: hidden;
  /* Important for border-radius */
}

img-comparison-slider::before,
img-comparison-slider::after {
  border: none !important;
  /* Remove any borders */
  box-shadow: none !important;
  /* Remove any box shadows */
}

/* How It Works Section */
#how-it-works .step-item {
  background-color: var(--white);
  /* Or var(--light) for subtle contrast */
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
  /* Make columns equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Push link to bottom */
}

#how-it-works .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

#how-it-works .step-image img {
  max-width: 120px;
  /* Adjust size as needed */
  height: 120px;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

#how-it-works .step-item h4 {
  color: var(--dark);
}

#how-it-works .step-item p {
  flex-grow: 1;
  /* Allow paragraph to take up space */
  margin-bottom: 1rem;
  /* Ensure space before link */
}

#how-it-works .step-item a {
  display: inline-block;
  transition: color 0.2s ease;
}

#how-it-works .step-item a:hover {
  color: var(--primary-hover);
}

#how-it-works .step-item a i {
  vertical-align: middle;
  transition: transform 0.2s ease;
}

#how-it-works .step-item a:hover i {
  transform: translateX(3px);
}

/* End How It Works Section */

/* ============================================
   ROI SECTION
   ============================================ */
.roi-section {
  background: linear-gradient(to bottom, var(--white), rgba(248, 249, 250, 0.8));
  position: relative;
}

.roi-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.roi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.roi-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.roi-metric .progress {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.05);
}

.roi-chart {
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.roi-bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.roi-bar {
  width: 60px;
  background-color: #e9ecef;
  border-radius: 8px 8px 0 0;
  transition: all 0.5s ease;
}

.roi-bar-highlight {
  background: linear-gradient(to top, var(--gradient-start), var(--gradient-end));
}

.roi-conversion .conversion-funnel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conversion-step {
  margin-bottom: 8px;
}

.conversion-bar {
  height: 24px;
  background-color: #e9ecef;
  border-radius: 6px;
  transition: all 0.5s ease;
}

.conversion-bar.highlight {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.w-30 {
  width: 30%;
}

.w-70 {
  width: 70%;
}

.roi-card .small.fst-italic {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  color: var(--muted);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  background-color: var(--white);
  position: relative;
}

.benefits-card-wrapper {
  position: relative;
  margin-bottom: 4rem;
}

.benefits-main-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.benefit-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--white);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: rgba(248, 249, 250, 0.5);
}

.benefit-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--primary);
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.benefit-check {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-check {
  opacity: 1;
  transform: scale(1.2);
}

/* ROI Stats Styles */
.roi-stats-wrapper {
  position: relative;
  margin-top: 2rem;
}

.roi-stats-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.roi-stat-item {
  padding: 1rem;
  transition: all 0.3s ease;
}

.roi-stat-item:hover {
  transform: translateY(-5px);
}

.roi-stat-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.roi-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.roi-stat-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Responsive styles for benefits */
@media (max-width: 991.98px) {
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .roi-stat-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .benefit-check {
    bottom: 1rem;
    right: 1rem;
  }

  .benefit-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .roi-stats-card {
    padding: 1rem;
  }

  .roi-stat-item {
    margin-bottom: 1rem;
  }

  .hero-secondary-image {
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: auto;
  }
}

img-comparison-slider {
  border: none !important;
  /* Remove any borders */
  box-shadow: none !important;
  /* Remove any box shadows */
}

img-comparison-slider:focus,
img-comparison-slider:hover {
  box-shadow: none !important;
  /* Ensure no box shadow on hover */
  border-color: transparent !important;
  /* Ensure no border color is applied */
}

/* Target images and videos inside the slider */
img-comparison-slider img,
img-comparison-slider video {
  border: none !important;
  /* Remove borders from images and videos inside the slider */
  box-shadow: none !important;
  /* Remove box shadows from images and videos */
}

/* Add this rule to target any potential outline that may appear on focus */
img-comparison-slider:focus-visible {
  outline: none !important;
  /* Remove outline on focus */
}

/* Add this rule to remove any outline or border when not hovered or focused */
img-comparison-slider:focus {
  border: none !important;
  /* Ensure no border on focus */
  box-shadow: none !important;
  /* Ensure no box shadow on focus */
}

/* Additional rule to ensure no outline appears */
img-comparison-slider:focus-within {
  outline: none !important;
  /* Remove outline when focused within */
}

/* Floating Channel Avatars */
.floating-channel-avatars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

.floating-channel-avatar {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeInFloat 0.8s ease forwards, floatChannel 4s ease-in-out infinite;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.floating-channel-avatar:hover {
  transform: scale(1.2) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.floating-channel-avatar i {
  font-size: 1.6rem;
}

/* Individual Avatar Colors */
.avatar-whatsapp i {
  color: #25D366;
}

.avatar-messenger i {
  color: #0084FF;
}

.avatar-instagram i {
  color: #E4405F;
}

.avatar-telegram i {
  color: #0088cc;
}

.avatar-line i {
  color: #00C300;
}

.avatar-livechat i {
  color: #5c00cc;
}

.avatar-email i {
  color: #6c757d;
}

/* Avatar Positioning - Scattered around Hero Text */
.avatar-whatsapp {
  top: -16%;
  left: 0%;
  animation-delay: 0s, 0s;
}

.avatar-messenger {
  top: 13%;
  right: -3%;
  animation-delay: 0.1s, 0.5s;
}

.avatar-instagram {
  top: -20%;
  right: 10%;
  animation-delay: 0.2s, 1s;
}

.avatar-telegram {
  top: 32%;
  left: -5%;
  animation-delay: 0.3s, 1.5s;
}

.avatar-line {
  top: 84%;
  left: 105%;
  transform: translateX(-50%);
  animation-delay: 0.4s, 2s;
}

.avatar-livechat {
  top: 55%;
  left: 5%;
  animation-delay: 0.5s, 2.5s;
}

.avatar-email {
  top: 55%;
  right: 5%;
  animation-delay: 0.6s, 3s;
}

/* Floating Animation Keyframes */
@keyframes fadeInFloat {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatChannel {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-12px) rotate(2deg);
  }

  50% {
    transform: translateY(-8px) rotate(0deg);
  }

  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

/* Override transform for positioned avatars */
.avatar-line {
  animation-name: fadeInFloatLine, floatChannelLine;
}

@keyframes fadeInFloatLine {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes floatChannelLine {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  25% {
    transform: translateX(-50%) translateY(-12px) rotate(2deg);
  }

  50% {
    transform: translateX(-50%) translateY(-8px) rotate(0deg);
  }

  75% {
    transform: translateX(-50%) translateY(-15px) rotate(-2deg);
  }
}

.avatar-line:hover {
  transform: translateX(-50%) scale(1.2) !important;
}

/* Responsive: Adjust positioning for tablets and smaller screens */
@media (max-width: 991.98px) {
  .floating-channel-avatar {
    width: 44px;
    height: 44px;
  }

  .floating-channel-avatar i {
    font-size: 1.4rem;
  }

  .avatar-whatsapp {
    top: -16%;
    left: 0%;
    animation-delay: 0s, 0s;
  }

  .avatar-messenger {
    top: 13%;
    right: -3%;
    animation-delay: 0.1s, 0.5s;
  }

  .avatar-instagram {
    top: -20%;
    right: 10%;
    animation-delay: 0.2s, 1s;
  }

  .avatar-telegram {
    top: 32%;
    left: -5%;
    animation-delay: 0.3s, 1.5s;
  }

  .avatar-line {
    top: 84%;
    left: 105%;
    transform: translateX(-50%);
    animation-delay: 0.4s, 2s;
  }

  .avatar-livechat {
    top: 55%;
    left: 5%;
    animation-delay: 0.5s, 2.5s;
  }

  .avatar-email {
    top: 55%;
    right: 5%;
    animation-delay: 0.6s, 3s;
  }
}

@media (max-width: 767.98px) {
  .floating-channel-avatar {
    width: 36px;
    height: 36px;
  }

  .floating-channel-avatar i {
    font-size: 1.2rem;
  }

  .avatar-whatsapp {
    top: -5%;
    left: 8%;
  }

  .avatar-messenger {
    top: 32%;
    right: 8%;
  }

  .avatar-instagram {
    top: 2%;
    right: 13%;
  }

  .avatar-telegram {
    top: 57%;
    left: 18%;
  }

  .avatar-line {
    top: 62%;
    left: 72%;
    transform: translateX(-50%);
  }

  .avatar-livechat {
    top: 35%;
    left: 5%;
  }

  .avatar-email {
    top: 22%;
    left: 1%;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-icon i {
    font-size: 1.75rem;
  }

  .channel-card,
  .integration-card,
  .security-card,
  .use-case-card {
    margin-bottom: 1rem;
  }

  .how-it-works-container {
    padding: 1rem 0;
  }
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
  position: relative;
}

/* Hero Section Enhanced */
.hero-badge-wrapper {
  margin-bottom: 1.5rem;
}

.hero-benefits {
  margin: 1.5rem 0;
}

.hero-benefits .bi-check-circle-fill {
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.trust-badge i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.hero-metrics-overlay {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-metrics-overlay:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-metrics-overlay i {
  font-size: 1.5rem;
  color: var(--primary);
}

.customer-notification {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  max-width: 250px;
  transition: all 0.3s ease;
  animation: notificationPulse 3s infinite alternate;
  backdrop-filter: blur(5px);
}

@keyframes notificationPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
}

.position-relative {
  position: relative;
}

.z-index-1 {
  z-index: 1;
}

/* Media queries for responsive hero section */
@media (max-width: 991.98px) {

  .hero-metrics-overlay,
  .customer-notification {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-trust-badges {
    gap: 0.8rem;
  }

  .trust-badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  .hero-badge-wrapper {
    flex-wrap: wrap;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .feature-card-modern {
    padding: 2rem;
  }

  .feature-icon-container {
    width: 56px;
    height: 56px;
  }

  .feature-icon-container i {
    font-size: 1.75rem;
  }
}

/* Enhanced Focus States for Accessibility */
a:focus,
button:focus,
.nav-link:focus,
.accordion-button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Enhanced Card Hover States */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Better Color Contrast */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary-subtle {
  background-color: rgba(92, 0, 204, 0.15) !important;
}

/* Responsive Typography */
@media (max-width: 991.98px) {
  .display-5 {
    font-size: 2.5rem;
  }

  .display-4 {
    font-size: 2.75rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2.25rem;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .display-md-2 {
    font-size: 2.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  .lead-lg {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 4rem 0 3rem;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-image-container-simple {
    padding-top: 1.5rem;
  }

  .min-vh-75 {
    min-height: auto;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0 2rem;
  }
}

@media (min-width: 768px) {
  .display-md-2 {
    font-size: 3.5rem;
  }
}