/* HEADER CLIENIX - DISEÑO TECH/CYBER - 100% RESPONSIVE */

/* Variables CSS para fácil mantenimiento */
:root {
  --primary-color: #0066ff;
  --bg-dark: #000000;
  --bg-overlay: rgba(50, 50, 50, 0.4);
  --border-color: rgba(100, 100, 100, 0.3);
  --text-primary: #e9e9e9;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --transition: all 0.3s ease;
}

/* HEADER PRINCIPAL */
.clienix-header {
  background: transparent;
  padding: clamp(0.6rem, 2vw, 0.9rem) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050; 
  box-shadow: none;
  border-bottom: 1px solid transparent; /* Reservamos el espacio para el borde */
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.clienix-header.scrolled {
  background-color: rgba(10, 10, 10, 0.75); 
  
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  padding: clamp(0.4rem, 1.5vw, 0.6rem) 0;
  
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
}

/* LOGO CLIENIX */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  height: clamp(35px, 8vw, 50px);
}

.brand-logo-img {
  height: 100%;
  width: auto;
  max-width: clamp(130px, 25vw, 200px);
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

/* Fallback si no hay imagen */
.brand-logo-fallback {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.5rem);
}

.brand-icon-wrapper {
  width: clamp(32px, 6vw, 40px);
  height: clamp(32px, 6vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  position: relative;
}

.brand-icon-wrapper i {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--primary-color);
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-text-main {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  line-height: 1;
}

.brand-text-sub {
  font-size: clamp(0.5rem, 1.2vw, 0.65rem);
  color: #999;
  letter-spacing: clamp(1px, 0.3vw, 2px);
  text-transform: uppercase;
  font-weight: 600;
}

/* NAVEGACIÓN CENTRAL */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 700px;
}

.nav-pills-tech {
  background: var(--bg-overlay);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: clamp(0.25rem, 0.5vw, 0.35rem);
  display: flex;
  gap: clamp(0.1rem, 0.3vw, 0.2rem);
  border: 1px solid var(--border-color);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-pills-tech .nav-link {
  color: var(--text-secondary);
  padding: clamp(0.5rem, 1vw, 0.65rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 50px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.nav-pills-tech .nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(80, 80, 80, 0.3);
}

.nav-pills-tech .nav-link.active {
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
}

/* ==========================================================================
   HEADER RIGHT - REDES, IDIOMA Y AUTENTICACIÓN
   ========================================================================== */
.header-right {
  display: flex;
  align-items: center;
  /* Espaciado responsivo y controlado entre Redes, Idioma y Login */
  gap: clamp(0.6rem, 1.5vw, 1.2rem); 
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1rem);
}

.social-links a {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ==========================================================================
   SELECTORES DE IDIOMA Y AUTENTICACIÓN (EN LINEA HORIZONTAL)
   ========================================================================== */
.lang-selector,
.auth-selector {
  display: flex;
  align-items: center;
  background: var(--bg-overlay);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: clamp(0.25rem, 0.5vw, 0.35rem) clamp(0.4rem, 0.8vw, 0.6rem);
  /* Evitamos que colapsen o cambien de tamaño agresivamente */
  flex-shrink: 0; 
  height: clamp(34px, 6vw, 42px); 
  box-sizing: border-box;
}

.lang-btn,
.auth-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Estilos específicos de idioma */
.lang-btn {
  padding: 0 clamp(0.5rem, 1vw, 0.8rem);
  height: 100%;
  border-radius: 50px;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(80, 80, 80, 0.3);
}

.lang-btn.active {
  color: var(--primary-color);
}

.lang-divider {
  width: 1px;
  height: 14px;
  background: rgba(100, 100, 100, 0.4);
}

/* Estilos específicos del botón Iniciar Sesión */
.auth-btn {
  color: var(--text-secondary);
  padding: 0 clamp(0.8rem, 1.5vw, 1.2rem);
  height: 100%;
  border-radius: 50px;
  text-decoration: none;
  gap: 8px;
}

.auth-btn i {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
}

.auth-btn:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 102, 255, 0.15); 
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.2); 
}

