/* Home Page Specific Styles */
.hero {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 179, 71, 0.05) 100%);
  padding: 8rem 2rem 5rem;
  margin-top: 70px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* Features */
.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03) 0%, rgba(255, 179, 71, 0.03) 100%);
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary-orange);
  font-weight: 700;
}

/* Reviews */
.reviews {
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  position: relative;
}

.stars {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
}

.reviewer-role {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-secondary {
  background: white;
  color: var(--primary-orange);
  border: 2px solid white;
}

.cta .btn-secondary:hover {
  background: transparent;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats {
    justify-content: space-around;
    width: 100%;
  }

  .step-arrow {
    display: none;
  }

  .steps {
    flex-direction: column;
  }

  .cta h2 {
    font-size: 2rem;
  }
}
