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

html, body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== LANDING SECTION ===== */
.landing {
  display: flex;
  padding: 90px 0 70px;
  background: linear-gradient(180deg,#1f6bff,#49a8ff);
  color:#fff;
  min-height: 100vh;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.landing .judul { font-size:28px;font-weight:800;margin-bottom:18px; }
.landing .description { font-size:15px;font-weight:600;color:#eaf2ff;margin-bottom:28px; }

.btn-hero {
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 26px;border-radius:16px;
  background:#FFD84A;color:#111;font-weight:700;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  transition:.18s;
}
.btn-hero:hover { transform:translateY(-2px); }

@media (min-width:768px){
  .landing .judul{font-size:34px;}
}

/* ===== BENEFIT SECTION ===== */
.benefit { padding:70px 0;background:#fff; }
.benefit-title { text-align:center;font-size:24px;font-weight:800;color:#0f1f3c;margin-bottom:8px; }
.benefit-sub { text-align:center;font-size:14px;color:#586a8a;margin-bottom:32px; }

.benefit-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.benefit-item{
  background:#f7f9ff;border-radius:18px;padding:18px;
  border:1px solid #e2e7ff;transition:.2s;
}
.benefit-item:hover{
  background:#fff;
  box-shadow:0 16px 28px rgba(0,0,0,.08);
  transform:translateY(-2px);
}
.icon{
  width:48px;height:48px;border-radius:14px;
  background:linear-gradient(145deg,#1f6bff,#49a8ff);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.icon i{color:#fff;font-size:20px;}

@media(max-width:640px){
  .benefit-grid{grid-template-columns:1fr;}
}

/* ===== PROBLEM SECTION ===== */
.problem{padding:70px 0;background:#f5f7ff;}
.problem-title{text-align:center;font-size:24px;font-weight:800;color:#0f1f3c;margin-bottom:8px;}
.problem-sub{text-align:center;font-size:14px;color:#586a8a;margin-bottom:32px;}

.problem-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.problem-item{
  background:#fff;border-radius:18px;padding:18px;
  border:1px solid #e2e7ff;transition:.2s;
}
.problem-item:hover{
  box-shadow:0 16px 28px rgba(0,0,0,.08);
  transform:translateY(-2px);
}
.problem-item .icon{
  width:48px;height:48px;border-radius:14px;
  background:linear-gradient(145deg,#1f6bff,#49a8ff);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
}
.problem-item .icon i{color:#fff;font-size:20px;}

.solution-box{
  margin-top:28px;padding:18px;border-radius:18px;
  background:linear-gradient(145deg,#1f6bff,#49a8ff);
  display:flex;gap:12px;align-items:flex-start;color:#fff;
}
.solution-icon{
  width:50px;height:50px;border-radius:14px;
  background:rgba(255,255,255,.18);
  display:flex;align-items:center;justify-content:center;
}
.solution-icon i{font-size:20px;color:#fff;}

@media(max-width:640px){
  .problem-grid{grid-template-columns:1fr;}
  .solution-box{flex-direction:column;}
}

/* ===== SECTION PRICING ===== */
.pricing{
  position:relative;
  padding:60px 0;
  background:radial-gradient(circle at 20% 20%,#ffffff,#f2f4f7 40%,#e5e7eb 90%);
}
.pricing::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(255,255,255,.6),transparent 40%);
  pointer-events:none;
}

.section-title{
  text-align:center;
  font-size:24px;
  font-weight:900;
  color:#0f172a;
  margin-bottom:6px;
}
.section-subtitle{
  text-align:center;
  font-size:14px;
  color:#4b5563;
  max-width:520px;
  margin:0 auto 20px;
}

/* GRID */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:18px;
  margin-top:10px;
}

/* ===== CARD BASE ===== */
.pricing-card{
  position:relative;          /* FIX klik */
  z-index:1;
  background:#fff;
  border-radius:18px;
  border:1px solid #e5e7eb;
  padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  transition:.25s;
  display:flex;
  flex-direction:column;
  height:100%;
}
.pricing-card:hover{transform:translateY(-4px);}

.pkg-name{font-size:18px;font-weight:800;margin-bottom:2px;color:#0f172a;}
.pkg-price{font-size:28px;font-weight:900;color:#111827;}
.pkg-desc{font-size:13px;color:#6b7280;margin-bottom:10px;}

.divider{border:none;border-top:1px dashed #d1d5db;margin:14px 0;}

.pkg-list{list-style:none;padding:0;margin:0;flex:1;}
.pkg-list li{
  display:flex;align-items:center;gap:8px;
  margin-bottom:8px;font-size:14px;color:#111827;
}
.pkg-list i{color:#22c55e;font-size:14px;}

/* tombol selalu di bawah */
.btn-order-cart{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:12px;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  position:relative;   /* FIX prioritas klik */
  z-index:3;
}
.btn-order-cart:hover{filter:brightness(1.06);}

/* ===== VARIAN SINGLE ===== */
.pricing-card.single{
  background:linear-gradient(180deg,#ffffff,#f7f9fb);
  border:1px solid #d6dae0;
  box-shadow:0 14px 32px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* ===== MYTHIC ===== */
.pricing-card.mythic{
  border:2px solid #a78bfa;
  background:linear-gradient(145deg,#7c3aed,#5b21b6,#312e81,#0ea5e9);
  background-size:200% 200%;
  color:#fff;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(124,58,237,.45);
  animation:mythicBG 6s ease-in-out infinite;
}
.pricing-card.mythic::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 10%,rgba(255,255,255,.35),transparent 40%);
  pointer-events:none;   /* ⬅️ ini kunci WA bisa diklik */
}

.pricing-card.mythic .pkg-name,
.pricing-card.mythic .pkg-price,
.pricing-card.mythic .pkg-desc,
.pricing-card.mythic .pkg-list li{color:#fff;}

.pricing-card.mythic .pkg-list i{color:#a7f3d0;}

.mythic-btn{
  background:linear-gradient(135deg,#facc15,#f97316,#fb923c);
  color:#111;
  font-weight:800;
}

@keyframes mythicBG{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* ===== RESPONSIVE ===== */
@media(max-width:640px){
  .pricing-grid{grid-template-columns:1fr;}
}
@media(min-width:641px) and (max-width:1024px){
  .pricing-grid{grid-template-columns:1fr 1fr;}
  .pricing-grid .pricing-card:last-child{
    grid-column:1 / 3;
    max-width:330px;
    margin:0 auto;
  }
}
@media(min-width:1025px){
  .pricing-grid{grid-template-columns:repeat(3,1fr);}
}
html {
  scroll-behavior: smooth;
}
.process {
  padding: 70px 0;
  background: #f5f7ff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.process-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e2e7ff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  position: relative;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg,#1f6bff,#49a8ff);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.consult {
  padding: 70px 0;
  background: #ffffff;
}

.consult-box {
  background: #f7f9ff;
  border: 1px solid #e2e7ff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 28px rgba(0,0,0,.06);
  max-width: 640px;
  margin: 10px auto 0;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #d6daf5;
  background: #fff;
  font-size: 14px;
}

.consult-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 800;
  background: linear-gradient(135deg,#1f6bff,#49a8ff);
  color: #fff;
  letter-spacing: .2px;
}
.consult-btn:active { transform: scale(.98); }
.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;
}