:root {
  --primary: #ff7a00;
  --primary-dark: #e86f00;
  --bg-soft: #f7f7f7;
  --text-main: #222;
}

/* Reset dasar */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-soft);
  line-height: 1.6;
}

/* Container fleksibel */
.container {
  max-width: 960px;
  margin: auto;
  padding: 24px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

header h1 {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #fff;
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.btn:hover {
  background: #ffe3cc;
}

/* Section card */
section {
  background: #fff;
  margin: 24px auto;
  border-radius: 14px;
}

/* List */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Harga */
.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin: 40px 0;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* Tablet */
@media (max-width: 768px) {
  header {
    padding: 60px 20px;
  }

  header h1 {
    font-size: 2.1rem;
  }

  .container {
    padding: 20px;
  }

  .price {
    font-size: 1.6rem;
  }
}

/* HP */
@media (max-width: 480px) {
  header {
    padding: 48px 16px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    padding: 14px;
  }

  section {
    border-radius: 10px;
  }
}
/* =====================
   NAVIGATION
   ===================== */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu li a:hover {
  text-decoration: underline;
}

/* Hero spacing */
.hero {
  margin-top: 40px;
}

/* Responsive menu */
@media (max-width: 600px) {
  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }
}
/* Badge Trial */
.badge {
  background: #fff;
  color: #ff7a00;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 6px;
  font-weight: 600;
  white-space: nowrap;
}

/* Supaya rapi di HP */
@media (max-width: 600px) {
  .badge {
    display: inline-block;
    margin-top: 6px;
  }
}
/* FAQ */
.faq {
  list-style: none;
  padding-left: 0;
}

.faq li {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}
/* Perangkat Kasir */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.device-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.device-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.device-card h3 {
  margin: 8px 0;
  font-size: 1rem;
}
.marketplace-box {
  margin-top: 20px;
  text-align: center;
}



