/* ==============================
   FONT (NON-LATIN · MODERN)
============================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
  color: white;
}

/* ==============================
   SECTION BIO (START DARI ATAS)
============================== */
.bio {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}



/* ==============================
   CONTAINER
============================== */
.bio .container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;     /* tengah horizontal */
  text-align: center;
  gap: 18px;
}

/* ==============================
   JUDUL (H1)
============================== */
.judul {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

/* SUB JUDUL */
.judul span {
  display: block;
  margin-top: 8px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  color: white;
}

/* ==============================
   DESKRIPSI (P)
============================== */
.description {
  max-width: 720px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #white;
}

/* ==============================
   BUTTON CTA
============================== */
.btn-cta {
  margin-top: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 26px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-cta i {
  font-size: 18px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
/* ===== BIO LINK SECTION ===== */
.bio-link-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  position: relative;
  overflow: hidden;
}

/* efek glow halus */
.bio-link-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(106,17,203,0.25), transparent 40%),
              radial-gradient(circle at bottom right, rgba(37,117,252,0.25), transparent 40%);
  pointer-events: none;
}

.bio-link-section .container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #9d4edd, #5a8dee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bio-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #dbe7f1;
  margin-bottom: 24px;
  text-align: justify;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

/* hover lembut */
.bio-desc:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  transition: 0.3s ease;
}

/* responsive */
@media (max-width: 600px) {
  .bio-desc {
    font-size: 15px;
    padding: 16px;
  }
}
/* =======================
   PAKET SECTION
======================= */
.paket-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b0f1a, #0f172a);
}

/* =======================
   TITLE
======================= */
.paket-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =======================
   WRAPPER DEFAULT (DESKTOP)
======================= */
.paket-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}

/* =======================
   CARD UMUM
======================= */
.paket-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.35s ease;
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.paket-name {
  font-size: 22px;
  font-weight: 600;
  color: #e5e7eb;
}

.paket-price {
  font-size: 28px;
  font-weight: 700;
  margin-top: 8px;
  color: #ffffff;
}

.paket-sub {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 6px;
}

.paket-line {
  margin: 22px 0;
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
}

.paket-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paket-list li {
  font-size: 14.5px;
  color: #e5e7eb;
  margin-bottom: 12px;
}

/* =======================
   PAKET 1 – ESSENTIAL
======================= */
.paket-essential {
  background: rgba(255,255,255,0.03);
}

/* =======================
   PAKET 2 – GROWTH
======================= */
.paket-growth {
  background: linear-gradient(
    135deg,
    rgba(99,102,241,0.25),
    rgba(56,189,248,0.18)
  );
  border: 1px solid rgba(99,102,241,0.35);
}

/* =======================
   PAKET 3 – PRIME (MYSTIC)
======================= */
.paket-prime {
  background: linear-gradient(
    135deg,
    #1e1b4b,
    #312e81,
    #0f172a
  );
  border: 1px solid rgba(139,92,246,0.6);
  box-shadow: 0 0 35px rgba(139,92,246,0.35);
}

.paket-prime .paket-name {
  background: linear-gradient(90deg, #c084fc, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.paket-prime::after {
  content: "RECOMMENDED";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  color: #0f172a;
}

/* =======================
   BUTTON
======================= */
.paket-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.paket-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.paket-btn-primary {
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  border: none;
  color: #0f172a;
}

.paket-btn-primary:hover {
  box-shadow: 0 0 20px rgba(139,92,246,0.7);
}

/* =======================
   RESPONSIVE – HP TEGAK
======================= */
@media (max-width: 640px) {
  .paket-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .paket-card {
    width: 100%;
    max-width: 360px;
  }

  /* PRIME TETAP URUTAN KE-3, TAPI LEBIH DOMINAN */
  .paket-prime {
    transform: scale(1.04);
    margin-top: 14px;
  }
}

/* =======================
   RESPONSIVE – TABLET / HP MIRING
======================= */
@media (min-width: 641px) and (max-width: 1024px) {
  .paket-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .paket-prime {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
  }
}
.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;
}