/* ────────────────────────────────────────────────────────────
   Wonten.Ai Landing — dark fintech minimal (sesuai video referensi)
   Near-black green-tint, glow hijau, garis teknis tipis, sans-serif
   ringan, "STEP 01/02/03" micro-label. Inter only.
   ──────────────────────────────────────────────────────────── */
:root {
  --bg: #0A0F0E;
  --bg-panel: #0D1312;
  --bg-panel-2: #101816;
  --accent: #3FE08A;          /* emerald neon — CTA */
  --accent-ink: #052A16;
  --sage: #8DB795;            /* pale sage — kata yang disorot */
  --forest: #315044;          /* garis teknis tipis */
  --teal: #4F7564;
  --text: #E4E7E3;
  --text-secondary: #858D87;
  --text-dim: #68716B;
  --border: rgba(94, 121, 105, 0.18);
  --border-soft: rgba(94, 121, 105, 0.10);
  --glow: rgba(91, 119, 63, 0.30);
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --hero-size: clamp(34px, 5.2vw, 56px);
  --ease: cubic-bezier(.22,.9,.32,1);
  /* alias kompatibilitas (checkout.html & markup lama) */
  --primary: var(--accent);
  --primary-dark: #2FBF74;
  --primary-light: var(--sage);
  --bg-alt: var(--bg-panel);
  --surface: var(--bg-panel);
  --surface-muted: var(--bg-panel-2);
  --border-light: var(--border-soft);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 50% -10%, rgba(63,224,138,.10) 0, transparent 38%),
    radial-gradient(circle at 78% 42%, var(--glow) 0, transparent 46%),
    radial-gradient(circle at 15% 80%, rgba(91,119,63,.12) 0, transparent 40%),
    var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain / noise halus */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #7CF0AE; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }

/* ── Blob glow hijau ── */
.blobs { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob--1 { width: 460px; height: 460px; top: -120px; left: 50%; transform: translateX(-50%); background: rgba(63,224,138,.14); animation: blob 20s ease-in-out infinite; }
.blob--2 { width: 420px; height: 420px; top: 38%; right: -140px; background: rgba(91,119,63,.22); animation: blob 24s ease-in-out infinite reverse; }
.blob--3 { width: 360px; height: 360px; bottom: -80px; left: -120px; background: rgba(79,117,100,.18); animation: blob 28s ease-in-out infinite; }
@keyframes blob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-26px) scale(1.08); } 66% { transform: translate(-24px,20px) scale(.95); } }

/* ── Starfield + cursor futuristik ── */
#starfield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.cursor-glow {
  position: fixed; z-index: 60; pointer-events: none;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,224,138,.12) 0, rgba(63,224,138,.04) 40%, transparent 65%);
  transform: translate(-50%, -50%); mix-blend-mode: screen; opacity: 0;
}
@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ── Eyebrow → micro-label uppercase (bukan tulisan tangan) ── */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(141,183,149,.6); display: block; margin-bottom: 14px;
}
.eyebrow--rose { color: rgba(232,169,162,.55); }
.eyebrow--mustard { color: rgba(232,196,104,.55); }

/* ── Tombol ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  border-radius: 999px; border: 1px solid transparent;
  padding: 11px 24px; min-height: 46px; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 34px -10px rgba(63,224,138,.55); }
.btn--primary:hover { background: #57EE9A; color: var(--accent-ink); }
.btn--outline { background: transparent; color: var(--text); border-color: rgba(228,231,227,.22); }
.btn--outline:hover { background: rgba(63,224,138,.08); border-color: var(--accent); }
.btn--lg { min-height: 54px; padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ── Kartu — dark, thin border + gradient subtle + glow hover ── */
.card {
  background: linear-gradient(180deg, var(--bg-panel-2) 0%, var(--bg-panel) 100%);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(63,224,138,.35);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.65), 0 0 0 1px rgba(63,224,138,.12), inset 0 0 30px -20px rgba(63,224,138,.25);
}

/* ── Marquee ticker ── */
.ticker { overflow: hidden; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: rgba(0,0,0,.25); padding: 14px 0; position: relative; z-index: 1; }
.ticker__track { display: inline-flex; gap: 30px; white-space: nowrap; animation: ticker 32s linear infinite; font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-secondary); }
.ticker__track i { font-style: normal; color: var(--accent); opacity: .55; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Glow pulse (CTA, badge, ikon) ── */
.glow-pulse { animation: glowPulse 3.5s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63,224,138,.35), 0 10px 34px -10px rgba(63,224,138,.55); }
  50% { box-shadow: 0 0 0 14px rgba(63,224,138,0), 0 10px 34px -8px rgba(63,224,138,.7); }
}
.feature__icon.glow-pulse { animation: glowPulse 4s ease-in-out infinite; }

