/* Hero Section */
.hero {
  padding: 100px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(22, 163, 74, 0.1);
  margin-bottom: 20px;
  color: #166534;
  font-weight: 600;
}

.hero-tag i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.hero-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(to right, #166534, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-text {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.8;
}

.btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(to right, #166534, #10b981);
  color: white;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  background: linear-gradient(to right, #14572d, #0da271);
}

.btn-secondary {
  background: white;
  color: #166534;
  border: 1px solid #dcfce7;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: #f8faf9;
}

.hero-stats {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-stats:hover {
  transform: scale(1.03);
}

.stat-item {
  margin-bottom: 25px;
}

.stat-label {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
  margin-bottom: 8px;
}

.stat-bar-bg {
  background: #e5e7eb;
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
}

.stat-bar {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, #22c55e, #10b981);
}

/* Services Section */
.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1.2rem;
  color: #4b5563;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: linear-gradient(to bottom, #f0fdf4, #dcfce7);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid #d1fae5;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #a7f3d0;
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 16px;
}

.service-card p {
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.service-features li i {
  color: #22c55e;
  margin-right: 12px;
  margin-top: 5px;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(to bottom, #f8fafc, #f0fdf4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #22c55e, #10b981);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 5px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #166534;
}

.period {
  color: #4b5563;
  margin-left: 5px;
  font-size: 1.1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #4b5563;
}

.pricing-features li i {
  color: #22c55e;
  margin-right: 12px;
  margin-top: 5px;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-popular {
  background: linear-gradient(to right, #166534, #10b981);
  color: white;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-popular:hover {
  background: linear-gradient(to right, #14572d, #0da271);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.btn-standard {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #d1fae5;
}

.btn-standard:hover {
  background: #dcfce7;
  transform: translateY(-3px);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #22c55e, #10b981);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 25px;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.process-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 12px;
}

.process-card p {
  color: #4b5563;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #4b5563;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 500px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, #166534, #10b981);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn-cta-primary {
  background: white;
  color: #166534;
}

.btn-cta-primary:hover {
  background: #f8faf9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
