/* Reset dan Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  color: #4a4a4a;
  line-height: 1.7;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
  max-width: 800px;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #2575fc;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background-color: #f1f1f1;
}

/* Features Section */
main {
  flex-grow: 1;
}

.features {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card i {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.step-card {
  padding: 30px;
  border-radius: 15px;
  position: relative;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
}

.step-card .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}

.step-card i {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 15px;
  margin-top: 25px; /* Space for the number */
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background-color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #2575fc;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h3 i {
  color: #6a11cb;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content i.fa-quote-left {
  font-size: 2rem;
  color: #2575fc;
  margin-bottom: 15px;
  opacity: 0.5;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-rating {
  color: #f1c40f;
  font-size: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2575fc;
}

.author-info h3 {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 5px;
}

.author-info p {
  color: #718096;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 20px;
  }
}

/* Footer */
.site-footer {
  background-color: #2c3e50;
  color: #bdc3c7;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.team-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 15px;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
/* Tambahkan di bagian akhir file */
.social-sharing {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-sharing a {
  color: #bdc3c7;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-sharing a:hover {
  color: #ffffff;
}

.social-sharing p {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}
