/* ===== LANDING SECTIONS - Consolidated */
/* Announcement box (admin) */
#announcementBox.announcement-box {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
/* A-Ads banner */
.ad-banner-section {
  position: relative;
  display: block;
  min-height: 90px;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.ad-banner-container { position: relative; max-width: 1400px; margin: 0 auto; }
.a-ads-banner-content { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; min-height: 90px; }
.ad-close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 255, 136, 0.8);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-close-btn:hover { background: rgba(0, 255, 136, 1); }

/* ===== HERO ===== */
.hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__header {
  margin-bottom: 48px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-primary);
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.06);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px auto;
}

.hero__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  margin: 0;
  padding: 0;
}

.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero__meta li i {
  color: var(--lp-accent);
  font-size: 0.9rem;
}

.hero__cta {
  margin-top: 48px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #000;
  background: var(--lp-accent);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 24px rgba(0, 255, 136, 0.35);
}

.hero__btn:hover {
  background: #00e68a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.4);
}

.hero__btn i {
  font-size: 1.125rem;
}

.hero__cta-hint {
  margin: 16px 0 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero__cta-hint i {
  margin-right: 4px;
  color: var(--lp-accent);
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 64px;
  }

  .hero__header {
    margin-bottom: 36px;
  }

  .hero__meta {
    gap: 16px 24px;
  }

  .hero__meta li {
    font-size: 0.8125rem;
  }

  .hero__cta {
    margin-top: 40px;
  }

  .hero__btn {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.875rem;
  }

  .hero__subtitle {
    font-size: 0.9375rem;
  }
}

/* ===== CTA PARA DESCARGAR APP ===== */
.app-download-cta {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  padding: 3rem 2rem;
  margin: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(167, 139, 250, 0.1);
  border-bottom: 1px solid rgba(167, 139, 250, 0.1);
  position: relative;
  overflow: hidden;
  clear: both;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

/* Asegurar que el hero tenga espacio suficiente */
.neurosearch-hero + .app-download-cta {
  margin-top: 3rem;
}

.app-download-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.app-download-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.app-download-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(167, 139, 250, 0.03);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
  box-sizing: border-box;
}

.app-download-cta-icon {
  font-size: 3rem;
  color: #A78BFA;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.app-download-cta-text {
  flex: 1;
}

.app-download-cta-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #A78BFA 0%, #F472B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.app-download-cta-text p {
  font-size: 1rem;
  color: #8E8E93;
  margin: 0;
  line-height: 1.5;
}

.app-download-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  align-items: center;
}

.app-download-btn-primary,
.app-download-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.app-download-btn-primary {
  background: linear-gradient(135deg, #A78BFA 0%, #F472B6 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
}

.app-download-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(167, 139, 250, 0.4);
}

.app-download-btn-secondary {
  background: rgba(30, 30, 35, 0.9);
  color: #ffffff;
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.app-download-btn-secondary:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(167, 139, 250, 0.2);
}

/* Botón deshabilitado solo si el href es # o está vacío */
.app-download-btn-secondary[href="#"]:not([href*="play.google.com"]),
.app-download-btn-secondary[href=""] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Cuando tenga un link válido, activar el botón */
.app-download-btn-secondary[href*="play.google.com"],
.app-download-btn-secondary[href*="playstore"] {
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.app-download-btn-primary i,
.app-download-btn-secondary i {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 968px) {
  .app-download-cta {
    padding: 2.5rem 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .app-download-cta-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .app-download-cta-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .app-download-cta-text h2 {
    font-size: 1.5rem;
  }
  
  .app-download-cta-text p {
    font-size: 0.95rem;
  }
  
  .app-download-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .app-download-btn-primary,
  .app-download-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .app-download-cta {
    padding: 2rem 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .app-download-cta-content {
    padding: 1.5rem;
    gap: 1.25rem;
  }
  
  .app-download-cta-text h2 {
    font-size: 1.25rem;
  }
  
  .app-download-cta-text p {
    font-size: 0.875rem;
  }
  
  .app-download-cta-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .app-download-btn-primary,
  .app-download-btn-secondary {
    font-size: 0.95rem;
    padding: 0.875rem 1.25rem;
  }
}


/* ===== TECHNOLOGY SECTION - NEUROSEARCH STYLE ===== */
.neurosearch-technology {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
}

.neurosearch-technology-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Título principal */
.neurosearch-technology-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Subtítulo */
.neurosearch-technology-subtitle {
  font-size: 1rem;
  color: #888888;
  margin: 0 0 80px 0;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
}

/* Grid de características */
.neurosearch-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjetas de características */
.neurosearch-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 200px;
}

.neurosearch-feature-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-4px);
}

/* Icono de característica */
.neurosearch-feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #ffffff;
}

/* Título de característica */
.neurosearch-feature-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-features-grid {
    gap: 16px;
  }
  
  .neurosearch-feature-card {
    padding: 32px 16px;
    min-height: 180px;
  }
}

