/* ===============================
   FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===============================
   RESET DASAR
================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0b0f1a;
  color: #ffffff;
}

/* ===============================
   CONTAINER GLOBAL
================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* ===============================
   SECTION CARD (KARTU NAMA)
================================ */
.card {
  position: relative;
  padding-block: clamp(80px, 12vw, 140px);
  background:
    radial-gradient(circle at top right, rgba(122,92,255,0.45), transparent 45%),
    radial-gradient(circle at bottom left, rgba(56,189,248,0.35), transparent 45%),
    linear-gradient(135deg, #0b0f1a, #111c3a, #0b0f1a);
  overflow: hidden;
  min-height: 100vh;
}

/* NOISE HALUS ALA FIGMA */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(
      circle,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity: 0.15;
  pointer-events: none;
}

/* ===============================
   KONTEN CARD
================================ */
.card .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

/* JUDUL */
.card .judul {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: clamp(16px, 3vw, 24px);
  letter-spacing: -0.5px;
}

/* DESKRIPSI */
.card .deskripsi {
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
  color: #d1d5db;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* ===============================
   BUTTON
================================ */
.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 16px) clamp(28px, 5vw, 40px);
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00, #e52e71, #7a5cff);
  background-size: 200% auto;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* HOVER */
.btn-card:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

/* ===============================
   RESPONSIVE EXTRA
================================ */
@media (max-width: 480px) {
  .card .judul {
    letter-spacing: -0.3px;
  }

  .card .deskripsi {
    line-height: 1.6;
  }
}
.kartu-nama {
  padding-block: clamp(90px, 12vw, 150px);
  background:
    radial-gradient(circle at top right, rgba(122,92,255,0.35), transparent 45%),
    radial-gradient(circle at bottom left, rgba(56,189,248,0.25), transparent 45%),
    linear-gradient(135deg, #0b0f1a, #101c33);
  color: #ffffff;
}

.kartu-nama .judul {
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.kartu-nama .intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 6vw, 70px);
  font-size: clamp(15px, 2.5vw, 18px);
  color: #d1d5db;
  line-height: 1.7;
}

/* DESKRIPSI GRID */
.deskripsi-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 4vw, 32px);
  margin-bottom: clamp(60px, 8vw, 90px);
}

.deskripsi {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deskripsi:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.deskripsi h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.deskripsi p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* KEUNTUNGAN */
.keuntungan {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.keuntungan h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
}

.keuntungan ul {
  list-style: none;
  padding: 0;
}

.keuntungan li {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 12px;
  position: relative;
}

.keuntungan li::before {
  content: "✔";
  color: #7a5cff;
  margin-right: 8px;
}
.paket {
  padding-block: clamp(90px, 12vw, 150px);
  background: linear-gradient(135deg, #0b0f1a, #0f172a);
  color: #ffffff;
}

.paket .judul {
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.paket .intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 6vw, 70px);
  font-size: clamp(15px, 2.5vw, 18px);
  color: #d1d5db;
}

/* GRID */
.paket-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 5vw, 40px);
}

/* CARD */
.paket-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 36px);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.paket-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.paket-card .harga {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* LIST */
.paket-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.paket-card li {
  margin-bottom: 12px;
  color: #e5e7eb;
}

.paket-card li::before {
  content: "✔";
  color: #38bdf8;
  margin-right: 8px;
}

/* BUTTON */
.btn-wa {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-wa:hover {
  transform: scale(1.03);
}

/* PIXELLAB STYLE */
.pixellab {
  border: 1px solid rgba(255,255,255,0.08);
}

/* CANVA PREMIUM */
.canva {
  background:
    linear-gradient(135deg, rgba(122,92,255,0.25), rgba(236,72,153,0.25)),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}

.canva .harga {
  color: #f472b6;
}

.btn-wa.premium {
  background: linear-gradient(90deg, #ff8a00, #e52e71, #7a5cff);
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.footer {
  background-color: #0F172A   /* Tailwind navy */; /* navy gelap elegan */
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
}

.footer-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1EA0FF;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-section a {
  display: block;
  color: #cfe8ff;
  margin: 6px 0;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.7;.footer-bottom {
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom .brand {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
}
@media (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: calc(70px + 10vh); /* HP kecil miring aman */
  }
}
.wa-icon {
  width: 44px;
  height: 44px;
  background: #25D366;     /* HIJAU WA */
  border-radius: 50%;      /* BUAT BULAT */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-wa {
  width: 22px;
  height: 22px;
  fill: #fff;              /* LOGO PUTIH */
}

.wa-icon:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom strong {
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}