* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #333;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid #e8fafa;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*LOGO*/
.logo-img img {
  width: 100%;
  max-width: 450px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  font-size: 32px;
  margin: 0;
}

.bold {
  font-weight: 700;
  /* bold */
}

.normal {
  font-weight: 400;
  /* normal */
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  gap: 30px;
}

.btn-nav {
  padding: 12px 28px;
  background: #009689;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff !important;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  padding: 12px 28px;
  background: #009689;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff !important;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  padding: 12px 28px;
  background-color: #ffffff;
  color: #009689;
  border: 2px solid #009689;
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: #0D9D86;
  color: white;
  transition: 0.2s;
}

/* HERO */
.hero {
  background: #EEFDFC;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 600;
}

.hero-text p {
  margin: 15px 0;
  font-size: 18px;
  opacity: 0.7;
}

.hero-img img {
  width: 100%;
  max-width: 450px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
}

.features h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  width: 360px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 150, 137, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 45px rgba(0, 150, 137, 0.12);
}

.icon-features {
  width: 65px;
  margin-bottom: 20px;
}

/* PLATFORM */
.platform-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #EFFFFF;
  /* warna mint muda */
  font-family: "Poppins", sans-serif;
}

.platform-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.platform-section .subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.platform-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-box {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box img {
  width: 85px;
  height: auto;
}

.platform-item span {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

/* TEMPLATE */
.template-section {
  text-align: center;
  padding: 60px 40px;
  max-width: 1300px;
  margin: auto;
}

.template-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.template-section .subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.template-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.template-card {
  width: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 25px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.12);
}

.template-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.template-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: left;
}

.template-card p {
  font-size: 16px;
  color: #555;
  text-align: left;
  margin: 0;
}

.btn-preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 12px 25px;
  border: 2px solid #009688;
  border-radius: 25px;
  font-size: 16px;
  color: #009688;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.btn-preview:hover svg {
  stroke: white;
  transition: 0.2s;
}

.template-card .btn-preview {
  align-self: flex-start !important;
  float: left;
}


/* TESTIMONIAL */
.testimonials-section {
  background-color: #EEFDFC;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-section .subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 150, 137, 0.05);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 20px 45px rgba(0, 150, 137, 0.15);
}

.quote-mark {
  font-size: 40px;
  color: #009689;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}

.quote {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #009689;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.details {
  display: flex;
  flex-direction: column;
}

.details strong {
  font-size: 15px;
  color: #333;
}

.details span {
  font-size: 13px;
  color: #888;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-section .subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.faq-question svg {
  color: #888;
}


/* FOOTER */
.footer {
  padding: 80px 0 30px;
  background: #0a111a;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1;
  min-width: 300px;
}

.logo-text.light {
  color: #fff;
  margin-bottom: 20px;
}

.logo-text.light img {
  width: 40px;
  margin-right: 10px;
}

.footer-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 400px;
}

.contact-info p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: 0.2s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #888;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #888;
  transition: 0.2s;
}

.social-links a:hover {
  color: #fff;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Sembunyikan menu navigasi utama di mobile */
  .nav-links {
    display: none;
  }

  /* Tetap tampilkan button login/daftar di mobile */
  .nav-auth {
    display: flex;
    gap: 15px;
  }

  /* Sesuaikan ukuran button untuk mobile */
  .btn-nav {
    padding: 10px 20px;
    font-size: 14px;
  }

  .nav-auth a:not(.btn-nav) {
    font-size: 14px;
  }
}