/* ═══════════════════════════════════════════
   Thm-Samsung-v5 Cyberpunk — Hero V2 Neon
   Light Theme + Deep Red Brand (#B91C1C)
   ═══════════════════════════════════════════ */

.fl-cyber-hero-v2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 48px;
  margin-bottom: 48px;
  background: #FFFFFF;
  border: 1px solid #DC2626;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(185, 28, 28, 0.12);
}

.fl-cyber-hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-cyber-hero-v2-title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -1px;
}

.fl-cyber-hero-v2-glitch {
  margin: 0 0 24px;
  padding: 12px 20px;
  background: #FEF2F2;
  border-left: 3px solid #B91C1C;
  font-size: 16px;
  font-weight: 600;
  color: #B91C1C;
  letter-spacing: 1px;
}

.fl-cyber-hero-v2-cta {
  display: inline-block;
  width: fit-content;
  padding: 16px 48px;
  background: #B91C1C;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fl-cyber-hero-v2-cta:hover {
  background: #991B1B;
  box-shadow: 0 0 20px rgba(185, 28, 28, 0.4);
}

.fl-cyber-hero-v2-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-cyber-hero-v2-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: #FEF2F2;
  border: 1px solid #DC2626;
  border-radius: 8px;
}

.fl-cyber-hero-v2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
}

.fl-cyber-hero-v2-stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.fl-cyber-hero-v2-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #B91C1C;
  letter-spacing: -0.5px;
}

.fl-cyber-hero-v2-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .fl-cyber-hero-v2 {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }

  .fl-cyber-hero-v2-title {
    font-size: 32px;
  }

  .fl-cyber-hero-v2-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .fl-cyber-hero-v2-stat {
    flex: 1;
    min-width: 100px;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 16px;
    border-right: 1px solid #E5E7EB;
  }

  .fl-cyber-hero-v2-stat:last-child {
    padding-right: 0;
    border-right: none;
  }
}
