/* ===== CSS reset ringkas + var ===== */
:root{
  --primary:#e74c3c;
  --white:#fff;
  --black:#000;
  --gray-50:#f9fafb;
  --gray-100:#f3f4f6;
  --gray-300:#d1d5db;
  --gray-600:#4b5563;
  --gray-700:#374151;
  --gray-800:#1f2937;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--gray-800);background:#fff;line-height:1.6}

/* ===== Utilities warna & teks ===== */
.text-gray-800{color:var(--gray-800)}
.text-gray-700{color:var(--gray-700)}
.text-gray-600{color:var(--gray-600)}
.text-white{color:#fff}
.text-primary{color:var(--primary)}
.bg-white{background:#fff}
.bg-white\/90{background:rgba(255,255,255,.9)}
.bg-gray-50{background:var(--gray-50)}
.bg-primary{background:var(--primary)}
.border{border:1px solid var(--gray-100)}
.border-b{border-bottom:1px solid var(--gray-100)}
.border-gray-100{border-color:var(--gray-100)}
.border-2{border-width:2px}
.border-primary{border-color:var(--primary)}
.rounded-lg{border-radius:.5rem}
.rounded-2xl{border-radius:1rem}
.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.font-bold{font-weight:700}
.font-semibold{font-weight:600}
.font-extrabold{font-weight:800}

/* ===== Layout & spacing ===== */
.fixed{position:fixed}
.inset-x-0{left:0;right:0}
.top-0{top:0}
.z-50{z-index:50}
.max-w-6xl{max-width:72rem}
.max-w-5xl{max-width:64rem}
.max-w-xl{max-width:36rem}
.mx-auto{margin-left:auto;margin-right:auto; display: block;}
.px-4{padding-left:1rem;padding-right:1rem}
.py-3{padding:10px 15px 10px 15px; margin-bottom:20px;}
.py-8{padding-top:2rem;padding-bottom:2rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.py-16{padding-top:4rem;padding-bottom:4rem}
.pt-12{padding-top:3rem}
.pt-20{padding-top:5rem}
.pb-16{padding-bottom:4rem}
.p-4{padding:1rem}
.p-5{padding:1.25rem}
.p-6{padding:1.5rem}
.p-8{padding:2rem}
.mt-2{margin-top:.5rem}
.mt-4{margin-top:1rem}
.mt-6{margin-top:1.5rem}
.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}
.mb-12{margin-bottom:3rem}
.pt-24{padding-top:6rem}
.text-center{text-align:center}

/* ===== Flex & grid ===== */
.flex{display:flex}
.inline-block{display:inline-block}
.hidden{display:none}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.justify-between{justify-content:space-between}
.justify-center{justify-content:center}
.flex-col{flex-direction:column}
.flex-1{flex:1 1 0%}
.gap-3{gap:.75rem}
.gap-4{gap:1rem}
.gap-6{gap:1.5rem}
.gap-8{gap:2rem}
.grid{display:grid}

/* === Perbaikan bullet list di bagian Paket & Harga === */
#pricing ul {
  list-style-position: outside; /* pastikan bullet muncul di luar */
  padding-left: 1.25rem;        /* kasih jarak kiri */
  margin-left: 0;               /* reset margin default browser */
  text-align: left;             /* isi teks rata kiri */
}

#pricing li {
  margin-bottom: 0.35rem;       /* beri jarak antar poin */
  line-height: 1.5;
}

/* === Spasi antar bullet di section Keunggulan === */
#fitur .flex.items-start {
  margin-bottom: 1.25rem; /* kasih jarak antar bullet item */
}

/* === Jarak antara icon dan teks === */
#fitur .flex.items-start span {
  margin-right: 1rem; /* spasi antara icon & teks */
}

/* === Sedikit perataan agar icon sejajar tengah teks === */
#fitur .flex.items-start span {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===== Typography scale ===== */
h1,h2,h3{line-height:1.25;margin:0 0 .5rem}
.text-3xl{font-size:1.875rem}
.text-4xl{font-size:2.25rem}
.text-5xl{font-size:3rem}
.text-xl{font-size:1.25rem}
.text-2xl{font-size:1.5rem}
.text-lg{font-size:1.125rem}
.md\:text-5xl{font-size:3rem}
.md\:text-xl{font-size:1.25rem}
.leading-tight{line-height:1.2}
.italic{font-style:italic}
.text-sm{font-size:.875rem}
.text-xs{font-size:.75rem}
.font-semibold{font-weight:600}
.font-extrabold{font-weight:800}

/* ===== Buttons & links ===== */
a{color:inherit;text-decoration:none}
button, .shadow, .shadow-md, .shadow-lg{
  box-shadow:0 1px 2px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1)
}
.shadow-sm{box-shadow:0 1px 2px rgba(0,0,0,.06)}
.shadow-md{box-shadow:0 4px 6px rgba(0,0,0,.1)}
.shadow-lg{box-shadow:0 10px 15px rgba(0,0,0,.1)}
.rounded-lg{border-radius:.5rem}
.transition{transition:all .2s ease}
.hover\:bg-primary\/90:hover{background-color:rgba(231,76,60,.9)}
.hover\:opacity-100:hover{opacity:1}

/* ===== Components kecil ===== */
.backdrop-blur{backdrop-filter: saturate(180%) blur(8px)}
.min-h-screen{min-height:100vh}
.text-4xl{font-size:2.25rem}
.w-8{width:2rem}.h-8{height:2rem}
.w-9{width:2.25rem}.h-9{height:2.25rem}
.w-10{width:2.5rem}.h-10{height:2.5rem}
.w-11{width:2.75rem}.h-11{height:2.75rem}
.rounded-full{border-radius:9999px}
.mx-auto{margin:15px auto}
.space-y-6 > * + *{margin-top:1.5rem}

/* ===== Forms ===== */
input, textarea{
  width:100%;padding:.5rem .75rem;border:1px solid var(--gray-300);
  border-radius:.5rem;outline:none;transition:border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(231,76,60,.2)}

/* ===== Cards ===== */
.bg-white.border.rounded-lg{background:#fff;border:1px solid var(--gray-100);border-radius:.5rem}
.border-2.border-primary{border:2px solid var(--primary)}
.rounded-2xl{border-radius:1rem}

/* ===== Images ===== */
img{max-width:380px;height:auto;border:0;margin-left:6px;}
.rounded-lg{border-radius:.5rem}

/* ===== Responsive ===== */
@media (min-width:640px){
  .sm\:inline-block{display:inline-block}
}
@media (min-width:768px){
  .md\:text-5xl{font-size:2.5rem}
  .md\:text-xl{font-size:1.25rem}
  .md\:text-3xl{font-size:1.875rem}
  .md\:block{display:block}
  .md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
  .md\:flex-row{flex-direction:row}
  .md\:justify-between{justify-content:space-between}
  img{margin-right:15px;}
}

/* ===== Utilities khusus halaman ini ===== */
#hero .shadow-lg{box-shadow:0 10px 15px rgba(0,0,0,.1),0 4px 6px rgba(0,0,0,.05)}
#cta a{background:#fff;color:var(--primary)}
#cta a:hover{background:#f3f4f6}
