/* ══════════════════════════════════════════════════════════════════════════
   Nexura V3 Enterprise Hero Section Styles
   ══════════════════════════════════════════════════════════════════════════ */

.v3-hero-section {
  position: relative;
  padding: 100px 0 80px;
  background: var(--bg);
  overflow: hidden;
}

/* Background Spotlights */
.v3-hero-spotlight-blue {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
.v3-hero-spotlight-purple {
  position: absolute;
  top: 60px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}
.v3-hero-spotlight-teal {
  position: absolute;
  bottom: -150px;
  left: 35%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 87, 73, 0.22) 0%, transparent 70%);
  filter: blur(85px);
  pointer-events: none;
}

/* Split Grid Layout (45% Left / 55% Right) */
.v3-hero-split {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content Column */
.v3-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.v3-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-blue-light);
  margin-bottom: 20px;
}
.v3-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  box-shadow: 0 0 10px var(--brand-blue-light);
  animation: v3-badgePulse 2s infinite;
}
@keyframes v3-badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.v3-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 18px;
}
.v3-gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.v3-hero-sub {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-subtle);
  margin-bottom: 28px;
}

/* Feature Highlights Grid */
.v3-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 32px;
  width: 100%;
}
.v3-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.v3-feat-icon {
  color: var(--brand-teal-light);
  font-size: 14px;
}

/* Action Buttons */
.v3-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Social Proof Stats Bar */
.v3-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
}
.v3-stat-box {
  display: flex;
  flex-direction: column;
}
.v3-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.v3-stat-lbl {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* Trust Badges Bar Below Hero */
.v3-hero-trust-bar {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin-top: 40px;
}
.v3-trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.v3-t-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-subtle);
}

/* Right Dashboard Illustration */
.v3-dashboard-container {
  position: relative;
  background: #121A2E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: visible;
}
.v3-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.v3-dash-dots { display: flex; gap: 6px; }
.v3-dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.v3-dash-title { font-size: 12px; font-weight: 600; color: var(--muted); }
.v3-dash-status { font-size: 11px; font-weight: 700; color: #10B981; }

.v3-dash-body { padding: 24px; }
.v3-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.v3-kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.v3-kpi-card span { font-size: 11px; color: var(--muted); display: block; }
.v3-kpi-card strong { font-size: 15px; color: #fff; display: block; margin-top: 2px; }
.v3-kpi-card small { font-size: 11px; font-weight: 700; display: block; margin-top: 2px; }

.v3-dash-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v3-widget-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.v3-widget-title { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }

/* Floating Cards */
.v3-float-card {
  position: absolute;
  background: rgba(18, 26, 46, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: v3-heroFloat 5s ease-in-out infinite;
}
.float-tr { top: -20px; right: -16px; animation-delay: 0s; }
.float-bl { bottom: -20px; left: -16px; animation-delay: 2.5s; }

@keyframes v3-heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .v3-hero-split { grid-template-columns: 1fr; gap: 40px; }
  .v3-hero-left { text-align: center; align-items: center; }
  .v3-hero-features { max-width: 480px; }
  .v3-hero-ctas { justify-content: center; }
  .v3-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .float-tr, .float-bl { display: none; }
}

@media (max-width: 640px) {
  .v3-hero-section { padding: 60px 0 40px; }
  .v3-hero-features { grid-template-columns: 1fr; text-align: left; }
  .v3-trust-items { grid-template-columns: repeat(2, 1fr); justify-content: center; }
}
