body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #eaf4ff;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #555;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
}

.pricing-card.highlight {
  border: 2px solid #36c66e;
}

.price {
  font-size: 24px;
  color: #36c66e;
  margin: 10px 0;
}

.pricing-card ul {
  padding: 0;
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.pricing-card li {
  margin-bottom: 8px;
}

.btn-harga {
  display: inline-block;
  padding: 10px 20px;
  background-color: #36c66e;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}



/* Responsive */
@media (max-width: 768px) {
  .pricing {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* baru */
.comparison-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.comparison-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: #f0f4f8;
  color: #333;
  font-weight: 600;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background-color: #f9f9f9;
}

.comparison-table tr:hover {
  background-color: #f6fbff;
}

.comparison-table td.checkmark {
  font-size: 18px;
  color: #2ecc71; /* Hijau */
}

.comparison-table td.crossmark {
  font-size: 18px;
  color: #e74c3c; /* Merah */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .comparison-section h2 {
    font-size: 22px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 14px;
  }
}

/*  */
.pricing-header {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f5faff, #ffffff);
  text-align: center;
}

.header-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.header-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.package-summary {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.package-box {
  width: 250px;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.package-box:hover {
  transform: translateY(-5px);
}

.package-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.package-box p {
  font-size: 14px;
  margin-bottom: 6px;
}

.package-box strong {
  font-size: 16px;
  display: block;
  margin-top: 10px;
}

/* Paket warna berbeda */
.package-box.starter {
  background-color: #3498db; /* Biru muda */
}

.package-box.growth {
  background-color: #27ae60; /* Hijau */
}


.package-box.enterprise {
  background: linear-gradient(135deg, #b8860b, #8b7500);
}

/* Responsive */
@media (max-width: 768px) {
  .package-summary {
    flex-direction: column;
    align-items: center;
  }

  .package-box {
    width: 90%;
    max-width: 300px;
  }

  .header-content h1 {
    font-size: 24px;
  }

  .header-content p {
    font-size: 14px;
  }
}

.pricing-hero {
  background: linear-gradient(to right, #fff, #fff);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 36px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.hero-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  font-weight: 400;
  line-height: 1.6;
}

/* hero 2 */

.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  background: linear-gradient(to right, #fdfdfd, #f6f6f6);
  font-family: 'Nunito', sans-serif;
}

.hero-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.hero-left h1 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.hero-left p {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.package-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.package {
  flex: 1;
  min-width: 180px;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.package h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.package p {
  font-size: 14px;
}

.package.starter {
  background-color: #3498db;
}

.package.growth {
  background-color: #27ae60;
}

.package.enterprise {
  background-color: #8b7500; /* Gold dark */
}

.rating {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  position: relative;
  padding: 20px;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

.badge {
  position: absolute;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 500;
}

.badge.top {
  top: 20px;
  right: 20px;
}

.badge.bottom {
  bottom: 20px;
  left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
  }

  .package-options {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-right img {
    max-width: 100%;
  }

  .badge {
    position: static;
    margin: 10px 0;
  }
}