/* ========================================
   HERO SECTION - LIGHT MOEGO-STYLE THEME
   ======================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-12) 0 var(--space-16);
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Background Elements */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(211, 97, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 184, 77, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 60%, rgba(211, 97, 53, 0.05) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Floating Decorative Shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  background: linear-gradient(135deg, rgba(211, 97, 53, 0.08), rgba(255, 255, 255, 0.3));
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 5%;
  background: linear-gradient(135deg, rgba(255, 184, 77, 0.1), rgba(255, 255, 255, 0.3));
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: linear-gradient(135deg, rgba(211, 97, 53, 0.05), rgba(255, 255, 255, 0.2));
  animation-delay: 10s;
}

@keyframes float-shape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }

  50% {
    transform: translate(-10px, 10px) rotate(-3deg);
  }

  75% {
    transform: translate(10px, 20px) rotate(3deg);
  }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Promo Badge - 2 Months Free */
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--gradient-primary);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  animation: pulse-badge 2s ease-in-out infinite;
}

.promo-icon {
  font-size: 1.2em;
}

.promo-text {
  letter-spacing: 0.5px;
}

.promo-subtext {
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
  font-size: 0.9em;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: var(--shadow-md), 0 0 15px rgba(211, 97, 53, 0.3);
  }

  50% {
    box-shadow: var(--shadow-lg), 0 0 25px rgba(211, 97, 53, 0.5);
  }
}

/* Hero Headline */
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
  text-wrap: balance;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
}

/* Benefits Grid */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--glass-bg-strong);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.benefit-item.highlight {
  background: rgba(211, 97, 53, 0.1);
  border-color: rgba(211, 97, 53, 0.3);
  color: var(--color-primary);
}

.benefit-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-item:hover .benefit-icon {
  color: var(--color-primary);
}

/* CTA Section */
.hero-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* Primary CTA Button */
.hero-cta-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-10);
  background: var(--gradient-primary);
  color: white !important;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    var(--shadow-lg),
    0 0 30px rgba(211, 97, 53, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-cta-btn.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hero-cta-btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    var(--shadow-xl),
    0 0 50px rgba(211, 97, 53, 0.4);
  color: white !important;
}

.hero-cta-btn.primary:hover::before {
  opacity: 1;
}

.hero-cta-btn.primary:active {
  transform: translateY(-1px) scale(1.01);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  transition: transform var(--transition-base);
}

.hero-cta-btn.primary:hover .cta-arrow {
  transform: translateX(4px);
}

/* CTA Info */
.hero-cta-info {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

.cta-checkmark {
  display: flex;
}

/* Free Plan Callout */
.free-plan-callout {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-success-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.free-badge {
  padding: var(--space-1) var(--space-3);
  background: var(--color-success);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.free-text {
  font-size: var(--font-size-sm);
  color: var(--color-success);
  font-weight: var(--font-weight-medium);
}

/* Web-First Flow */
.web-first-flow {
  background: var(--glass-bg-strong);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-card);
}

.flow-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}

.flow-step .step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  color: var(--color-text-secondary);
}

.flow-step .step-icon svg {
  width: 24px;
  height: 24px;
}

.flow-step .step-icon.success {
  background: var(--color-success-light);
  color: var(--color-success);
}

.step-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.flow-arrow {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 2px solid white;
  border-radius: 50%;
  font-size: 1.25rem;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.stat-number {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  animation: bounce-scroll 2s infinite;
  z-index: 10;
}

.scroll-indicator svg {
  width: 100%;
  height: 100%;
}

@keyframes bounce-scroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .hero {
    min-height: 85vh;
    padding: var(--space-10) 0 var(--space-12);
  }

  .shape-1 {
    width: 200px;
    height: 200px;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
  }

  .shape-3 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-8) 0 var(--space-10);
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  .hero-benefits {
    gap: var(--space-2);
  }

  .benefit-item {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-xs);
  }

  .hero-cta-btn.primary {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
  }

  .flow-steps {
    gap: var(--space-2);
  }

  .flow-step .step-icon {
    width: 40px;
    height: 40px;
  }

  .flow-step .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .floating-shapes {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-promo-badge {
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-4);
  }

  .promo-subtext {
    font-size: 0.8em;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .web-first-flow {
    padding: var(--space-4);
  }

  .flow-arrow {
    display: none;
  }

  .flow-steps {
    flex-direction: column;
    gap: var(--space-3);
  }

  .free-plan-callout {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .hero-social-proof {
    flex-direction: column;
    gap: var(--space-3);
  }

  .social-proof-stats {
    text-align: center;
  }
}