.auth-btn.active {
  background: linear-gradient(135deg, var(--primary-color), rgba(0, 210, 255, 0.7));
  color: #ffffff;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  background: var(--bg-overlay);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: clamp(0.5rem, 1vw, 0.6rem) clamp(0.7rem, 1.5vw, 0.9rem);
  border-radius: 10px;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(70, 70, 70, 0.5);
  box-shadow: none;
}

/* MOBILE MENU - SIDEBAR */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(100, 100, 100, 0.2);
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1060;
}

.mobile-nav.show {
  right: 0;
}

/* OVERLAY DEL SIDEBAR */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1035;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* HEADER DEL SIDEBAR */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  height: clamp(30px, 7vw, 40px);
}

.mobile-nav-logo img {
  height: 100%;
  width: auto;
  max-width: clamp(120px, 30vw, 150px);
  object-fit: contain;
}

.mobile-nav-close {
  background: var(--bg-overlay);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: clamp(35px, 8vw, 40px);
  height: clamp(35px, 8vw, 40px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.mobile-nav-close:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(53, 73, 255, 0.4);
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* ENLACES DEL SIDEBAR */
.mobile-nav-links {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.mobile-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 2vw, 1.2rem);
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.5vw, 0.8rem);
  border-radius: 10px;
  margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
  transition: var(--transition);
  text-align: left;
  border: 1px solid transparent;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
}