/* ── Stats band + counter ── */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; text-align: center; }
.stat-cell { padding: 22px 12px; }
.stat-cell b { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); display: block; }
.stat-cell b em { font-style: normal; color: var(--accent); }
.stat-cell s { font-size: 12.5px; color: var(--text-secondary); text-decoration: none; font-weight: 300; }
@media (max-width: 760px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

/* ── Glow curve / ribbon — garis menggambar diri + energi mengalir (khas video) ── */
.glow-curve { width: 100%; height: 220px; display: block; margin: -20px 0; }
.gc-path {
  stroke-dasharray: 2600; stroke-dashoffset: 2600;
  animation: drawLine 4.5s cubic-bezier(.4,0,.2,1) forwards;
  filter: drop-shadow(0 0 7px rgba(63,224,138,.55));
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.gc-dot { opacity: 0; animation: dotAppear 0.2s ease 4.2s forwards; }
@keyframes dotAppear { to { opacity: 1; } }

/* ── Reveal blur+scale (card chooser, beda dari slide-up biasa) ── */
.reveal-blur { opacity: 0; transform: scale(.94); filter: blur(10px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.reveal-blur.in { opacity: 1; transform: scale(1); filter: blur(0); }

/* ── Garis konektor menggambar diri (stats band) ── */
.connector { width: 100%; height: 1px; margin: 8px 0 22px; background: linear-gradient(90deg, rgba(63,224,138,0), rgba(63,224,138,.5), rgba(63,224,138,0)); background-size: 200% 100%; animation: drawConnector 3.5s var(--ease) infinite; }
@keyframes drawConnector { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .4s; }

/* ── Navbar ── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,15,14,.78); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-soft); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; color: var(--text); letter-spacing: -0.01em; }
.nav__brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav__links { display: flex; gap: 22px; align-items: center; }
.nav__links a { color: var(--text-secondary); font-weight: 500; font-size: 14px; }
.nav__links a:hover { color: var(--text); }

/* ── Hero ── */
.hero { padding: 90px 0 70px; text-align: center; position: relative; }
.hero__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--sage); background: rgba(63,224,138,.08); border: 1px solid rgba(63,224,138,.25); border-radius: 999px; padding: 5px 16px; margin-bottom: 24px; }
.hero h1 { font-size: var(--hero-size); font-weight: 500; line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 18px; color: var(--text); }
.hero h1 .accent { color: var(--sage); font-weight: 400; }
.hero h1 .accent2 { color: var(--accent); }
.hero p.sub { font-size: 16px; color: var(--text-secondary); max-width: 620px; margin: 0 auto 30px; font-weight: 300; }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-size: 12.5px; color: var(--text-dim); }
.hero__scroll { margin-top: 40px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.hero__scroll b { display: inline-block; animation: scrollHint 2s ease-in-out infinite; color: var(--accent); }
@keyframes scrollHint { 0%,100% { transform: translateY(0); opacity:.5; } 50% { transform: translateY(6px); opacity:1; } }

/* Intro hero: fade-in lembut */
.hero__badge, .hero h1, .hero p.sub, .hero__cta, .hero__note, .hero__scroll {
  opacity: 0; animation: dreamyIn 1.2s var(--ease) forwards;
}
.hero h1 { animation-delay: .12s; }
.hero p.sub { animation-delay: .3s; }
.hero__cta { animation-delay: .45s; }
.hero__note { animation-delay: .6s; }
.hero__scroll { animation-delay: .8s; }
@keyframes dreamyIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── Mock chat preview ── */
.hero__preview { margin-top: 56px; }
.preview-card { max-width: 720px; margin: 0 auto; text-align: left; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px -40px rgba(0,0,0,.8); }
.preview-card__head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border-soft); background: var(--bg-panel-2); }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(228,231,227,.14); }
.preview-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { max-width: 75%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; opacity: 0; animation: bubbleIn .6s var(--ease) forwards; }
.chat-bubble--in { align-self: flex-start; background: var(--bg-panel-2); border: 1px solid var(--border-soft); border-bottom-left-radius: 5px; color: var(--text); animation-delay: .15s; }
.chat-bubble--out { align-self: flex-end; background: rgba(63,224,138,.14); border: 1px solid rgba(63,224,138,.3); color: #C9F3DC; border-bottom-right-radius: 5px; animation-delay: .8s; }
.chat-bubble:nth-child(3) { animation-delay: 1.5s; }
.chat-bubble:nth-child(4) { animation-delay: 2.2s; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Section ── */
.section { padding: 70px 0; }
.section--alt { background: rgba(0,0,0,.16); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section__head h2 { font-size: 32px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: 12px; color: var(--text); }
.section__head h2 .accent { color: var(--sage); }
.section__head p { color: var(--text-secondary); font-weight: 300; }

/* ── Fitur ── */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature { padding: 28px 24px; }
.feature__icon { width: 46px; height: 46px; border-radius: 10px; margin: 0 0 16px; background: rgba(63,224,138,.08); border: 1px solid rgba(63,224,138,.22); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.feature p { font-size: 13.5px; color: var(--text-secondary); font-weight: 300; }

/* ── Cara kerja — STEP micro-label + garis teknis ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 26px 18px; text-align: left; border-top: 1px solid var(--border); }
.step__num { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(141,183,149,.55); display: block; margin-bottom: 12px; }
.step h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.step p { font-size: 13px; color: var(--text-secondary); font-weight: 300; }

/* ── Harga ── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing--4 { grid-template-columns: repeat(4, 1fr); }

.dur-toggle { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin: 0 auto 16px; padding: 5px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: 999px; }
.dur-toggle__item { border: 1px solid transparent; background: transparent; border-radius: 999px; padding: 8px 16px; font: inherit; font-size: 13px; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: all .18s var(--ease); }
.dur-toggle__item em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--sage); margin-left: 3px; }
.dur-toggle__item--hot em { color: rgba(232,169,162,.8); }
.dur-toggle__item:hover { color: var(--text); }
.dur-toggle__item.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.dur-toggle__item.is-active em { color: #063B1C; }
.promo-line { text-align: center; font-size: 13px; color: var(--text-secondary); margin: 0 0 28px; }

.price-card { display: flex; flex-direction: column; padding: 28px 24px; }
.price-card--featured { border: 1px solid rgba(63,224,138,.5); background: linear-gradient(180deg, rgba(63,224,138,.06), var(--bg-panel)); }
.price-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 999px; letter-spacing: .04em; }
.price-card h3 { font-size: 16px; font-weight: 600; color: var(--text); }
.price-card .price { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 8px 0 2px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.price-card .price small { font-size: 13px; font-weight: 400; color: var(--text-secondary); }
.price-card .price__now { line-height: 1.1; color: var(--text); }
.price-card .price__old { font-size: 14px; font-weight: 400; color: var(--text-dim); text-decoration: line-through; }
.price-card .price__save { font-size: 11px; font-weight: 600; color: var(--accent); background: rgba(63,224,138,.1); border: 1px solid rgba(63,224,138,.25); padding: 2px 9px; border-radius: 999px; }
.price-card ul { list-style: none; margin: 16px 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-card li { font-size: 13.5px; display: flex; gap: 9px; align-items: flex-start; color: var(--text-secondary); font-weight: 300; }
.price-card li::before { content: '✓'; color: var(--accent); font-weight: 600; }
.price-card .btn { margin-top: auto; }

/* ── FAQ ── */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); }
.faq summary { padding: 16px 20px; cursor: pointer; font-weight: 500; font-size: 15px; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; font-size: 20px; color: var(--accent); font-weight: 400; transition: transform .25s; }
.faq details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq .faq__a { padding: 0 20px 16px; font-size: 14px; color: var(--text-secondary); font-weight: 300; }

/* ── CTA akhir ── */
.cta { text-align: center; }
.cta h2 { font-size: 34px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: 12px; color: var(--text); }
.cta p { color: var(--text-secondary); margin-bottom: 28px; font-weight: 300; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border-soft); padding: 28px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer span { font-size: 13px; color: var(--text-dim); }
.footer a { font-size: 13px; color: var(--text-secondary); margin-left: 16px; }
.footer a:hover { color: var(--accent); }

/* ── Checkout ── */
.checkout { padding: 44px 0 64px; }
.checkout__grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.checkout__steps { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.checkout__steps .current { color: var(--accent); font-weight: 600; }
.wiz-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.wiz-num { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(63,224,138,.12); border: 1px solid rgba(63,224,138,.4); color: var(--accent); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.wiz-head h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.wiz-head p { font-size: 12.5px; color: var(--text-secondary); margin-top: 2px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-field input, .form-field select { width: 100%; font-family: var(--font-sans); font-size: 15px; padding: 12px 15px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-panel-2); color: var(--text); outline: none; transition: border-color .18s, box-shadow .18s; }
.form-field input:focus, .form-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(63,224,138,.12); }
.form-field .hint { font-size: 12.5px; color: var(--text-secondary); margin-top: 4px; }
.error-box { background: rgba(211,47,47,.1); border: 1px solid #E06060; color: #F3C1C1; border-radius: var(--radius-sm); padding: 10px 14px; font-size: 14px; margin-bottom: 16px; display: none; }
.error-box.show { display: block; }

.plan-pick { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.hot-badge { display: inline-block; margin-left: 6px; font-size: 10.5px; font-weight: 600; color: rgba(232,169,162,.9); background: rgba(232,169,162,.12); border: 1px solid rgba(232,169,162,.3); padding: 1px 8px; border-radius: 999px; vertical-align: middle; }
.summary__row.save { border-top: 1px dashed var(--border); padding-top: 10px; }
.plan-pick label { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 17px; cursor: pointer; background: var(--bg-panel-2); color: var(--text); transition: border-color .2s; }
.plan-pick label:hover { border-color: rgba(63,224,138,.4); }
.plan-pick label.selected { border-color: var(--accent); background: rgba(63,224,138,.06); }
.plan-pick input { accent-color: var(--accent); }
.plan-pick .plan-name { font-weight: 600; font-size: 15px; }
.plan-pick .plan-price { font-weight: 600; color: var(--accent); }
.plan-pick .plan-desc { font-size: 12.5px; color: var(--text-secondary); }

/* ── Ringkasan ── */
.summary { position: sticky; top: 84px; }
.summary h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.summary__row { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; color: var(--text); }
.summary__row.total { border-top: 1px solid var(--border-soft); margin-top: 8px; padding-top: 12px; font-weight: 600; font-size: 16px; }
.summary__note { font-size: 12.5px; color: var(--text-secondary); margin-top: 12px; line-height: 1.5; }

/* ── Sukses ── */
.success { text-align: center; padding: 24px 8px; }
.success__icon { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 999px; background: rgba(63,224,138,.1); border: 1px solid rgba(63,224,138,.3); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.success h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.success .invoice { display: inline-block; background: rgba(63,224,138,.08); border: 1px dashed rgba(63,224,138,.35); color: var(--accent); border-radius: var(--radius-sm); padding: 9px 18px; font-weight: 600; font-size: 16px; margin: 12px 0 4px; letter-spacing: .5px; }
.success p { color: var(--text-secondary); font-size: 14px; max-width: 480px; margin: 0 auto 20px; }

/* ── Preview Dashboard Produk — screenshot ASLI aplikasi ── */
.dash-wrap { margin-top: 20px; }
.dash-shot {
  display: block; width: 100%; max-width: 1080px; margin: 0 auto;
  border-radius: 14px; border: 1px solid rgba(94,121,105,.25);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.85);
  background: #F6F7F6;
}

/* ── Responsif ── */
/* ── Steps: garis konektor + nomor glow + hover lift ── */
.steps { position: relative; }
.steps::before {
  content: ''; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63,224,138,.35), transparent);
  animation: drawConnector 4s var(--ease) infinite;
}
.step { transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.step:hover { transform: translateY(-4px); border-color: rgba(63,224,138,.35); box-shadow: 0 18px 44px -20px rgba(0,0,0,.6), inset 0 0 26px -18px rgba(63,224,138,.3); }
.step__num { display: inline-block; position: relative; z-index: 1; background: var(--bg); padding: 2px 8px 2px 0; color: var(--accent); font-weight: 600; }

/* ── Price badge pulse + card stagger ── */
.price-card__badge { animation: badgePulse 3s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(63,224,138,.45); } 50% { box-shadow: 0 0 0 9px rgba(63,224,138,0); } }
.price-card--featured { border-color: rgba(63,224,138,.45); box-shadow: 0 0 0 1px rgba(63,224,138,.2), 0 30px 70px -30px rgba(0,0,0,.7); }

/* ── FAQ accordion fade ── */
.faq details[open] .faq__a { animation: faqIn .32s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ── Dashboard screenshot float ── */
.dash-shot { animation: floatY 7s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing--4 { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .checkout__grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .hero { padding: 64px 0 50px; }
  .hero h1 { font-size: clamp(30px, 7vw, 46px); line-height: 1.12; }
  .hero p.sub { font-size: 15px; max-width: 460px; }
}
@media (max-width: 760px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid2 { grid-template-columns: 1fr; }
  .pricing--4 { grid-template-columns: 1fr; max-width: 460px; }
  .glow-curve { height: 130px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .nav__links { display: none; }
  .hero h1 { font-size: 27px; line-height: 1.15; }
  .hero p.sub { font-size: 14.5px; }
  .hero__cta .btn { width: 100%; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-cell b { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .chat-bubble { opacity: 1; }
}
