/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f7f9fb 0%, #e8f0f5 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #5a6c7d;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #163a52 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(12, 42, 63, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 42, 63, 0.4);
  color: white;
}

.btn-secondary-hero {
  background: white;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--navy);
}

.btn-secondary-hero:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Statistics Section */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #163a52 100%);
  padding: 60px 0;
  color: white;
}

.stat-card {
  padding: 20px;
}

.stat-icon {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  color: #b8d4e8;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 20px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8f0f5;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--teal) 0%, #1ab3a6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: #1ab3a6;
  gap: 12px;
}

/* How It Works Section */
.how-it-works-section {
  background: linear-gradient(135deg, #f7f9fb 0%, #e8f0f5 100%);
  padding: 80px 0;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal) 0%, #1ab3a6 100%);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(34, 197, 183, 0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}

.step-description {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #163a52 100%);
  padding: 80px 0;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #b8d4e8;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: var(--teal);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 183, 0.4);
}

.btn-cta:hover {
  background: #1ab3a6;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(34, 197, 183, 0.5);
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .features-section,
  .how-it-works-section,
  .cta-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .stat-icon {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}
