/* ----------- BASE & VARIABLES ----------- */
body {
    padding-top: 0;
}
.medios_pago {
	display: none;
}


:root {
  /* Dark Theme Variables (Default) */
  --bg-color: #050505;
  --bg-alt: #000000;
  --card-bg: #111111;
  --border-color: #222222;
  --border-hover: rgba(0, 255, 102, 0.4);

  --text-primary: #FFFFFF;
  --text-secondary: #ffffff;

  --primary-color: #05a901;
  --primary-hover: #00E676;
  --accent-color: #1a1a1a;

  --nav-bg: rgba(5, 5, 5, 0.7);
  --footer-bg: #030303;
  --overlay-bg: rgba(0, 0, 0, 0.6);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 255, 102, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --transition: all 0.3s ease;
}

[data-theme="light"] {
  --bg-color: #F8F9FA;
  --bg-alt: #FFFFFF;
  --card-bg: #FFFFFF;
  --border-color: #E2E8F0;
  --border-hover: rgba(0, 200, 83, 0.4);

  --text-primary: #111827;
  --text-secondary: #ffffff;

  --primary-color: #05a901;
  /* Slightly darker green for contrast on light */
  --primary-hover: #00E676;
  --accent-color: #F1F5F9;

  --nav-bg: rgba(255, 255, 255, 0.8);
  --footer-bg: #111827;
  --overlay-bg: rgba(255, 255, 255, 0.8);

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 10px 25px rgba(0, 200, 83, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body .wrap{
  /* font-family: var(--font-body); */
  /* background-color: var(--bg-color); */
  /* color: var(--text-primary); */
  /* line-height: 1.6; */
  /* transition: background-color 0.4s ease, color 0.4s ease; */
  /* overflow-x: hidden; */
  display: flex;
  flex-direction: column;
}
/* 
header.navbar {
  order: 1;
} */

#hero {
  order: 2;
}

.text-marquee-section {
  order: 11;
}

.trust-badges-section {
  display: none;
  order: 10;
  background-color: #05160e;
  /* Verde esmeralda muy oscuro y elegante */
  border-top: 1px solid rgba(0, 255, 102, 0.1);
  border-bottom: 1px solid rgba(0, 255, 102, 0.1);
}

#demos {
  order: 5;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), #44B337 0%, #44B337 100%);
  position: relative;
}

#demos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(0, 255, 106, 0.42) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 106, 0.42) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 10%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

#demos .container {
  position: relative;
  z-index: 2;
}
#demos h2{
  color: #fff;
}

#caracteristicas {
  order: 6;
}

#pipeline {
  display: none;
}

.marquee-section {
  order: 8;
}

#faq {
  order: 9;
}

.cta-banner {
  order: 10;
}

footer {
  order: 12;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  /* display: block; */
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

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

.bg-alt {
  background-color: var(--bg-alt);
}

/* Typography */
.subtitle {
  display: inline-block;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-title p {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}
.ayuda{
  z-index:99;
}
/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--primary-color);
}

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

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

/* ----------- HEADER ----------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(242, 242, 242, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Anaconda Logo Styling */
.logo-anaconda {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-wrap {
  font-size: 2.2rem;
  color: #00C853;
  display: flex;
  align-items: center;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.anaconda {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
}

.web {
  color: #00C853;
}

.datacenter {
  font-size: 0.65rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #00C853;
}

.nav-link:hover i {
  transform: translateY(2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
}

.login-link i {
  font-size: 1.4rem;
}

.cart-btn {
  font-size: 1.4rem;
  color: #000;
  display: flex;
  align-items: center;
}

.login-link:hover,
.cart-btn:hover {
  color: #00C853;
}

.lang-switch {
  display: flex;
  background-color: var(--accent-color);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
}

.lang-btn {
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: #000;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ----------- HERO ----------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.9;
  /* Aumentado para mejor visibilidad */
  filter: brightness(0.8) contrast(1.2);
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #a5a5a5 0%, transparent 30%);
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 5, 0) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 10;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--bg-alt);
}

#particles-js .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--bg-color));
  pointer-events: none;
  /* Important so mouse interacts with canvas */
}

[data-theme="light"] #particles-js {
  background-color: #e5e7eb;
}

[data-theme="light"] #particles-js .overlay {
  background: linear-gradient(to bottom, transparent, var(--bg-color));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  text-align: center;
  /* padding-bottom removed to honor .hero padding-bottom */
}

.hero .badge {
  display: inline-block;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: var(--primary-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-glow);
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.1);
  }

  to {
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
  }
}

.hero h1 {
  display: none;
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.hero h1 span {
  color: var(--primary-hover);
  position: relative;
  display: inline-block;
}

@keyframes gradientFlow {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: 0% 0;
  }
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg,
      #00FF66 0%,
      #00FF66 25%,
      #00FFFF 50%,
      #00FF66 75%,
      #00FF66 100%);
  background-size: 200% 100%;
  opacity: 0.9;
  z-index: -1;
  animation: gradientFlow 3s linear infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-desc-mobile {
  display: none;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.tech-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tech-stack p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}

.tech-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 2rem;
  color: var(--text-primary);
  flex-wrap: wrap;
  /* Ensure they wrap nicely on tiny screens */
  justify-content: center;
}

