* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
height: 100%;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #222;
  background: #FAFAFA;
  line-height: 1.6;
  margin: 0 auto;
  padding: 1rem;
  max-width: 800px;
}

header.hero {
  text-align: left;
  padding: 1rem 0rem 2rem;
}

.hero h1 {
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

h1 {
  font-size: 2.0rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

h3 {
  margin-bottom: .3rem;
}

.tagline {
  font-size: 1.15rem;
  color: #555;
}

main {
  display: block;
}

section {
  margin: 2rem 0;
}

a {
	  text-decoration: none;
	   color:#0078b8;
}

ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
}

ul li {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.features {
  display: grid;
  gap: 1rem;
}


.card {
  border: 1px solid #eee;
  border-radius: .75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: .5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #0088cc;
  color: #fff;
  padding: 0.75em 1.25em;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}
.btn:hover {
  background: #0078b8;
}
.btn img {
  height: 1.2em;
  width: auto;
  vertical-align: middle;
}

.truth {
  background: #fafafa;
  border-radius: 1rem;
  padding: 1rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
.truth blockquote h2 {
  font-style: italic;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}
.truth p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}


/* Mobile Responsive */
@media (max-width: 600px) {
  body { padding: .8rem; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.0rem; }
  .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .hero h2 { font-size: 1.2rem; }
  .hero h3 { font-size: 1.0rem; }
}

/* Tambahan untuk halaman edukasi */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.compare th, .compare td {
  border: 1px solid #eee;
  padding: 0.75rem;
  text-align: left;
}

.compare th {
  background: #f9f9f9;
  font-weight: 600;
}

.accent { color: #25D366; }

ol { margin-left: 1.2rem; }
ul { margin-left: 1.2rem; }

ol li, ul li { margin-bottom: 0.4rem; }

.hero-image img {
  width: 100%;
  max-width: max-content;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 25px;
}

/* responsive desktop */
@media (min-width: 768px) {
  .hero-image {
    flex: 1;
  }
}


.queue-box {
  /* background: #fcfcfc; */
  /*border: 1px solid #eee;*/
  /* border-radius: 1.2rem; */
  /* padding: 1rem 1.5rem; */
  text-align: center;
  /*max-width: 360px;*/
  margin: 1.5rem auto;
  /* box-shadow: 0 3px 12px rgba(0,0,0,0.04); */
  transition: all .3s ease;
}

.queue-box:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 5px 16px rgba(0,0,0,0.08); */
}

.queue-box img {
  vertical-align: middle;
  height: 22px;
}

.queue-box .note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 6px;
}

/* Medium-style horizontal rule */
.hr-medium {
  border: none;              /* hilangkan border default */
  height: 1px;               /* tipis */
  background-color: #e0e0e0; /* abu-abu soft */
  margin: 3rem 0;            /* jarak atas-bawah */
  position: relative;
}

#hero-disclaimer {
  text-align: left;
  margin: 10px 0;
}

#hero-disclaimer p {
  font-size: 0.8em;
  color: #555;
  margin: 0; /* hilangkan margin default <p> */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 10px;
}

.nav-menu a {
    color: #495057;
    text-decoration: none;
    position: relative;
}

.nav-menu a:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -15px;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-menu a.active {
      color: #667eea;
      font-weight: 600;
  }

 /* Garis separator antara menu dan hero */
.menu-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 15px 0 30px 0;
}