/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkmark {
  background: #10b981;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Process Section */
.process {
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #10b981);
}

.step {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid #d1d5db;
  border-radius: 50%;
  z-index: 2;
}

.step-card {
  margin-left: 80px;
  background: white;
  border-radius: 12px;
  box-shadow: 4px 4px 10px 0px rgba(140, 138, 250, 0.7);
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-card:hover {
  box-shadow: 0 20px 25px -5px rgba(140, 138, 250, 0.7);
  transform: translateY(-2px);
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.step-icon.blue {
  background: #3b82f6;
}
.step-icon.green {
  background: #10b981;
}
.step-icon.purple {
  background: #8b5cf6;
}
.step-icon.pink {
  background: #ec4899;
}
.step-icon.orange {
  background: #f97316;
}
.step-icon.indigo {
  background: #6366f1;
}
.step-icon.teal {
  background: #14b8a6;
}
.step-icon.red {
  background: #ef4444;
}
.step-icon.yellow {
  background: #eab308;
}
.step-icon.emerald {
  background: #059669;
}

.step-text {
  flex: 1;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.step-number {
  background: #f3f4f6;
  color: #374151;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.step-category {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.step-description {
  color: #6b7280;
  line-height: 1.6;
}

.step-counter {
  font-size: 2rem;
  font-weight: 700;
  color: #f3f4f6;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .step-icon {
    display: none;
  }

  .step-meta {
    flex-direction: column;
  }

  .step-text {
    text-align: center;
  }
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: #1f2937;
}

.btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #1f2937;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  color: #d1d5db;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f9fafb;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.features-subtitle {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.feature-desc {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }

  .timeline-dot {
    display: none;
  }

  .step-card {
    margin-left: 0;
  }

  .step-content {
    padding: 20px;
  }

  .step-counter {
    display: none;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .step-content {
    flex-direction: column;
    text-align: center;
  }

  .step-meta {
    justify-content: center;
  }
}
