/* Professional Figma-inspired Hero Section - Based on Smart Money Moves Design */

:root {
  --primary-red: #b71c1c;
  --primary-red-light: #e53935;
  --primary-red-dark: #8c1515;
  --accent-color: #f8c400;
  --text-dark: #111111;
  --text-light: #ffffff;
  --text-secondary: #666666;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #757575;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-medium: 0 15px 35px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --transition-quick: 0.2s ease;
}

/* Main Hero Section */
.hero-section {
  background-color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 3rem;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
}

/* Hero Headline */
.hero-headline {
  font-size: 4.25rem;
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -1px;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Hero Description */
.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 3rem;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* CTA Button */
.hero-cta-container {
  margin: 0 auto 4rem;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-cta-button {
  background-color: var(--primary-red);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: all var(--transition-quick);
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

.hero-cta-button:active {
  transform: translateY(0);
}

/* Illustration Container */
.hero-illustration-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  animation: fadeInUp 1.2s ease-out forwards;
}

.illustration-card {
  position: relative;
  max-width: 380px;
  width: calc(50% - 1.5rem);
  background-color: var(--text-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  overflow: hidden;
  padding-bottom: 1.5rem;
}

.illustration-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.illustration-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--primary-light), #f9f9ff);
}

.illustration-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.illustration-card:hover .illustration-image {
  transform: scale(1.05);
}

.illustration-overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

.illustration-badge {
  background-color: var(--primary-red);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.illustration-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.25rem 1.5rem 0.5rem;
}

.illustration-caption {
  color: var(--white);
  font-size: 1rem;
  margin: 0 1.5rem;
  line-height: 1.5;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 1rem;
  animation: fadeInUp 1.4s ease-out forwards;
}

.trust-indicator {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-light);
  border-radius: 50%;
}

.trust-stats {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-headline {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.75rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-illustration-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .illustration-left,
  .illustration-right {
    width: 80%;
  }
  
  .trust-indicators {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 2.25rem;
  }
  
  .hero-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
  }
}
