/* ========================================
   CLEAN & MODERN HERO SECTION
   Professional, spacious, and beautiful
======================================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Very subtle background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 231, 84, 0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Hide all decorative shapes */
.hero-shape {
  display: none;
}

.hero-icon-float {
  display: none;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Hero Content */
.hero-content {
  max-width: 580px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content .highlight {
  display: block;
  background: linear-gradient(120deg, #FFE854 0%, #FFF176 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-btns .btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btns .btn-primary {
  background: #FFE854;
  color: #564593;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-btns .btn-primary:hover {
  background: #FFF176;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-btns .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.hero-btns .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Trust Badge */
.hero-trust-badge {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item i {
  font-size: 1.1rem;
  color: #FFE854;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(118, 75, 162, 0.1);
  position: relative;
  z-index: 2;
  background: transparent;
}

/* Remove old effects */
.dust-wave,
.dust-overlay,
.magic-dust,
.sparkle {
  display: none;
}

/* Badge on image */
.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 100px;
}

.hero-badge-icon {
  font-size: 1.6rem;
  color: #9DC541;
  display: block;
  margin-bottom: 4px;
}

.hero-badge-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #564593;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #5e6775;
  line-height: 1.2;
}

/* Stats Section - COMPLETELY SEPARATE from hero image */
.hero-stats {
  margin-top: 80px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFE854;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  white-space: nowrap;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media screen and (max-width: 1100px) {
  .hero-container {
    gap: 60px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 900px) {
  .hero {
    padding: 80px 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-trust-badge {
    justify-content: center;
  }
  
  .hero-visual-inner {
    margin: 0 auto;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  
  .stat-item {
    border-right: none;
    padding: 16px;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media screen and (max-width: 650px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-container {
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust-badge {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }
  
  .hero-badge-icon {
    font-size: 1.3rem;
  }
  
  .hero-badge-number {
    font-size: 1.2rem;
  }
  
  .hero-badge-text {
    font-size: 0.7rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    margin-top: 50px;
  }
  
  .stat-item {
    border-right: none !important;
    padding: 12px;
  }
  
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
  }
  
  .stat-item:nth-child(3) {
    border-top: none;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* Remove animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .magic-dust,
  .sparkle {
    display: none !important;
  }
}
