/*
 * Frosted Glass Hero
 * Theme: Thm-Samsung-v5 / Glass / Hero V1
 * Description: Frosted glass hero with translucent overlay
 */

.fl-glass-hero-frost {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

.fl-glass-hero-frost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fl-glass-bg-gradient);
  opacity: 0.6;
  z-index: 0;
}

.fl-glass-hero-frost__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.fl-glass-hero-frost__card {
  background: var(--fl-glass-bg);
  backdrop-filter: var(--fl-glass-blur-strong);
  -webkit-backdrop-filter: var(--fl-glass-blur-strong);
  border: var(--fl-glass-border-strong);
  border-radius: var(--fl-glass-radius-lg);
  box-shadow: var(--fl-glass-shadow-lg);
  padding: clamp(32px, 6vw, 64px);
}

.fl-glass-hero-frost__badge {
  margin-bottom: 24px;
}

.fl-glass-hero-frost__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.fl-glass-hero-frost__title span {
  color: var(--fl-glass-primary);
}

.fl-glass-hero-frost__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fl-glass-text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.fl-glass-hero-frost__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.fl-glass-hero-frost__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--fl-glass-text-muted);
}

.fl-glass-hero-frost__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .fl-glass-hero-frost {
    min-height: auto;
    padding: 60px 16px;
  }

  .fl-glass-hero-frost__card {
    padding: 28px 20px;
  }

  .fl-glass-hero-frost__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