@media (max-width: 1024px) {
  .neurosearch-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .neurosearch-technology-container {
    padding: 0 30px;
  }
  
  .neurosearch-technology-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .neurosearch-technology {
    padding: 80px 0;
  }

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

  .neurosearch-technology-container {
    padding: 0 24px;
  }
  
  .neurosearch-technology-title {
    font-size: 2.4rem;
  }
  
  .neurosearch-technology-subtitle {
    font-size: 0.9rem;
    margin-bottom: 60px;
  }
  
  .neurosearch-feature-card {
    padding: 28px 16px;
    min-height: 160px;
  }
  
  .neurosearch-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  
  .neurosearch-feature-title {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .neurosearch-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .neurosearch-feature-card {
    padding: 32px 20px;
    min-height: 140px;
  }
  
  .neurosearch-technology-title {
    font-size: 2rem;
  }
  
  .neurosearch-technology-subtitle {
    font-size: 0.85rem;
    margin-bottom: 40px;
  }
}


/* ===== INSTITUCIONAL SECTIONS - ESTILO CORPORATIVO Y MODERNO ===== */

/* ===== TRUST & SECURITY SECTION ===== */
.institutional-trust-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.institutional-trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.institutional-trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.institutional-trust-header {
  text-align: center;
  margin-bottom: 80px;
}

.institutional-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  color: #00d4ff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.institutional-tag i {
  font-size: 0.9rem;
}

.institutional-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.institutional-subtitle {
  font-size: 1.25rem;
  color: #b3b3b3;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.institutional-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.institutional-trust-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.institutional-trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.institutional-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.institutional-trust-card:hover::before {
  opacity: 1;
}

.trust-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  color: #00d4ff;
}

.institutional-trust-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.institutional-trust-card p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: #00ff88;
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-badge i {
  font-size: 0.875rem;
}

/* Trust Indicators */
.institutional-trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  padding: 60px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.trust-indicator-item {
  text-align: center;
}

.trust-indicator-value {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.trust-indicator-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.trust-indicator-sub {
  font-size: 0.875rem;
  color: #888888;
}

/* ===== COMPLIANCE & REGULATION SECTION ===== */
.institutional-compliance-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #000000;
  overflow: hidden;
}

.institutional-compliance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.institutional-compliance-header {
  text-align: center;
  margin-bottom: 80px;
}

.compliance-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.compliance-feature-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.compliance-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15);
  background: rgba(26, 26, 26, 0.9);
}

.compliance-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  color: #00ff88;
}

.compliance-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.compliance-feature-card p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.6;
  margin: 0;
}

/* Compliance Status */
.compliance-status-section {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px;
  backdrop-filter: blur(10px);
}

.compliance-status-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.compliance-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.compliance-status-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.compliance-status-item:hover {
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 0, 0, 0.6);
}

.compliance-status-item i {
  font-size: 1.5rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.compliance-status-item i.status-active {
  color: #00ff88;
}

.compliance-status-item i.status-pending {
  color: #ffaa00;
}

.status-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.status-content p {
  font-size: 0.9375rem;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .institutional-trust-grid,
  .compliance-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .institutional-trust-section,
  .institutional-compliance-section {
    padding: 80px 0;
  }

  .institutional-trust-container,
  .institutional-compliance-container {
    padding: 0 24px;
  }

  .institutional-title {
    font-size: 2.5rem;
  }

  .institutional-subtitle {
    font-size: 1.125rem;
  }

  .institutional-trust-grid,
  .compliance-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .institutional-trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px 24px;
  }

  .compliance-status-grid {
    grid-template-columns: 1fr;
  }

  .trust-indicator-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .institutional-trust-indicators {
    grid-template-columns: 1fr;
  }

  .institutional-title {
    font-size: 2rem;
  }
}

/* ===== INSTITUTIONAL PARTNERS SECTION ===== */
.institutional-partners-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
}

.institutional-partners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.institutional-partners-header {
  text-align: center;
  margin-bottom: 80px;
}

.institutional-partners-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

.partner-category {
  width: 100%;
}

.partner-category-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 32px 0;
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 16px;
}

.partner-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.partner-logo-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.partner-logo-card:hover::before {
  opacity: 1;
}

.partner-logo-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #00d4ff;
  position: relative;
  z-index: 1;
}

.partner-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}

.partner-type {
  font-size: 0.875rem;
  color: #888888;
  position: relative;
  z-index: 1;
}

/* Partnership CTA */
.partnership-cta-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 60px;
  backdrop-filter: blur(10px);
}

.partnership-cta-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.partnership-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #00d4ff;
  flex-shrink: 0;
}

.partnership-cta-text {
  flex: 1;
  min-width: 300px;
}

.partnership-cta-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.partnership-cta-text p {
  font-size: 1rem;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.6;
}

.partnership-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.partnership-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.partnership-cta-button i {
  font-size: 0.875rem;
}