.tech-icons i,
.tech-icons iconify-icon {
  transition: var(--transition);
  cursor: pointer;
}

.tech-icons i.active,
.tech-icons iconify-icon.active,
.tech-icons i:hover,
.tech-icons iconify-icon:hover {
  color: var(--primary-hover);
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 0 10px var(--primary-color));
}

/* ----------- MARQUEE ----------- */
.marquee-section {
  padding: 4rem 0;
  /* Mayor espacio para el zigzag */
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), #15fc00bb 0%, #018b0c 100%);
  border-top: 1px solid #31f500;
  border-bottom: 1px solid #31f500;
  overflow: hidden;
  position: relative;
}

.marquee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(0, 255, 106, 0.8) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(0, 255, 106, 0.3) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  mask-image: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.marquee-section .container,
.marquee-section .marquee-container {
  position: relative;
  z-index: 2;
}

.marquee-section h2,
.marquee-section h2 span{
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.marquee-desc {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4rem;
  opacity: 1;
}

.marquee-container {
  width: 100vw;
  overflow: visible;
  position: relative;
}

/* ----------- TEXT MARQUEE ----------- */
.text-marquee-section {
  background: linear-gradient(90deg, #dcecc7, #dcecc7, #dcecc7, #dcecc7);
  background-size: 200% 100%;
  color: #000;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.text-marquee-container {
  display: flex;
  white-space: nowrap;
}

.text-marquee-track {
  display: flex;
  animation: scrollText 20s linear infinite;
  gap: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.text-marquee-track:hover {
  animation-play-state: paused;
}

/* ----------- TRUST BADGES ----------- */
.trust-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-card {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  transition: var(--transition);
  overflow: hidden;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.trust-label {
  display: block;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.trust-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.06);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 200, 83, 0.15);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.trust-card h4 {
  font-size: 1.2rem;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  padding: 1rem 0;
  /* Prevents overflow cropping when hovering scale */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

/* Interleaved Zigzag Effect */

.marquee-item {
  position: relative;
  width: 255px;
  height: 400px;
  /* Tamaño solicitado */
  border-radius: var(--radius-md);
  background-color: var(--card-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s ease;
  transform: translateZ(0);
  /* Fixes radius clipping on transform */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.marquee-item:nth-child(even) {
  transform: translateY(30px);
}

.marquee-item:nth-child(odd) {
  transform: translateY(-30px);
}

.marquee-item:hover {
  z-index: 10;
  border-color: var(--primary-color);
}

.marquee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
}

.marquee-title {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Gradients for placeholders */
.placeholder-img-1 {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
}

.placeholder-img-2 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.placeholder-img-3 {
  background: linear-gradient(135deg, #232526, #414345);
}

.placeholder-img-4 {
  background: linear-gradient(135deg, #141e30, #243b55);
}

.placeholder-img-5 {
  background: linear-gradient(135deg, #000000, #0f9b0f);
}

.placeholder-img-6 {
  background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
}

/* ----------- FEATURES ----------- */
#caracteristicas {
  position: relative;
  overflow: hidden;
  color: #fff;
}

#caracteristicas .subtitle {
  color: var(--primary-color);
}
#caracteristicas h2 {
  color: #fff;
}
#caracteristicas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/sitios-web/img_bg_2.webp);
  background-attachment: fixed;
  background-size: cover;
  background-position: left;
  z-index: 0;
}

#caracteristicas::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#caracteristicas .container {
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background-color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 255, 102, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #111111;
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #555555;
  font-size: 0.9375rem;
}

/* ----------- DEMOS ----------- */
.demo-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.demo-card {
  background-color: #ffffff;
  border: 1px solid rgb(28, 170, 0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  color: #000000;
}

.demo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: #00C853;
}

.demo-img {
  height: 240px;
  background-size: cover;
  background-position: top;
  position: relative;
  transition: background-position 2s ease;
}

.demo-card:hover .demo-img {
  background-position: bottom;
  /* Simulate scrolling inside demo */
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.demo-card:hover .demo-overlay {
  opacity: 1;
}

.demo-info {
  padding: 1.5rem;
}

.demo-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.demo-tag {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 4px;
  margin-bottom: 1.25rem;
}

.demo-stats {
  display: none;
}

.demo-stats .price {
  color: var(--primary-color);
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding:0;
}

.demo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #000000;
}

.demo-features i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* ----------- CUSTOM WEB BANNER ----------- */
.custom-web-banner {
  display: none;
  margin-top: 2rem;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: #276100;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.custom-web-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 40%, #00FF66 50%, #007BFF 60%, transparent 100%);
  animation: rotate-border 4s linear infinite;
  z-index: 0;
}

@keyframes rotate-border {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.custom-web-banner .banner-content {
  position: relative;
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: calc(var(--radius-lg) - 3px);
  z-index: 1;
}

.banner-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #111111;
}

.custom-web-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.main-input {
  flex: 2;
}

.small-input {
  flex: 1;
}

.modern-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  color: #111111;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.modern-input:focus {
  border-color: var(--primary-color);
}

.small-input i {
  position: absolute;
  left: 1.25rem;
  font-size: 1.25rem;
  color: #555555;
  z-index: 2;
}

.small-input input {
  padding-left: 3.5rem;
}

.cta-form-btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .custom-web-form {
    flex-direction: column;
  }
}

/* ----------- FAQ ----------- */
#faq {
  position: relative;
  background-color: #ffffff;
  color: #111111;
}

#faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(94, 235, 0, 0.603) 2px, transparent 2px);
  background-size: 30px 30px;
  mask-image: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 10%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

#faq .container {
  position: relative;
  z-index: 2;
}

