/* ==============================
   FONT (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;
}

/* ==============================
   PROPOSAL SECTION (FULL LAYAR)
============================== */
.proposal {
  min-height: 100vh; /* 🔥 bikin full layar */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 10vw, 120px) 20px;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e1b4b 50%,
    #312e81 100%
  );
}

/* ==============================
   CONTAINER
============================== */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;              /* 🔥 penting */
  flex-direction: column;
  align-items: center;
  gap: 24px;                  /* 🔥 jarak antar teks */
  text-align: center;
}

/* ==============================
   JUDUL
============================== */
.judul {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 10px;        /* 🔥 biar nggak mepet */
}

/* ==============================
   PARAGRAF
============================== */
.p {
  max-width: 720px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;           /* 🔥 lebih lega */
  color: white;             /* abu terang (lebih enak) */
}
/* ==============================
   BUTTON – CEK PAKET
============================== */
.btn-cek-paket {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  box-shadow: 0 10px 30px rgba(139,92,246,0.45);
  transition: all 0.35s ease;
}

/* HOVER */
.btn-cek-paket:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 45px rgba(139,92,246,0.7);
}

/* ACTIVE (KLIK) */
.btn-cek-paket:active {
  transform: scale(0.96);
}
/* ==============================
   SECTION 2 – ALASAN PROPOSAL
============================== */
.alasan-proposal {
  padding: clamp(70px, 10vw, 120px) 20px;
  background: linear-gradient(
    180deg,
    #0f172a 0%,
    #111827 100%
  );
}

/* ==============================
   CONTAINER (PAKAI YANG SAMA)
============================== */
.alasan-proposal .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

/* ==============================
   TITLE
============================== */
.alasan-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==============================
   DESCRIPTION
============================== */
.alasan-desc {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
}

/* ==============================
   LIST WRAPPER
============================== */
.alasan-list {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}

/* ==============================
   LIST ITEM
============================== */
.alasan-item {
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  text-align: left;
}

/* ==============================
   RESPONSIVE – TABLET & DESKTOP
============================== */
@media (min-width: 768px) {
  .alasan-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==============================
   SECTION 3 – LAYANAN PROPOSAL
============================== */
.layanan-proposal {
  padding: clamp(70px, 10vw, 120px) 20px;
  background: linear-gradient(
    180deg,
    #111827 0%,
    #0f172a 100%
  );
}

/* ==============================
   CONTAINER
============================== */
.layanan-proposal .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

/* ==============================
   TITLE
============================== */
.layanan-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==============================
   DESCRIPTION
============================== */
.layanan-desc {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
}

/* ==============================
   CARD WRAPPER
============================== */
.layanan-wrapper {
  width: 100%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* ==============================
   CARD
============================== */
.layanan-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  text-align: left;
}

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

/* ==============================
   CARD TITLE
============================== */
.layanan-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

/* ==============================
   CARD TEXT
============================== */
.layanan-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #d1d5db;
}

/* ==============================
   RESPONSIVE – MOBILE
============================== */
@media (max-width: 640px) {
  .layanan-card {
    text-align: center;
  }
}
/* ==============================
   PRICING SECTION
============================== */
.pricing {
  padding: clamp(80px, 12vw, 140px) 16px;
  background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
  color: white;
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-desc {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
  color: #c7d2fe;
}

/* ==============================
   CARD WRAPPER
============================== */
.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ==============================
   CARD
============================== */
.pricing-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.pricing-name {
  font-size: 22px;
  font-weight: 600;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  margin: 12px 0 20px;
}

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

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

/* ==============================
   BUTTON
============================== */
.pricing-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.3s ease;
}

.pricing-btn:hover {
  background: rgba(255,255,255,0.15);
}

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

/* ==============================
   CANVA SPECIAL
============================== */
.pricing-card.canva {
  background: linear-gradient(135deg, #1e1b4b, #312e81, #0f172a);
  border: 1px solid rgba(139,92,246,0.6);
  box-shadow: 0 0 40px rgba(139,92,246,0.35);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  color: #0f172a;
  font-weight: 600;
}
/* =======================
   CARA ORDER SECTION
======================= */
.order {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b0f1a, #020617);
  text-align: center;
}

.order-container {
  max-width: 1100px;
  margin: auto;
}

.order-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.order-desc {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 60px;
}

/* STEPS */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.order-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 22px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.order-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.order-number {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  color: #0f172a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.order-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* BUTTON */
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(90deg, #25d366, #4ade80);
  transition: all 0.3s ease;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(34,197,94,0.6);
}
.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;
}