.hero-neradata {
  position: relative;
  background: linear-gradient(135deg, #0A192F 0%, #0F172A 50%, #1E3A8A 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0;
}

/* Desktop full height */
@media (min-width: 992px) {
  .hero-neradata {
    min-height: 100vh;
    padding: 0;
  }
}

/* ===== CONTENT CONTAINER ===== */
.hero-content-neradata {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .hero-content-neradata {
    padding: 2rem 2rem;
  }
}

@media (min-width: 992px) {
  .hero-content-neradata {
    padding: 0 2rem;
  }
}

.hero-text-container-neradata {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ===== GRID ===== */
.grid-overlay-neradata {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .grid-overlay-neradata {
    background-size: 30px 30px;
  }
}

/* ===== PARTICLES ===== */
.particles-neradata {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle-neradata {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle 12s linear infinite;
}

.particle-neradata:nth-child(1) {
  top: 20%;
  left: 15%;
  width: 6px;
  height: 6px;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
  animation-duration: 10s;
  opacity: 0.9;
}

.particle-neradata:nth-child(2) {
  top: 60%;
  left: 80%;
  width: 8px;
  height: 8px;
  background: #3B82F6;
  box-shadow: 0 0 15px #3B82F6;
  animation-duration: 14s;
  animation-delay: 1s;
  opacity: 0.9;
}

.particle-neradata:nth-child(3) {
  top: 45%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #6366F1;
  box-shadow: 0 0 10px #6366F1;
  animation-duration: 11s;
  animation-delay: 2s;
  opacity: 0.8;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(40px);
    opacity: 0;
  }
}

/* ===== FLOATING ICONS ===== */
.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  animation: floatIcon 6s ease-in-out infinite;
  filter: drop-shadow(0 0 8px currentColor);
}

.icon-shield {
  top: 25%;
  left: 75%;
  color: #10B981;
  font-size: 2rem;
  animation-delay: 2s;
}

.icon-lineage {
  bottom: 20%;
  right: 10%;
  color: #3B82F6;
  font-size: 2.2rem;
  animation-delay: 1s;
}

.icon-database {
  top: 15%;
  left: 25%;
  color: #6366F1;
  font-size: 2.5rem;
  animation-delay: 0s;
}

.icon-key {
  top: 70%;
  left: 10%;
  color: #F59E0B;
  font-size: 1.8rem;
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-15px) translateX(5px);
    opacity: 1;
  }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 769px) {
  .floating-icon {
    opacity: 0.25;
  }
  
  .icon-shield {
    left: 10%;
    font-size: 2rem;
  }
  
  .icon-lineage {
    right: 3%;
    font-size: 1.8rem;
  }
  
  .icon-database {
    left: 90%;
    font-size: 1.6rem;
  }
  
  .icon-key {
    left: 2%;
    font-size: 1.5rem;
  }
}

/* Mobile: */
@media (max-width: 768px) {
  .floating-icon {
    opacity: 0.25;
  }
  
  .icon-shield {
    top: 15%;
    left: 80%;
    font-size: 1.4rem;
  }
  
  .icon-database {
    bottom: 10%;
    left: 10%;
    font-size: 1.2rem;
  }
  
  .icon-lineage,
  .icon-key {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.button-group-neradata {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-neradata-outline {
  cursor: pointer;
  display: inline-block;
  align-items: center;
  font-size: 1.1rem;;
  gap: 0.5rem;
  padding: 0.775rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-neradata-outline:hover {
  background: rgba(5, 110, 233, 0.15);
  border-color: #056EE9;
  color: white;
}

@media (min-width: 576px) {
  .button-group-neradata {
    gap: 1rem;
  } 
}

/* ===== CURVE ===== */
.curve-neradata {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
}

.curve-neradata svg {
  width: 100%;
  height: auto;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
  .hero-neradata {
    padding: 3.5rem 0;
  }
  
  .hero-content-neradata {
    padding: 1rem 1rem;
  }
  
  .button-group-neradata {
    gap: 0.5rem;
  }

}

@media (min-width: 481px) and (max-width: 576px) {
  .hero-neradata {
    padding: 3rem 0;
  }
  
  .hero-content-neradata {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .particle-neradata,
  .floating-icon {
    animation: none;
    opacity: 0.1;
  }
}

/*BADGE*/
.badge-wrapper-neradata {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.badge-glossy-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: rgba(10, 25, 47, 0.4);
  border: 1px solid transparent;
  background-clip: padding-box;
  color: white;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Border gradient */
.badge-glossy-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  padding: 1px;
  background: linear-gradient(120deg, #3B82F6, #10B981, #6366F1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* AI Badge */
.badge-ai {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(145deg, #4285f4, #9b59b6);
  color: white;
  border-radius: 30% 70% 70% 30% / 30% 35% 65% 70%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .badge-container {
    gap: 0.6rem;
  }
  
  .badge-glossy-gradient {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .badge-ai {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .badge-container {
    gap: 0.5rem;
  }
  
  .badge-glossy-gradient {
    padding: 0.4rem 0.875rem;
    font-size: 0.7rem;
  }
  
  .badge-ai {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }
}