#faq h2 {
  color: #111111;
  font-size: 2.5rem;
}

#faq .subtitle {
  color: var(--primary-color);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.accordion {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary-color) !important;
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #ffffff;
}

.accordion-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: #111111;
}

.accordion-icon {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  padding: 0 1.5rem 1.25rem;
  max-height: 500px;
}

.accordion-body p {
  color: #555555;
  font-size: 0.9375rem;
}

.faq-image {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-image img,
.faq-image video {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  width: 100%;
  height: auto;
  display: block;
}

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

/* ----------- CTA BANNER ----------- */
.cta-banner {
  background: #f4f4f4;
  position: relative;
  overflow: hidden;
  color: #000000;
}
.cta-banner .btn{
  background:#fff !important;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /*background: radial-gradient(circle, rgba(0, 255, 102, 0.05) 0%, transparent 60%);*/
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

.cta-desc {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}

.cta-banner .btn-outline {
  color: #000000;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 40px;
}

[data-theme="light"] .bg-white-hover:hover {
  background-color: #fff;
}

/* ----------- FOOTER ----------- */
.footer {
  background-color: #ffffff;
  padding-top: 5rem;
  border-top: 1px solid var(--border-color);
  color: #0d1117;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-desc {
  color: #555555;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #000000;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: #000000;
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #555555;
  font-size: 0.9375rem;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #000;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: #000000;
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ----------- FLOATING WHATSAPP ----------- */
.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  transition: var(--transition);
  /* animation: bouncePulse 1s infinite; */
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
}

.whatsapp-btn img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.whatsapp-btn .img-hover {
  display: none;
}

.whatsapp-btn:hover .img-normal {
  display: none;
}

.whatsapp-btn:hover .img-hover {
  display: block;
}

.whatsapp-btn:hover {
  /*transform: scale(1.1);*/
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.4));
}

@keyframes bouncePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ----------- PIPELINE ----------- */
.pipeline-section {
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
}

.pipeline-header {
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pipeline-header h2 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pipeline-header h2 i {
  color: var(--primary-color);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pipeline-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
}

.timeline-line {
  position: absolute;
  top: 10px;
  bottom: 0px;
  left: 0;
  width: 2px;
  background-color: var(--border-color);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.timeline-node {
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background-color: var(--bg-color);
  transform: translateX(-50%);
  transition: var(--transition);
}

[data-theme="light"] .timeline-node {
  background-color: var(--bg-alt);
}

.timeline-item.active .timeline-node {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.timeline-item:hover .timeline-node {
  border-color: var(--primary-hover);
  transform: translateX(-50%) scale(1.2);
}

.timeline-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.timeline-content h3 i {
  color: var(--text-secondary);
  font-size: 1rem;
}

.timeline-item.active .timeline-content h3 i {
  color: var(--primary-color);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pipeline-visual {
  position: relative;
}

.tech-card {
  position: relative;
  background-color: transparent;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
}

.tech-card-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
  transition: var(--transition);
}

.tech-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  z-index: 5;
}

.tech-card:hover .tech-card-inner {
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.4);
  transform: translateY(-5px);
}

.tech-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6) contrast(1.1);
  transition: var(--transition);
}

.tech-card-inner:hover .tech-image {
  filter: brightness(0.8) contrast(1.1);
  transform: scale(1.02);
}

.floating-tech {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}

.floating-1 {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.floating-2 {
  bottom: 25%;
  right: 15%;
  animation-delay: 1.5s;
  font-size: 1.8rem;
}

.floating-3 {
  top: 40%;
  right: 25%;
  animation-delay: 3s;
  font-size: 1.8rem;
  color: #fff;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-image {
    order: -1;
    text-align: center;
    position: relative;
    top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

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

  .nav-menu .nav-link {
    font-size: 1.5rem;
  }

  .nav-actions .btn,
  .nav-actions .login-link,
  .nav-actions .cart-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }

  .hero-video {
    object-position: 15% center;
  }


  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-desc-desktop {
    display: none;
  }

  .hero-desc-mobile {
    display: block;
  }

  .hero h1 span::after {
    bottom: 1px;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .hero-btns {
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    margin-bottom: 2rem;
  }

  .marquee-track {
    padding: 2rem 0;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img,
  .footer-certs img {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .flex-space {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}