.mobile-nav .nav-link::before {
  content: "";
  width: 4px;
  height: clamp(16px, 4vw, 20px);
  background: transparent;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav .nav-link:hover {
  background: var(--bg-overlay);
  border-color: var(--border-color);
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

.mobile-nav .nav-link:hover::before {
  background: rgba(73, 53, 255, 0.5);
}

.mobile-nav .nav-link.active {
  background: rgba(53, 67, 255, 0.1);
  color: var(--primary-color);
  border-color: rgba(53, 83, 255, 0.3);
}

.mobile-nav .nav-link.active::before {
  background: var(--primary-color);
}

/* FOOTER DEL SIDEBAR */
.mobile-footer {
  margin-top: auto;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(100, 100, 100, 0.2);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mobile-social {
  display: flex;
  gap: clamp(0.7rem, 2vw, 1rem);
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 10vw, 45px);
  height: clamp(40px, 10vw, 45px);
  background: var(--bg-overlay);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  transition: var(--transition);
}

.mobile-social a:hover {
  background: rgba(53, 73, 255, 0.1);
  border-color: rgba(53, 73, 255, 0.4);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* SCROLLBAR DEL SIDEBAR */
.mobile-nav::-webkit-scrollbar {
  width: clamp(4px, 1vw, 6px);
}

.mobile-nav::-webkit-scrollbar-track {
  background: rgba(50, 50, 50, 0.2);
  border-radius: 10px;
}

.mobile-nav::-webkit-scrollbar-thumb {
  background: rgba(53, 90, 255, 0.3);
  border-radius: 10px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(53, 56, 255, 0.5);
}

/* RESPONSIVE BREAKPOINTS */

/* Large Desktop */
@media (max-width: 1400px) {
  .header-container {
    max-width: 100%;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .nav-pills-tech .nav-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .social-links {
    display: none;
  }
}

/* Tablet Landscape */
@media (max-width: 992px) {
  .nav-center,
  .header-right {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-container {
    gap: 1rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .clienix-header {
    padding: 0.7rem 0;
  }

  .mobile-nav {
    width: min(300px, 80vw);
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .clienix-header {
    padding: 0.6rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  .brand-logo {
    height: 35px;
  }

  .mobile-nav {
    width: min(280px, 85vw);
    padding: 1.5rem 1rem;
  }

  .mobile-nav .nav-link {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

/* Mobile Medium */
@media (max-width: 430px) {
  .brand-logo {
    height: 32px;
  }

  .brand-logo-img {
    max-width: 120px;
  }

  .brand-text-main {
    font-size: 1.1rem;
  }

  .brand-text-sub {
    font-size: 0.5rem;
  }

  .mobile-toggle {
    padding: 0.5rem 0.7rem;
    font-size: 1.2rem;
  }
}

/* Mobile Small */
@media (max-width: 375px) {
  .header-container {
    padding: 0 0.8rem;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-logo-img {
    max-width: 110px;
  }

  .mobile-nav {
    width: min(260px, 88vw);
  }

  .mobile-nav .nav-link {
    padding: 0.7rem 0.9rem;
  }

  .mobile-social a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
  .brand-text-main {
    font-size: 1rem;
  }

  .brand-text-sub {
    font-size: 0.45rem;
    letter-spacing: 1px;
  }

  .mobile-nav {
    width: 90vw;
  }
}

/* Landscape Mode Phones */
@media (max-height: 500px) and (orientation: landscape) {
  .clienix-header {
    padding: 0.5rem 0;
  }

  .brand-logo {
    height: 30px;
  }

  .mobile-nav {
    padding: 1rem;
  }

  .mobile-nav-header {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }

  .mobile-nav .nav-link {
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.3rem;
  }
}

/* Touch devices optimization */
@media (hover: none) and (pointer: coarse) {
  .nav-pills-tech .nav-link,
  .lang-btn,
  .mobile-toggle,
  .mobile-nav .nav-link,
  .mobile-social a {
    min-height: 44px; /* iOS recommended touch target */
    min-width: 44px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand-logo-img,
  .mobile-nav-logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    /* animation-duration: 0.01ms !important; */
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* WhatsApp Float - Estilo Tech */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
  color: white;
}

/*footer*/

.content-spacer {
  flex: 1;
}

/* FOOTER CLIENIX - TECH/CYBER STYLE */
.clienix-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-top: 1px solid rgba(100, 100, 100, 0.2);
  position: relative;
  overflow: hidden;
}

.clienix-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(53, 90, 255, 0.3) 50%,
    transparent 100%
  );
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

/* Brand Section */
.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  height: 50px;
}

.footer-logo-img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-mission {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 1.5rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-icon-tech {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(50, 50, 50, 0.4);
  border: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-tech:hover {
  background: rgba(53, 73, 255, 0.1);
  border-color: rgba(53, 73, 255, 0.4);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-left: 15px;
}

.footer-column h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
}

.footer-link::before {
  content: "›";
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info */
.contact-item-tech {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-icon-tech {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(50, 50, 50, 0.4);
  border: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-tech a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-tech a:hover {
  color: var(--primary-color);
}

/* CTA Button */
.footer-cta-btn {
  background: rgba(53, 73, 255, 0.1);
  border: 1px solid rgba(53, 124, 255, 0.3);
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.footer-cta-btn:hover {
  background: rgba(53, 73, 255, 0.2);
  border-color: rgba(56, 53, 255, 0.5);
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Footer Divider */
.footer-divider-tech {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(100, 100, 100, 0.3) 50%,
    transparent 100%
  );
  margin: 2.5rem 0;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-credit-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-credit-link:hover {
  color: #5855ff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    padding: 3rem 2rem 2rem;
  }

  .footer-column {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-column h5 {
    font-size: 1rem;
  }

  .footer-mission {
    font-size: 0.9rem;
  }

  .footer-link,
  .contact-item-tech {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .footer-logo-wrapper {
    height: 40px;
  }

  .footer-logo-img {
    max-width: 150px;
  }

  .footer-social {
    gap: 0.6rem;
  }

  .social-icon-tech {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* HERO SECTION - TECH/CYBER STYLE - 100% RESPONSIVE */
.hero-clienix {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  overflow: hidden;
  padding: 80px 0 60px; /* ← ASEGURA ESPACIO ARRIBA */
  z-index: 1; /* ← MENOR QUE EL HEADER */
}

/* Animated Grid Background */
.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(100, 100, 100, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 100, 100, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Gradient Overlay */
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(56, 53, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(53, 90, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: 2;
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(53, 67, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.particle:nth-child(2) {
  left: 20%;
  top: 80%;
  animation-delay: 2s;
  animation-duration: 14s;
}
.particle:nth-child(3) {
  left: 50%;
  top: 30%;
  animation-delay: 4s;
  animation-duration: 16s;
}
.particle:nth-child(4) {
  left: 80%;
  top: 60%;
  animation-delay: 6s;
  animation-duration: 13s;
}
.particle:nth-child(5) {
  left: 70%;
  top: 20%;
  animation-delay: 1s;
  animation-duration: 15s;
}
.particle:nth-child(6) {
  left: 30%;
  top: 50%;
  animation-delay: 3s;
  animation-duration: 17s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, 30px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(20px, 20px) scale(1.1);
    opacity: 0.5;
  }
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 50px;
  padding: clamp(0.4rem, 2vw, 0.5rem) clamp(1rem, 3vw, 1.2rem);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.hero-badge-icon {
  width: clamp(6px, 2vw, 8px);
  height: clamp(6px, 2vw, 8px);
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Main Title */
.hero-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 7vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  word-wrap: break-word;
}

.hero-title-gradient {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--primary-color) 50%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

.hero-title-white {
  color: #ffffff;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

/* Stats Row */
.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  min-width: fit-content;
}

.stat-number {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: fit-content;
  max-width: fit-content;
}

.btn-hero-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-hero-primary:hover {
  background: #5855ff;
  border-color: #5855ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(53, 73, 255, 0.4);
  color: #fff;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  color: #fff;
}

.btn-hero-secondary:hover {
  background: rgba(70, 70, 70, 0.5);
  border-color: rgba(53, 73, 255, 0.4);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Right Side - Decorative Element */
.hero-visual {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 40vw, 600px);
  height: clamp(400px, 40vw, 600px);
  z-index: 5;
  opacity: 0.3;
  pointer-events: none;
}

.visual-circle {
  position: absolute;
  border: 2px solid rgba(53, 134, 255, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.visual-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  border-style: dashed;
}

.visual-circle:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-duration: 15s;
  animation-direction: reverse;
}

.visual-circle:nth-child(3) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  animation-duration: 10s;
  border-color: rgba(53, 83, 255, 0.5);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
}

.scroll-icon {
  width: clamp(20px, 4vw, 24px);
  height: clamp(30px, 6vw, 36px);
  border: 2px solid rgba(53, 67, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-content {
    max-width: 1600px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .hero-visual {
    width: 500px;
    height: 500px;
  }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-visual {
    width: 450px;
    height: 450px;
    right: -15%;
    opacity: 0.25;
  }

  .hero-stats {
    gap: 2rem;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .hero-clienix {
    padding: 100px 0 60px;
  }

  .hero-visual {
    opacity: 0.15;
    right: -20%;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-cta-group {
    max-width: 100%;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .hero-clienix {
    min-height: 100vh;
    padding: 80px 0 40px;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-stats {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .hero-visual {
    display: none;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    min-width: 140px;
  }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) {
  .hero-clienix {
    padding: 70px 0 40px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-width: 100%;
    padding: 0.9rem 1.5rem;
  }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .hero-clienix {
    padding: 60px 0 30px;
    min-height: 100svh; /* Use svh for better mobile support */
  }

  .hero-grid-bg {
    background-size: 30px 30px;
  }

  .particle {
    width: 3px;
    height: 3px;
  }

  .hero-badge {
    padding: 0.3rem 0.8rem;
  }

  .hero-badge-icon {
    width: 6px;
    height: 6px;
  }

  .hero-title {
    line-height: 1.2;
  }

  .hero-subtitle {
    line-height: 1.6;
  }

  .hero-stats {
    gap: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .scroll-indicator {
    bottom: 1rem;
    font-size: 0.6rem;
  }

  .scroll-icon {
    width: 18px;
    height: 28px;
  }
}

/* Extra Small Mobile (< 320px) */
@media (max-width: 319px) {
  .hero-content {
    padding: 0 0.75rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-clienix {
    min-height: auto;
    padding: 40px 0 30px;
  }

  .hero-badge {
    margin-bottom: 1rem;
  }

  .hero-title {
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    margin-bottom: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
  .hero-content {
    max-width: 1800px;
  }

  .hero-visual {
    width: 700px;
    height: 700px;
  }
}

/*cellcrypt*/

/* SECCIÓN CELLCRYPT */
.cellcrypt-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
  background: #000000;
}

/* Clean Background */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  z-index: 1;
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(53, 73, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: 2;
}

/* Floating Particles */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 107, 53, 0.6);
  border-radius: 50%;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
}
.particle:nth-child(2) {
  left: 20%;
  top: 80%;
}
.particle:nth-child(3) {
  left: 50%;
  top: 30%;
}
.particle:nth-child(4) {
  left: 80%;
  top: 60%;
}
.particle:nth-child(5) {
  left: 70%;
  top: 20%;
}
.particle:nth-child(6) {
  left: 30%;
  top: 50%;
}

.container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-left {
  max-width: 100%;
}

.image-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.image-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  text-align: center;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: rgba(53, 90, 255, 0.3);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Badge */
.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.badge-icon {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--primary-color) 50%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-text {
  color: #ffffff;
}

.subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
}

.countries {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.country-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  padding: 12px 24px;
  border-radius: 12px;
  color: #e2e8f0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.country-tag:hover {
  background: rgba(53, 73, 255, 0.1);
  border-color: rgba(53, 73, 255, 0.4);
  transform: translateY(-2px);
}

.country-flag {
  font-size: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.feature-card {
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  padding: 28px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  background: rgba(53, 56, 255, 0.1);
  border-color: rgba(53, 67, 255, 0.4);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(53, 56, 255, 0.2);
  border: 1px solid rgba(53, 83, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.feature-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.cta-section {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: #5855ff !important;
  border-color: #6055ff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(53, 67, 255, 0.4);
  color: #fff;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(100, 100, 100, 0.3);
}

.btn-secondary:hover {
  background: rgba(70, 70, 70, 0.5);
  border-color: rgba(53, 73, 255, 0.4);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Trust Badges - Ahora dentro de image-right */
.image-right .trust-badges {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin-top: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.trust-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.trust-value {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Decorative Element */
.visual-decoration {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 5;
  opacity: 0.3;
}

@media (max-width: 1200px) {
  .visual-decoration {
    width: 500px;
    height: 500px;
    right: -15%;
  }

  .container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .visual-decoration {
    opacity: 0.2;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .image-right {
    order: -1;
  }

  .image-container {
    max-width: 400px;
  }

  .image-right .trust-badges {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .cellcrypt-section {
    padding: 60px 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .visual-decoration {
    display: none;
  }

  .image-right .trust-badges {
    gap: 20px;
    padding: 20px;
    flex-direction: column;
  }

  .trust-item {
    width: 100%;
  }

  .trust-value {
    font-size: 14px;
  }
}

/*prelader*/
        .preloader-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }

        .preloader-section::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .preloader-container {
            position: relative;
            width: 500px;
            height: 400px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* SVG Lines */
        svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        line {
            stroke: #0066ff;
            stroke-width: 1.5;
            opacity: 0.3;
            animation: drawLine 1.5s ease-in-out forwards;
        }

        @keyframes drawLine {
            from {
                stroke-dasharray: 300;
                stroke-dashoffset: 300;
            }
            to {
                stroke-dasharray: 300;
                stroke-dashoffset: 0;
            }
        }

        /* Nodos/Círculos */
        .neuron {
            position: absolute;
            border-radius: 50%;
            background: white;
            border: 2px solid #0066ff;
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
            z-index: 2;
            opacity: 0;
            animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .neuron::after {
            content: "";
            position: absolute;
            background: #0066ff;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(0.4);
                opacity: 1;
            }
            50% {
                transform: scale(0.7);
                opacity: 0.5;
            }
        }

        /* Tamaños y posiciones */
        /* CAPA 1 - Entrada */
        .n1 { width: 24px; height: 24px; top: 20px; left: 225px; animation-delay: 0.1s; }
        .n1::after { width: 8px; height: 8px; }

        /* CAPA 2 */
        .n2 { width: 28px; height: 28px; top: 100px; left: 80px; animation-delay: 0.2s; }
        .n2::after { width: 10px; height: 10px; }
        
        .n3 { width: 28px; height: 28px; top: 100px; left: 225px; animation-delay: 0.25s; }
        .n3::after { width: 10px; height: 10px; }
        
        .n4 { width: 28px; height: 28px; top: 100px; left: 370px; animation-delay: 0.3s; }
        .n4::after { width: 10px; height: 10px; }

        /* CAPA 3 */
        .n5 { width: 32px; height: 32px; top: 200px; left: 50px; animation-delay: 0.35s; }
        .n5::after { width: 12px; height: 12px; }
        
        .n6 { width: 32px; height: 32px; top: 200px; left: 150px; animation-delay: 0.4s; }
        .n6::after { width: 12px; height: 12px; }
        
        .n7 { width: 32px; height: 32px; top: 200px; left: 225px; animation-delay: 0.45s; }
        .n7::after { width: 12px; height: 12px; }
        
        .n8 { width: 32px; height: 32px; top: 200px; left: 300px; animation-delay: 0.5s; }
        .n8::after { width: 12px; height: 12px; }
        
        .n9 { width: 32px; height: 32px; top: 200px; left: 400px; animation-delay: 0.55s; }
        .n9::after { width: 12px; height: 12px; }

        /* CAPA 4 */
        .n10 { width: 28px; height: 28px; top: 300px; left: 80px; animation-delay: 0.6s; }
        .n10::after { width: 10px; height: 10px; }
        
        .n11 { width: 28px; height: 28px; top: 300px; left: 225px; animation-delay: 0.65s; }
        .n11::after { width: 10px; height: 10px; }
        
        .n12 { width: 28px; height: 28px; top: 300px; left: 370px; animation-delay: 0.7s; }
        .n12::after { width: 10px; height: 10px; }

        /* Extras */
        .n13 { width: 20px; height: 20px; top: 150px; left: 50px; animation-delay: 0.22s; }
        .n13::after { width: 6px; height: 6px; }
        
        .n14 { width: 20px; height: 20px; top: 150px; left: 400px; animation-delay: 0.32s; }
        .n14::after { width: 6px; height: 6px; }
        
        .n15 { width: 20px; height: 20px; top: 250px; left: 225px; animation-delay: 0.52s; }
        .n15::after { width: 6px; height: 6px; }

        /* Texto */
        .loading-text {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: #0066ff;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 2px;
            opacity: 0;
            animation: textAppear 0.8s ease-out 0.5s forwards;
            text-transform: uppercase;
        }

        @keyframes textAppear {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(10px);
            }
            to {
                opacity: 0.8;
                transform: translateX(-50%) translateY(0);
            }
        }

        .dots::after {
            content: '';
            animation: dots 1.5s steps(4, end) infinite;
        }

        @keyframes dots {
            0%, 20% { content: ''; }
            40% { content: '.'; }
            60% { content: '..'; }
            80%, 100% { content: '...'; }
        }

        .preloader-section.hidden {
            animation: fadeOutPreloader 0.6s ease-in forwards;
        }

        @keyframes fadeOutPreloader {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        @media (max-width: 480px) {
            .preloader-container {
                width: 350px;
                height: 300px;
                transform: scale(0.8);
            }
        }
/* nosotros home*/

.about-section {
  padding: 100px 20px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Background Grid */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(100, 100, 100, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 100, 100, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

/* Gradient Overlay */
.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(53, 67, 255, 0.15) 0%,
    transparent 50%
  );
  z-index: 2;
}

.about-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 10;
}

.about-content {
  padding-right: 20px;
}

.about-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.about-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-title-highlight {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--primary-color) 50%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-item {
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 100, 0.3);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.about-item:hover::before {
  transform: translateX(100%);
}

.about-item:hover {
  background: rgba(53, 67, 255, 0.1);
  border-color: rgba(53, 83, 255, 0.4);
  transform: translateY(-3px);
}

.item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.item-icon {
  width: 40px;
  height: 40px;
  background: rgba(53, 56, 255, 0.2);
  border: 1px solid rgba(53, 67, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.item-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.item-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.about-image-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(50, 50, 50, 0.4);
  border: 1px solid rgba(100, 100, 100, 0.3);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 40px;
}

.placeholder-icon {
  font-size: 80px;
  color: rgba(53, 73, 255, 0.3);
}

.placeholder-text {
  font-size: 16px;
  font-weight: 600;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-highlight-box {
  background: rgba(53, 67, 255, 0.1);
  border: 1px solid rgba(53, 83, 255, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.highlight-text {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 15px;
}

.highlight-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.highlight-company {
  color: var(--primary-color);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-image-side {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-item {
    padding: 25px;
  }

  .about-image-container {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .about-description {
    font-size: 15px;
  }

  .item-text {
    font-size: 13px;
  }

  .about-highlight-box {
    padding: 25px 20px;
  }
}

/*logos*/
/* ========== PARTNERS SECTION - ANCHO COMPLETO ========== */
.partners-section {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background-color: #0a0a0a;
}

.partners-header {
  padding: 0 40px;
  margin-bottom: 60px;
}

.partners-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.partners-subtitle {
  font-size: 18px;
  color: #999;
}

.partners-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
}

/* Gradientes laterales para efecto fade */
.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.partners-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.partners-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px; /* Usa gap en lugar de margin en los items */
  animation: partnersScroll 30s linear infinite;
  will-change: transform; /* Mejora el rendimiento */
}

.partners-carousel:hover {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 60px)); /* Ajusta por el gap */
  }
}

.partners-logo-item {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 20px;
}

.partners-logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff4d1a;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 77, 26, 0.3);
}

.partners-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.partners-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
}

.partners-logo-placeholder {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: 2px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .partners-header {
    padding: 0 20px;
  }

  .partners-title {
    font-size: 32px;
  }

  .partners-subtitle {
    font-size: 16px;
  }

  .partners-logo-item {
    width: 180px;
    height: 110px;
  }

  .partners-carousel {
    gap: 40px;
  }

  @keyframes partnersScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% - 40px));
    }
  }

  .partners-carousel-wrapper::before,
  .partners-carousel-wrapper::after {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .partners-logo-item {
    width: 150px;
    height: 90px;
  }

  .partners-carousel {
    gap: 30px;
  }

  @keyframes partnersScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% - 30px));
    }
  }
}

/* 1. Aseguramos que todo se mantenga en línea y centrado dentro del enlace */
.brand-logo {
    display: flex;
    align-items: center; 
    text-decoration: none;
    gap: 8px; /* Controla el espacio horizontal entre la imagen, el h3 y el p */
}

/* El h3 de Clienix (para asegurar que no tenga márgenes que empujen al p) */
.brand-logo h3 {
    margin: 0;
    font-weight: 700; /* Clienix se mantiene grueso */
}

/* 2. CSS específico para el <p> (cloud) */
.brand-logo p {
    color: var(--text-primary); /* Aplica tu variable de color */
    font-weight: 300;           /* Hace la tipografía delgada (Light) */
    font-size: 1.1rem;          /* Un tamaño ligeramente menor que el h3 para darle jerarquía */
    margin: 0;                  /* Resetea el margen por defecto del <p> */
    text-transform: lowercase;  /* Asegura que se mantenga en minúsculas si lo deseas */
    font-family: sans-serif;    /* Usa la misma fuente de tu proyecto */
}


        /* ========== SOLUTIONS SECTION ========== */
        .solutions-section {
            position: relative;
            padding: 100px 20px;
            background: #000000;
            overflow: hidden;
        }

        /* Background Grid */
        .solutions-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(100, 100, 100, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(100, 100, 100, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Gradient Overlay */
        .solutions-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(56, 53, 255, 0.12) 0%, transparent 60%);
            z-index: 2;
        }

        .solutions-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            z-index: 10;
        }

        /* Header Section */
        .solutions-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .solutions-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .badge-pulse {
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(53, 100, 255, 0.7); }
            50% { opacity: 0.7; transform: scale(1.1); box-shadow: 0 0 0 10px rgba(53, 73, 255, 0); }
        }

        .solutions-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .solutions-title-gradient {
            background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 50%, #ffffff 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 4s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .solutions-subtitle {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Solutions Grid */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .solution-card {
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 24px;
            padding: 50px 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

        /* Animated Border Effect */
        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .solution-card:hover::before {
            transform: translateX(100%);
        }

        /* Glow Effect on Hover */
        .solution-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(53, 67, 255, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
            border-radius: 50%;
            z-index: 0;
        }

        .solution-card:hover::after {
            width: 500px;
            height: 500px;
        }

        .solution-card:hover {
            background: rgba(53, 90, 255, 0.08);
            border-color: rgba(53, 107, 255, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(53, 56, 255, 0.3);
        }

        .solution-card-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* Solution Icon */
        .solution-icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(53, 73, 255, 0.15);
            border: 2px solid rgba(53, 90, 255, 0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            position: relative;
        }

        .solution-card:hover .solution-icon-wrapper {
            background: rgba(53, 100, 255, 0.25);
            border-color: rgba(53, 83, 255, 0.6);
            transform: scale(1.1) rotate(5deg);
        }

        .solution-icon {
            font-size: 36px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .solution-card:hover .solution-icon {
            transform: scale(1.15);
        }

        /* Solution Content */
        .solution-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .solution-card:hover .solution-title {
            color: var(--primary-color);
        }

        .solution-description {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: auto;
        }

        /* Solution Tags */
        .solution-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 25px;
            margin-bottom: 25px;
        }

        .solution-tag {
            background: rgba(53, 90, 255, 0.1);
            border: 1px solid rgba(53, 73, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .solution-card:hover .solution-tag {
            background: rgba(53, 107, 255, 0.2);
            border-color: rgba(53, 90, 255, 0.4);
            color: #fff;
        }

        /* Solution Link */
        .solution-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 8px 0;
            margin-top: auto;
        }

        .solution-link i {
            transition: transform 0.3s ease;
        }

        .solution-link:hover {
            gap: 12px;
        }

        .solution-link:hover i {
            transform: translateX(5px);
        }

        /* CTA Section */
        .solutions-cta {
            text-align: center;
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            border-radius: 24px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .solutions-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(53, 67, 255, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .solutions-cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .cta-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background: var(--primary-color);
            border: 1px solid var(--primary-color);
            color: #fff;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-cta-primary:hover {
            background: #5560ff;
            border-color: #5566ff;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(53, 56, 255, 0.4);
            color: #fff;
        }

        .btn-cta-primary:hover::before {
            left: 100%;
        }

        .btn-cta-secondary {
            background: rgba(50, 50, 50, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 100, 100, 0.3);
            color: #fff;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-cta-secondary:hover {
            background: rgba(70, 70, 70, 0.5);
            border-color: rgba(56, 53, 255, 0.4);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Floating Particles */
        .particles-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 3;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(53, 73, 255, 0.5);
            border-radius: 50%;
            animation: particleFloat 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 25%; top: 70%; animation-delay: 2s; animation-duration: 14s; }
        .particle:nth-child(3) { left: 50%; top: 40%; animation-delay: 4s; animation-duration: 16s; }
        .particle:nth-child(4) { left: 75%; top: 60%; animation-delay: 6s; animation-duration: 13s; }
        .particle:nth-child(5) { left: 85%; top: 25%; animation-delay: 1s; animation-duration: 15s; }
        .particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 3s; animation-duration: 17s; }

        @keyframes particleFloat {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            25% { transform: translate(30px, -30px) scale(1.2); opacity: 0.6; }
            50% { transform: translate(-30px, 30px) scale(0.8); opacity: 0.4; }
            75% { transform: translate(20px, 20px) scale(1.1); opacity: 0.5; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .solution-card {
                min-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .solutions-section {
                padding: 80px 20px;
            }

            .solutions-header {
                margin-bottom: 60px;
            }

            .solution-card {
                padding: 40px 30px;
                min-height: 320px;
            }

            .solution-icon-wrapper {
                width: 70px;
                height: 70px;
            }

            .solution-icon {
                font-size: 32px;
            }

            .solution-title {
                font-size: 24px;
            }

            .solutions-cta {
                padding: 50px 30px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-cta-primary,
            .btn-cta-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .solution-card {
                padding: 35px 25px;
            }

            .solution-tags {
                gap: 8px;
            }

            .solution-tag {
                font-size: 11px;
                padding: 6px 12px;
            }
        }