/* Responsive Partners */
@media (max-width: 1200px) {
  .partners-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .institutional-partners-section {
    padding: 80px 0;
  }

  .institutional-partners-container {
    padding: 0 24px;
  }

  .partners-logos-grid {
    grid-template-columns: 1fr;
  }

  .partnership-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .partnership-cta-text {
    min-width: auto;
  }
}


/* ===== ROADMAP SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-roadmap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
}

/* Grid sutil de fondo */
.neurosearch-roadmap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-roadmap-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.neurosearch-roadmap-header {
  text-align: center;
  margin-bottom: 100px;
}

.neurosearch-roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.neurosearch-roadmap-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.neurosearch-roadmap-subtitle {
  font-size: 1rem;
  color: #888888;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Timeline */
.neurosearch-roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Línea de conexión futurista */
.neurosearch-roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, 
    #ffffff 0%, 
    #ffffff 8.33%, 
    rgba(255, 255, 255, 0.3) 8.33%, 
    rgba(255, 255, 255, 0.3) 16.66%,
    #ffffff 16.66%,
    #ffffff 25%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Puntos de conexión en la línea */
.neurosearch-roadmap-timeline::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 8%;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  z-index: 2;
}

/* Phase */
.neurosearch-roadmap-phase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Número de fase futurista */
.neurosearch-phase-number {
  width: 90px;
  height: 90px;
  background: rgba(30, 30, 35, 0.9);
  border: 2px solid rgba(60, 60, 65, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

/* Anillo exterior animado */
.neurosearch-phase-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neurosearch-phase-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.neurosearch-roadmap-phase:hover .neurosearch-phase-number::before,
.neurosearch-roadmap-phase:hover .neurosearch-phase-number::after {
  opacity: 1;
  animation: phase-ring-pulse 2s ease-in-out infinite;
}

@keyframes phase-ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Estado completado */
.neurosearch-roadmap-phase.completed .neurosearch-phase-number {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.neurosearch-roadmap-phase.completed .neurosearch-phase-number::before {
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

/* Estado activo */
.neurosearch-roadmap-phase.active .neurosearch-phase-number {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  animation: phase-active-pulse 2s ease-in-out infinite;
}

.neurosearch-roadmap-phase.active .neurosearch-phase-number::before {
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  animation: phase-ring-pulse 2s ease-in-out infinite;
}

@keyframes phase-active-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
  }
}

/* Card de fase */
.neurosearch-phase-card {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Borde superior animado */
.neurosearch-phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-phase-card:hover::before {
  left: 100%;
}

.neurosearch-phase-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.neurosearch-roadmap-phase.completed .neurosearch-phase-card {
  border-color: rgba(255, 255, 255, 0.3);
}

.neurosearch-roadmap-phase.active .neurosearch-phase-card {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

/* Status Badge */
.neurosearch-phase-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.neurosearch-phase-status-badge.completed {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.neurosearch-phase-status-badge.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

.neurosearch-phase-status-badge.upcoming {
  background: rgba(30, 30, 35, 0.9);
  border-color: rgba(60, 60, 65, 0.5);
  color: rgba(255, 255, 255, 0.5);
}

.neurosearch-phase-status-badge i {
  font-size: 0.7rem;
}

/* Contenido de fase */
.neurosearch-phase-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.neurosearch-phase-period {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 400;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.neurosearch-phase-description {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

/* Features */
.neurosearch-phase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.neurosearch-phase-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(60, 60, 65, 0.3);
  transition: all 0.3s ease;
}

.neurosearch-phase-features li:hover {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: translateX(4px);
}

.neurosearch-phase-features li i {
  font-size: 0.75rem;
  width: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
}

.neurosearch-roadmap-phase.completed .neurosearch-phase-features li i {
  color: rgba(255, 255, 255, 0.8);
}

.neurosearch-roadmap-phase.active .neurosearch-phase-features li i.fa-spinner {
  color: rgba(255, 255, 255, 0.9);
}

.neurosearch-roadmap-phase .neurosearch-phase-features li i.fa-circle {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-roadmap-timeline {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .neurosearch-roadmap-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .neurosearch-roadmap-timeline::before {
    display: none;
  }
  
  .neurosearch-roadmap-container {
    padding: 0 30px;
  }
  
  .neurosearch-roadmap-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .neurosearch-roadmap {
    padding: 80px 0;
  }

  .neurosearch-roadmap-container {
    padding: 0 24px;
  }

  .neurosearch-roadmap-header {
    margin-bottom: 60px;
  }
  
  .neurosearch-roadmap-title {
    font-size: 2.4rem;
  }
  
  .neurosearch-roadmap-subtitle {
    font-size: 0.9rem;
  }

  .neurosearch-roadmap-timeline {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .neurosearch-phase-number {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .neurosearch-phase-card {
    padding: 28px 24px;
  }

  .neurosearch-phase-title {
    font-size: 1.3rem;
  }

  .neurosearch-phase-description {
    font-size: 0.9rem;
  }

  .neurosearch-phase-features li {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
}

@media (max-width: 600px) {
  .neurosearch-roadmap-title {
    font-size: 2rem;
  }
  
  .neurosearch-phase-number {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
  
  .neurosearch-phase-card {
    padding: 24px 20px;
  }
}


/* ===== TOKENOMICS SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-tokenomics {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
}

/* Grid sutil de fondo */
.neurosearch-tokenomics::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-tokenomics-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.neurosearch-tokenomics-header {
  text-align: center;
  margin-bottom: 80px;
}

.neurosearch-tokenomics-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.neurosearch-tokenomics-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.neurosearch-tokenomics-subtitle {
  font-size: 1rem;
  color: #888888;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Main Stats */
.neurosearch-tokenomics-main-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.neurosearch-main-stat-card {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.neurosearch-main-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-main-stat-card:hover::before {
  left: 100%;
}

.neurosearch-main-stat-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.neurosearch-stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #ffffff;
  background: rgba(20, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(60, 60, 65, 0.3);
  transition: all 0.3s ease;
}

.neurosearch-main-stat-card:hover .neurosearch-stat-icon {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-stat-value {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.neurosearch-stat-label {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Distribution Chart */
.neurosearch-tokenomics-distribution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.neurosearch-distribution-chart-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.neurosearch-distribution-chart-container canvas {
  width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.neurosearch-chart-center-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.neurosearch-chart-center-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.02em;
}

.neurosearch-chart-center-subtitle {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Distribution Legend */
.neurosearch-distribution-legend {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.neurosearch-legend-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.neurosearch-legend-item:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateX(8px);
}

.neurosearch-legend-color {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.neurosearch-legend-info {
  flex: 1;
}

.neurosearch-legend-percentage {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.neurosearch-legend-label {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.neurosearch-legend-amount {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 400;
}

/* Key Features */
.neurosearch-tokenomics-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.neurosearch-tokenomics-feature-card {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.neurosearch-tokenomics-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-tokenomics-feature-card:hover::before {
  left: 100%;
}

.neurosearch-tokenomics-feature-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.neurosearch-tokenomics-feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #ffffff;
  background: rgba(20, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(60, 60, 65, 0.3);
  transition: all 0.3s ease;
}

.neurosearch-tokenomics-feature-card:hover .neurosearch-tokenomics-feature-icon {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-tokenomics-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.neurosearch-tokenomics-feature-card p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-tokenomics-distribution {
    gap: 40px;
  }
  
  .neurosearch-tokenomics-features {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .neurosearch-tokenomics-main-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .neurosearch-tokenomics-distribution {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .neurosearch-tokenomics-container {
    padding: 0 30px;
  }
  
  .neurosearch-tokenomics-title {
    font-size: 2.8rem;
  }
  
  .neurosearch-tokenomics-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .neurosearch-tokenomics {
    padding: 80px 0;
  }

  .neurosearch-tokenomics-container {
    padding: 0 24px;
  }

  .neurosearch-tokenomics-header {
    margin-bottom: 60px;
  }
  
  .neurosearch-tokenomics-title {
    font-size: 2.4rem;
  }
  
  .neurosearch-tokenomics-subtitle {
    font-size: 0.9rem;
  }
  
  .neurosearch-tokenomics-main-stats {
    margin-bottom: 60px;
  }
  
  .neurosearch-main-stat-card {
    padding: 32px 24px;
  }
  
  .neurosearch-stat-value {
    font-size: 2rem;
  }
  
  .neurosearch-tokenomics-distribution {
    margin-bottom: 60px;
  }
  
  .neurosearch-tokenomics-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .neurosearch-tokenomics-feature-card {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .neurosearch-tokenomics-title {
    font-size: 2rem;
  }
  
  .neurosearch-main-stat-card {
    padding: 28px 20px;
  }
  
  .neurosearch-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .neurosearch-stat-value {
    font-size: 1.8rem;
  }
  
  .neurosearch-chart-center-title {
    font-size: 2rem;
  }
  
  .neurosearch-legend-item {
    padding: 16px;
  }
  
  .neurosearch-legend-percentage {
    font-size: 1.3rem;
  }
}

/* Detailed Allocation Table */
.neurosearch-tokenomics-details {
  margin-top: 80px;
  margin-bottom: 80px;
}

.neurosearch-details-title {
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.neurosearch-allocation-table {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

.neurosearch-allocation-table table {
  width: 100%;
  border-collapse: collapse;
}

.neurosearch-allocation-table thead {
  background: rgba(20, 20, 25, 0.7);
}

.neurosearch-allocation-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(60, 60, 65, 0.5);
}

.neurosearch-allocation-table tbody tr {
  border-bottom: 1px solid rgba(60, 60, 65, 0.3);
  transition: all 0.3s ease;
}

.neurosearch-allocation-table tbody tr:hover {
  background: rgba(40, 40, 45, 0.5);
}

.neurosearch-allocation-table td {
  padding: 18px 24px;
  font-size: 0.95rem;
  color: #ffffff;
}

.neurosearch-allocation-table td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.neurosearch-allocation-table td:first-child i {
  color: #888888;
  font-size: 1rem;
}

.neurosearch-allocation-table td:nth-child(2),
.neurosearch-allocation-table td:nth-child(3) {
  font-weight: 600;
  color: #ffffff;
}

.neurosearch-allocation-table td:last-child {
  color: #888888;
  font-size: 0.9rem;
}

.neurosearch-allocation-table tfoot {
  background: rgba(20, 20, 25, 0.7);
}

.neurosearch-allocation-table tfoot td {
  padding: 24px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  border-top: 2px solid rgba(60, 60, 65, 0.5);
}

/* Vesting Information */
.neurosearch-vesting-info {
  margin-top: 80px;
}

.neurosearch-vesting-title {
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.neurosearch-vesting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.neurosearch-vesting-card {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.neurosearch-vesting-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-vesting-card:hover::before {
  left: 100%;
}

.neurosearch-vesting-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vesting-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #ffffff;
  background: rgba(20, 20, 25, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(60, 60, 65, 0.3);
  transition: all 0.3s ease;
}

.neurosearch-vesting-card:hover .vesting-icon {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-vesting-card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 16px 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.neurosearch-vesting-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neurosearch-vesting-card ul li {
  padding: 10px 0;
  color: #888888;
  font-size: 0.9rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(60, 60, 65, 0.3);
  position: relative;
  padding-left: 24px;
}

.neurosearch-vesting-card ul li:last-child {
  border-bottom: none;
}

.neurosearch-vesting-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .neurosearch-tokenomics-details,
  .neurosearch-vesting-info {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .neurosearch-details-title,
  .neurosearch-vesting-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .neurosearch-allocation-table {
    font-size: 0.85rem;
  }
  
  .neurosearch-allocation-table th,
  .neurosearch-allocation-table td {
    padding: 12px 16px;
  }
  
  .neurosearch-vesting-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== LIVE METRICS SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-performance {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
}

/* Grid sutil de fondo */
.neurosearch-performance::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-performance-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.neurosearch-performance-header {
  text-align: center;
  margin-bottom: 80px;
}

.neurosearch-perf-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.neurosearch-tag-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: neurosearch-dot-pulse 2s ease-in-out infinite;
}

@keyframes neurosearch-dot-pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% { 
    opacity: 0.6; 
    transform: scale(0.9);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

.neurosearch-perf-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.neurosearch-perf-subtitle {
  font-size: 1rem;
  color: #888888;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Stats Grid */
.neurosearch-perf-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Big Cards */
.neurosearch-perf-big-card {
  grid-column: span 1;
  position: relative;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.neurosearch-perf-big-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-perf-big-card:hover::before {
  left: 100%;
}

.neurosearch-perf-big-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.neurosearch-perf-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(60, 60, 65, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.neurosearch-perf-big-card:hover .neurosearch-perf-icon-wrapper {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-perf-icon-wrapper i {
  font-size: 1.8rem;
  color: #ffffff;
}

.neurosearch-perf-metric-value {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.neurosearch-perf-metric-label {
  font-size: 1rem;
  color: #888888;
  margin-bottom: 24px;
  font-weight: 400;
}

.neurosearch-perf-trend {
  display: flex;
  align-items: center;
  gap: 12px;
}

.neurosearch-trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 14px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

.neurosearch-trend-badge.trend-up {
  border-color: rgba(255, 255, 255, 0.3);
}

.neurosearch-trend-badge i {
  font-size: 0.75rem;
}

.neurosearch-trend-text {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 400;
}

/* Mini Visualization */
.neurosearch-perf-mini-viz {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.neurosearch-block-pulse {
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 8px;
  animation: neurosearch-pulse-block 2s ease-in-out infinite;
}

.neurosearch-block-pulse:nth-child(2) { animation-delay: 0.2s; }
.neurosearch-block-pulse:nth-child(3) { animation-delay: 0.4s; }
.neurosearch-block-pulse:nth-child(4) { animation-delay: 0.6s; }

@keyframes neurosearch-pulse-block {
  0%, 100% { 
    opacity: 0.4; 
    transform: scale(1);
    border-color: rgba(60, 60, 65, 0.5);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }
}

.neurosearch-perf-info-text {
  font-size: 0.9rem;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.neurosearch-perf-info-text i {
  font-size: 0.85rem;
  color: #ffffff;
}

/* Small Cards */
.neurosearch-perf-small-card {
  position: relative;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.neurosearch-perf-small-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-perf-small-card:hover::before {
  left: 100%;
}

.neurosearch-perf-small-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.neurosearch-perf-small-icon {
  width: 50px;
  height: 50px;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(60, 60, 65, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.neurosearch-perf-small-card:hover .neurosearch-perf-small-icon {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-perf-small-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.neurosearch-perf-small-value {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.neurosearch-perf-small-label {
  font-size: 0.95rem;
  color: #888888;
  margin-bottom: 16px;
  font-weight: 400;
}

.neurosearch-perf-small-viz {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.neurosearch-node-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: neurosearch-dot-pulse 1.5s ease-in-out infinite;
}

.neurosearch-node-dot:nth-child(2) { animation-delay: 0.2s; }
.neurosearch-node-dot:nth-child(3) { animation-delay: 0.4s; }

.neurosearch-perf-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(20, 20, 25, 0.5);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(60, 60, 65, 0.3);
}

.neurosearch-perf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border-radius: 10px;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.neurosearch-perf-shield-viz,
.neurosearch-perf-fire-viz {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888888;
  margin-top: 12px;
  font-weight: 400;
}

.neurosearch-perf-shield-viz i {
  color: rgba(255, 255, 255, 0.8);
}

.neurosearch-perf-fire-viz i {
  color: rgba(255, 255, 255, 0.8);
  animation: neurosearch-fire-flicker 1s ease-in-out infinite;
}

@keyframes neurosearch-fire-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.neurosearch-perf-status-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 12px;
}

/* Info Bar */
.neurosearch-perf-info-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 32px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  margin-top: 40px;
}

.neurosearch-perf-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #888888;
  font-size: 1rem;
  font-weight: 400;
}

.neurosearch-perf-info-item i {
  color: #ffffff;
  font-size: 1.2rem;
}

.neurosearch-perf-info-item strong {
  color: #ffffff;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-perf-stats-grid {
    gap: 20px;
  }
  
  .neurosearch-perf-big-card {
    padding: 36px;
  }
  
  .neurosearch-perf-metric-value {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .neurosearch-perf-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .neurosearch-perf-big-card {
    grid-column: span 2;
  }
  
  .neurosearch-perf-info-bar {
    flex-direction: column;
    gap: 20px;
    padding: 28px;
  }
  
  .neurosearch-performance-container {
    padding: 0 30px;
  }
  
  .neurosearch-perf-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .neurosearch-performance {
    padding: 80px 0;
  }

  .neurosearch-performance-container {
    padding: 0 24px;
  }

  .neurosearch-performance-header {
    margin-bottom: 60px;
  }
  
  .neurosearch-perf-title {
    font-size: 2.4rem;
  }
  
  .neurosearch-perf-subtitle {
    font-size: 0.9rem;
  }
  
  .neurosearch-perf-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .neurosearch-perf-big-card {
    grid-column: span 1;
    padding: 32px 28px;
  }
  
  .neurosearch-perf-metric-value {
    font-size: 2.5rem;
  }
  
  .neurosearch-perf-small-card {
    padding: 28px 24px;
  }
  
  .neurosearch-perf-small-value {
    font-size: 1.8rem;
  }
  
  .neurosearch-perf-info-bar {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .neurosearch-perf-title {
    font-size: 2rem;
  }
  
  .neurosearch-perf-big-card {
    padding: 28px 20px;
  }
  
  .neurosearch-perf-metric-value {
    font-size: 2.2rem;
  }
  
  .neurosearch-perf-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .neurosearch-perf-small-card {
    padding: 24px 20px;
  }
  
  .neurosearch-perf-small-value {
    font-size: 1.6rem;
  }
}


/* ===== ECOSYSTEM SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-ecosystem {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid sutil de fondo */
.neurosearch-ecosystem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-ecosystem-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Content Wrapper */
.neurosearch-ecosystem-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text Content */
.neurosearch-ecosystem-text-content {
  padding-right: 40px;
}

.neurosearch-ecosystem-title {
  margin: 0 0 30px 0;
}

.neurosearch-title-line {
  display: block;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.neurosearch-ecosystem-subtitle {
  font-size: 1rem;
  color: #888888;
  line-height: 1.6;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.neurosearch-ecosystem-cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.neurosearch-ecosystem-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neurosearch-ecosystem-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.neurosearch-ecosystem-cta-button:hover::before {
  left: 100%;
}

.neurosearch-ecosystem-cta-button:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.neurosearch-ecosystem-guarantee {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 400;
}

/* Phone Mockup */
.neurosearch-ecosystem-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neurosearch-phone-frame {
  width: 340px;
  height: 680px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.neurosearch-phone-frame:hover {
  border-color: rgba(80, 80, 85, 0.7);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.neurosearch-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 40px;
}

.neurosearch-phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(60, 60, 65, 0.3);
}

.neurosearch-phone-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 5px;
}

.neurosearch-phone-status-left i,
.neurosearch-phone-status-right i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.neurosearch-phone-logo {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
}

.neurosearch-phone-timer {
  font-size: 3.5rem;
  font-weight: 500;
  color: #ffffff;
  margin: 10px 0;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

.neurosearch-phone-location {
  font-size: 1rem;
  color: #888888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.neurosearch-phone-location::before {
  content: '📍';
  font-size: 0.9rem;
}

#ecosystemPlanetCanvas {
  width: 100%;
  height: auto;
  margin: 20px 0;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.neurosearch-phone-connection-btn {
  margin-top: auto;
  padding: 12px 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
}

.neurosearch-phone-connection-btn:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-ecosystem-content-wrapper {
    gap: 60px;
  }
  
  .neurosearch-title-line {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) {
  .neurosearch-ecosystem-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .neurosearch-ecosystem-text-content {
    padding-right: 0;
    text-align: center;
  }
  
  .neurosearch-ecosystem-cta-group {
    align-items: center;
  }
  
  .neurosearch-title-line {
    font-size: 3.5rem;
  }
  
  .neurosearch-phone-frame {
    width: 300px;
    height: 600px;
  }
  
  .neurosearch-ecosystem-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .neurosearch-ecosystem {
    padding: 80px 0;
  }
  
  .neurosearch-ecosystem-container {
    padding: 0 24px;
  }
  
  .neurosearch-title-line {
    font-size: 2.8rem;
  }
  
  .neurosearch-ecosystem-subtitle {
    font-size: 0.9rem;
  }
  
  .neurosearch-phone-frame {
    width: 280px;
    height: 560px;
  }
  
  .neurosearch-phone-timer {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .neurosearch-title-line {
    font-size: 2.2rem;
  }
  
  .neurosearch-phone-frame {
    width: 260px;
    height: 520px;
  }
  
  .neurosearch-phone-timer {
    font-size: 2rem;
  }
  
  .neurosearch-ecosystem-cta-button {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}


/* ===== COMMUNITY SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-community {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
}

/* Grid sutil de fondo */
.neurosearch-community::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-community-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.neurosearch-community-header {
  text-align: center;
  margin-bottom: 80px;
}

.neurosearch-comm-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.neurosearch-comm-tag i {
  font-size: 0.75rem;
  color: #ffffff;
}

.neurosearch-comm-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.neurosearch-comm-subtitle {
  font-size: 1rem;
  color: #888888;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Social Networks Grid */
.neurosearch-comm-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.neurosearch-comm-social-card {
  position: relative;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 36px 28px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
}

.neurosearch-comm-social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-comm-social-card:hover::before {
  left: 100%;
}

.neurosearch-comm-social-card:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.neurosearch-social-icon {
  width: 70px;
  height: 70px;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(60, 60, 65, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  color: #ffffff;
}

.neurosearch-comm-social-card:hover .neurosearch-social-icon {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-social-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px 0;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.neurosearch-social-members {
  font-size: 0.95rem;
  color: #888888;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.neurosearch-social-status,
.neurosearch-social-activity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.neurosearch-status-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: neurosearch-status-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.neurosearch-social-activity i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.neurosearch-social-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.neurosearch-comm-social-card:hover .neurosearch-social-cta {
  gap: 12px;
  color: #ffffff;
}

.neurosearch-social-cta i {
  transition: transform 0.3s ease;
}

.neurosearch-comm-social-card:hover .neurosearch-social-cta i {
  transform: translateX(4px);
}

/* Stats Banner */
.neurosearch-comm-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  margin-bottom: 60px;
}

.neurosearch-comm-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.neurosearch-comm-stat-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(60, 60, 65, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.neurosearch-comm-stat-item:hover .neurosearch-comm-stat-icon-wrapper {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-comm-stat-info {
  flex: 1;
}

.neurosearch-comm-stat-number {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.neurosearch-comm-stat-label {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 400;
}

/* CTA Box */
.neurosearch-comm-cta-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.neurosearch-comm-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.neurosearch-comm-cta-box:hover::before {
  left: 100%;
}

.neurosearch-cta-box-icon {
  width: 70px;
  height: 70px;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(60, 60, 65, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.neurosearch-comm-cta-box:hover .neurosearch-cta-box-icon {
  background: rgba(30, 30, 35, 0.7);
  border-color: rgba(80, 80, 85, 0.5);
  transform: scale(1.1);
}

.neurosearch-cta-box-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.neurosearch-cta-box-content h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.neurosearch-cta-box-content p {
  font-size: 0.95rem;
  color: #888888;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

.neurosearch-cta-box-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.neurosearch-cta-box-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.neurosearch-cta-box-button:hover::before {
  left: 100%;
}

.neurosearch-cta-box-button:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.neurosearch-cta-box-button i {
  transition: transform 0.3s ease;
}

.neurosearch-cta-box-button:hover i {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-comm-social-grid {
    gap: 20px;
  }
  
  .neurosearch-comm-social-card {
    padding: 32px 24px;
    min-height: 260px;
  }
}

@media (max-width: 1024px) {
  .neurosearch-comm-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .neurosearch-comm-stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px;
  }

  .neurosearch-comm-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
  
  .neurosearch-community-container {
    padding: 0 30px;
  }
  
  .neurosearch-comm-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .neurosearch-community {
    padding: 80px 0;
  }

  .neurosearch-community-container {
    padding: 0 24px;
  }

  .neurosearch-community-header {
    margin-bottom: 60px;
  }
  
  .neurosearch-comm-title {
    font-size: 2.4rem;
  }
  
  .neurosearch-comm-subtitle {
    font-size: 0.9rem;
  }

  .neurosearch-comm-social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .neurosearch-comm-social-card {
    min-height: 240px;
    padding: 28px 24px;
  }

  .neurosearch-comm-stats-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }

  .neurosearch-comm-stat-item {
    justify-content: center;
  }
  
  .neurosearch-comm-cta-box {
    padding: 28px 24px;
  }
  
  .neurosearch-cta-box-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .neurosearch-comm-title {
    font-size: 2rem;
  }
  
  .neurosearch-comm-social-card {
    padding: 24px 20px;
    min-height: 220px;
  }
  
  .neurosearch-social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .neurosearch-social-title {
    font-size: 1.2rem;
  }
  
  .neurosearch-comm-stats-banner {
    padding: 24px 20px;
  }
  
  .neurosearch-comm-stat-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .neurosearch-comm-stat-number {
    font-size: 1.8rem;
  }
  
  .neurosearch-cta-box-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .neurosearch-cta-box-content h3 {
    font-size: 1.3rem;
  }
}


/* ===== CTA SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-cta {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
}

/* Grid sutil de fondo */
.neurosearch-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-cta-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* Main Content */
.neurosearch-cta-main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Badge */
.neurosearch-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  width: fit-content;
}

.neurosearch-badge-dot {
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Title */
.neurosearch-cta-title {
  font-size: 3.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Description */
.neurosearch-cta-description {
  font-size: 1.1rem;
  color: #888888;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

/* Stats Grid */
.neurosearch-cta-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.neurosearch-cta-stat-card {
  position: relative;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.neurosearch-cta-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.neurosearch-cta-stat-card:hover {
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
}

.neurosearch-cta-stat-card:hover::before {
  opacity: 1;
}

.neurosearch-cta-stat-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  color: #00ffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.neurosearch-cta-stat-card:hover .neurosearch-cta-stat-card-icon {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(1.1);
}

.neurosearch-cta-stat-card-value {
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.neurosearch-cta-stat-card-label {
  font-size: 0.9rem;
  color: #888888;
  font-weight: 500;
}

/* Actions */
.neurosearch-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.neurosearch-cta-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.neurosearch-cta-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;
}

.neurosearch-cta-btn-primary:hover::before {
  left: 100%;
}

.neurosearch-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.neurosearch-cta-btn-primary i {
  transition: transform 0.3s ease;
}

.neurosearch-cta-btn-primary:hover i {
  transform: translateX(4px);
}

.neurosearch-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(30, 30, 35, 0.9);
  color: #ffffff;
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.neurosearch-cta-btn-secondary:hover {
  border-color: rgba(0, 255, 255, 0.3);
  background: rgba(30, 30, 35, 1);
  transform: translateY(-2px);
}

/* Features List */
.neurosearch-cta-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.neurosearch-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #888888;
  font-size: 0.95rem;
}

.neurosearch-cta-feature-item i {
  color: #00ffff;
  font-size: 0.9rem;
}

/* Side Panel */
.neurosearch-cta-side-panel {
  position: sticky;
  top: 120px;
}

.neurosearch-cta-panel-card {
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.neurosearch-cta-panel-card:hover {
  border-color: rgba(0, 255, 255, 0.3);
}

.neurosearch-cta-panel-card-header {
  padding: 24px;
  border-bottom: 1px solid rgba(60, 60, 65, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
}

.neurosearch-cta-panel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  color: #00ffff;
  font-size: 1.2rem;
}

.neurosearch-cta-panel-card-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.neurosearch-cta-panel-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.neurosearch-cta-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.neurosearch-cta-offer-item i {
  color: #00ffff;
  font-size: 1.1rem;
  margin-top: 2px;
}

.neurosearch-cta-offer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.neurosearch-cta-offer-text strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.neurosearch-cta-offer-text span {
  color: #888888;
  font-size: 0.9rem;
}

.neurosearch-cta-panel-card-footer {
  padding: 24px;
  border-top: 1px solid rgba(60, 60, 65, 0.5);
  background: rgba(0, 0, 0, 0.3);
}

.neurosearch-cta-mining-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neurosearch-cta-mining-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.neurosearch-cta-mining-btn:hover::before {
  left: 100%;
}

.neurosearch-cta-mining-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.neurosearch-cta-mining-btn i:last-child {
  transition: transform 0.3s ease;
}

.neurosearch-cta-mining-btn:hover i:last-child {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .neurosearch-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .neurosearch-cta-side-panel {
    position: relative;
    top: 0;
  }

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

@media (max-width: 768px) {
  .neurosearch-cta {
    padding: 80px 0;
  }

  .neurosearch-cta-container {
    padding: 0 20px;
  }

  .neurosearch-cta-title {
    font-size: 2.5rem;
  }

  .neurosearch-cta-stats-grid {
    grid-template-columns: 1fr;
  }

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

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


