:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --border: #1e1e2e;
  --accent: #f5c542;
  --accent2: #ff6b35;
  --text: #f0f0f5;
  --muted: #7a7a9a;
  --green: #22c55e;
  --wa: #25D366;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.nav-cta {
  background: var(--wa); color: #fff; border: none;
  padding: 10px 22px; border-radius: 50px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; font-size: 0.9rem; cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,197,66,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,107,53,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.badge {
  display: inline-block;
  background: rgba(245,197,66,0.12); border: 1px solid rgba(245,197,66,0.3);
  color: var(--accent); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted); max-width: 600px; margin: 0 auto 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--accent); color: #0a0a0f;
  padding: 16px 36px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 0 40px rgba(245,197,66,0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,197,66,0.4); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 16px 36px; border-radius: 50px;
  border: 1px solid var(--border);
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 60px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat span { font-size: 0.85rem; color: var(--muted); }

/* MARQUEE */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; background: var(--surface); }
.marquee { display: flex; gap: 48px; width: max-content; animation: scroll 20s linear infinite; }
.marquee span { white-space: nowrap; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.marquee span b { color: var(--accent); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* URGENCY BANNER */
.urgency {
  background: linear-gradient(135deg, #ff6b35, #f5c542);
  color: #000; text-align: center;
  padding: 16px 5%; font-weight: 700; font-size: 1rem;
  position: relative; letter-spacing: 0.1px;
  text-shadow: none;
}
.urgency strong { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 900; }

/* SECTION */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: 'Nunito', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); max-width: 520px; }

/* PRICING */
#harga { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  position: relative; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(245,197,66,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(245,197,66,0.15);
}
.card.featured::before {
  content: '🔥 PALING LAKU';
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #0a0a0f;
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  font-family: 'Nunito', sans-serif;
}
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.card .old-price { color: var(--muted); text-decoration: line-through; font-size: 0.9rem; margin-bottom: 4px; }
.card .price {
  font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.card .price-note { font-size: 0.8rem; color: var(--accent2); font-weight: 600; margin-bottom: 20px; }
.card-divider { height: 1px; background: var(--border); margin: 20px 0; }
.card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.card ul li.dim { color: #444; }
.card ul li.dim::before { color: #333; content: '—'; }
.card-btn {
  display: block; text-align: center; width: 100%;
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text); padding: 14px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.card.featured .card-btn { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
.card-btn:hover { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
.domain-tag {
  display: inline-block; margin-top: 12px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: var(--green); font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
}

/* RUGI BANNER */
.rugi-box {
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(245,197,66,0.08));
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 20px; padding: 36px; margin-top: 40px; text-align: center;
}
.rugi-box .emoji { font-size: 3rem; }
.rugi-box h3 { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 800; margin: 12px 0 8px; }
.rugi-box p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }

/* HOW IT WORKS */
#cara { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(245,197,66,0.12); border: 2px solid rgba(245,197,66,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--accent);
  margin: 0 auto 16px;
}
.step h4 { font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* DOMAIN */
#domain { background: var(--bg); }
.domain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.domain-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: all 0.2s;
}
.domain-card:hover { border-color: var(--accent); }
.domain-card .ext { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.domain-card p { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
.domain-card .incl { color: var(--green); font-size: 0.8rem; font-weight: 600; margin-top: 6px; }
.domain-card.custom { border-color: rgba(255,107,53,0.4); }
.domain-card.custom .ext { color: var(--accent2); }

/* WHY */
#kenapa { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: 0.88rem; }

/* FAQ */
#faq { background: var(--bg); }
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem; user-select: none;
}
.faq-q .arrow { color: var(--accent); font-size: 1.2rem; transition: transform 0.2s; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; color: var(--muted); font-size: 0.9rem; }
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }

/* CTA */
#cta {
  background: linear-gradient(135deg, var(--surface) 0%, #0a0a0f 100%);
  text-align: center; padding: 100px 5%;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,197,66,0.07) 0%, transparent 70%);
}
#cta h2 { font-family: 'Nunito', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
#cta p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa); color: #fff;
  padding: 18px 48px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.1rem;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 0 60px rgba(37,211,102,0.3);
}
.wa-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 60px rgba(37,211,102,0.45); }
.wa-note { margin-top: 16px; font-size: 0.85rem; color: var(--muted); }

/* FOOTER */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  text-align: center; padding: 32px 5%;
  color: var(--muted); font-size: 0.85rem;
}
footer .logo-f { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
footer .logo-f span { color: var(--accent); }

/* FLOATING WA */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  text-decoration: none; font-size: 1.8rem;
  animation: pulse 2s infinite;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.8); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .hero-stats { gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  nav .nav-cta span { display: none; }
}
