*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --border: rgba(255,255,255,0.07);
  --white: #F0EEF8;
  --muted: rgba(240,238,248,0.45);
  --accent: #7C5CFC;
  --accent2: #FC5C7D;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; top: -30vh; left: -20vw;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse, rgba(124,92,252,0.15) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

body::after {
  content: '';
  position: fixed; bottom: -20vh; right: -15vw;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse, rgba(252,92,125,0.1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ── LAYOUT ── */
.page {
  position: relative; z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(124,92,252,0.15);
  border: 1px solid rgba(124,92,252,0.4);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #A98DFF;
  margin-bottom: 2rem;
  animation: fadeDown 0.5s ease both;
}

.badge .dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: #A98DFF;
  animation: pulse 1.5s infinite;
}

/* ── HERO ── */
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: fadeDown 0.5s 0.1s ease both;
}

h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1rem; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeDown 0.5s 0.15s ease both;
}

/* ── SOCIAL PROOF ── */
.proof {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 0.9rem 1rem;
  margin-bottom: 1.8rem;
  animation: fadeDown 0.5s 0.2s ease both;
}

.proof-avatars { display: flex; }

.proof-avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  margin-right: -8px;
}

.proof-text { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.proof-text strong { color: var(--white); }

/* ── HARGA BOX ── */
.harga-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 1.6rem 1.2rem;
  margin-bottom: 1.8rem;
  text-align: center;
  animation: fadeDown 0.5s 0.25s ease both;
}

.harga-box .icon { font-size: 2.2rem; margin-bottom: 0.7rem; }

.harga-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem;
}

.harga-box p {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1.2rem;
}

.kontak-list { display: flex; flex-direction: column; gap: 0.65rem; }

.kontak-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.8rem 1rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  transition: all 0.2s;
}

.kontak-wa {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4CD97A;
}
.kontak-wa:hover { background: rgba(37,211,102,0.22); }

.kontak-tt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}
.kontak-tt:hover { background: rgba(255,255,255,0.1); }

/* ── DIVIDER ── */
.divider {
  border: none; border-top: 1px solid var(--border);
  margin: 1.8rem 0;
}

/* ── FORM ── */
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.3rem;
}

.form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }

.field { margin-bottom: 1rem; }

.field label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(240,238,248,0.2); }

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.15);
}

.field textarea { resize: none; height: 80px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ── SUBMIT ── */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none; border-radius: 10px;
  padding: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,92,252,0.4);
}

.btn-submit:active { transform: translateY(0); }

.guarantee {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin-top: 1.2rem; font-size: 0.75rem; color: var(--muted); text-align: center;
}

/* ── SUCCESS ── */
.success-screen { display: none; text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-screen h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; margin-bottom: 0.5rem;
}
.success-screen p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* ── RESPONSIVE ── */
@media (max-width: 400px) {
  .field-row { grid-template-columns: 1fr; }
}
