/* ═══════════════════════════════════════════
   Thm-Samsung-v5 Modern — Hero V2 Split
   Light Theme + Red Brand (#DC2626)
   ═══════════════════════════════════════════ */

.fl-modern-hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 48px;
  margin-bottom: 48px;
  background: #FFFFFF;
  border: 1px solid #E8EAED;
  border-radius: 16px;
}

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

.fl-modern-hero-v2-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fl-modern-hero-v2-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #F8F9FA;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A2E;
}

.fl-modern-hero-v2-feature::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FEE2E2;
  color: #DC2626;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.fl-modern-hero-v2-cta {
  display: inline-block;
  width: fit-content;
  padding: 16px 48px;
  background: #DC2626;
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fl-modern-hero-v2-cta:hover {
  background: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

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

.fl-modern-hero-v2-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.2;
}

.fl-modern-hero-v2-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
}

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

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

  .fl-modern-hero-v2-subtitle {
    font-size: 16px;
  }
}
