/* ============================
   Modal Harian — Landing Styles
   Minimalist clean · Apple/Notion-inspired
   ============================ */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --ink: #0a0a0a;
  --ink-2: #1f1f1f;
  --muted: #6b7280;
  --line: #ececec;
  --line-2: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --accent: #10b981;      /* emerald — WA / primary */
  --accent-2: #059669;
  --highlight: #fde68a;   /* subtle yellow swipe */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}
.nav__links a { transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 15px;
}
.logo__text { font-size: 17px; }
.logo__text span { color: var(--muted); font-weight: 600; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--lg { padding: 15px 26px; font-size: 15.5px; }
.btn--block { width: 100%; }

.btn--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 18px -6px rgba(0,0,0,0.5);
}
.btn--dark:hover { background: var(--ink-2); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(16, 185, 129, 0.6);
}
.btn--primary:hover { background: var(--accent-2); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--bg-soft); border-color: #d4d4d4; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 50% at 50% 20%, rgba(16,185,129,0.10), transparent 60%),
    radial-gradient(40% 40% at 80% 0%, rgba(253,224,71,0.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
}

.hero__title {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
}
.hero__title em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #059669, #10b981 60%, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__price-label {
  color: var(--muted);
  font-size: 15.5px;
  letter-spacing: -0.005em;
}
.hero__price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 6px 18px -8px rgba(16, 185, 129, 0.25);
  animation: priceBlink 1.1s ease-in-out infinite;
  transform-origin: center;
}
@keyframes priceBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 6px 18px -8px rgba(16, 185, 129, 0.25),
      0 0 0 0 rgba(16, 185, 129, 0.35);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.04);
    box-shadow:
      0 6px 18px -8px rgba(16, 185, 129, 0.35),
      0 0 0 10px rgba(16, 185, 129, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__price-pill { animation: none; }
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
}
.avatars { display: flex; }
.avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #fff;
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.trust__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.2;
}
.trust__text b { color: var(--ink); }
.stars { display: inline-flex; gap: 1px; margin-bottom: 2px; }
.stars svg { width: 12px; height: 12px; fill: #f59e0b; }

/* hero floating cards */
.hero__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  animation: float 6s ease-in-out infinite;
}
.float-card--1 {
  left: max(2vw, 16px);
  top: 32%;
  min-width: 220px;
  animation-delay: -1s;
}
.float-card--2 {
  right: max(2vw, 16px);
  top: 22%;
  min-width: 220px;
  animation-delay: -3s;
}
.float-card--3 {
  right: max(4vw, 24px);
  bottom: 8%;
  min-width: 200px;
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc__label { color: var(--muted); font-size: 12px; margin-bottom: 4px; }
.fc__amount { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
.fc__bar { height: 6px; border-radius: 999px; background: #f1f5f9; overflow: hidden; }
.fc__bar span {
  display: block;
  height: 100%;
  width: 74%;
  background: linear-gradient(90deg, var(--accent), #34d399);
  border-radius: inherit;
}
.fc__row { display: flex; gap: 10px; align-items: center; }
.fc__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: var(--accent-2);
  display: grid; place-items: center;
  font-weight: 800;
}
.fc__t { font-weight: 600; font-size: 13.5px; }
.fc__s { color: var(--muted); font-size: 12px; }
.spark {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
  margin-top: 8px;
}
.spark span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 4px;
  opacity: 0.85;
}
.spark span:last-child { background: linear-gradient(180deg, var(--accent), var(--accent-2)); opacity: 1; }

@media (max-width: 1080px) {
  .hero__visual { display: none; }
}

/* ---------- STATS ---------- */
.stats { padding: 24px 0 60px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line-2);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat__lbl { color: var(--muted); font-size: 13.5px; }

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}

/* ---------- SHOWCASE (gambar custom) ---------- */
.showcase { padding: 20px 0 60px; }
.showcase__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
}
.showcase__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(48px) saturate(1.3) brightness(0.85);
  transform: scale(1.25);
  z-index: 0;
  display: block;
  user-select: none;
  pointer-events: none;
}
.showcase__main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.showcase__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
  z-index: 0;
  pointer-events: none;
}
.showcase__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(16,185,129,0.04), rgba(253,224,71,0.06)),
    repeating-linear-gradient(45deg, #fafafa 0 10px, #ffffff 10px 20px);
}
.showcase__frame.is-empty .showcase__placeholder { display: flex; }
.ph__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--accent-2);
  box-shadow: var(--shadow-sm);
}
.ph__icon svg { width: 26px; height: 26px; }
.ph__title { font-weight: 600; color: var(--ink); font-size: 15px; }
.ph__sub { font-size: 13px; }
.ph__sub code {
  background: #fff;
  border: 1px solid var(--line-2);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--ink-2);
}

/* ---------- SECTION ---------- */
.section { padding: 110px 0; }
.section--soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-2);
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 18px;
}
.tag--dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.section__head h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 14px;
}
.section__head h2 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--accent-2);
}
.section__head p { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d4d4d4;
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 400;
}
.step h3 { font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(16,185,129,0.08);
  color: var(--accent-2);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; margin: 0 0 6px; letter-spacing: -0.01em; }
.feature p { color: var(--muted); margin: 0; font-size: 14.5px; }

@media (max-width: 980px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing__card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16,185,129,0.5), transparent 40%, rgba(253,224,71,0.5));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing__badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pricing__head h3 {
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.pricing__head p { color: var(--muted); margin: 0 0 24px; font-size: 14.5px; }
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line-2);
}
.pricing__price .currency { font-size: 18px; color: var(--muted); font-weight: 600; }
.pricing__price .amount {
  font-size: clamp(44px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing__price .period { color: var(--muted); font-size: 14px; margin-left: 4px; }

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.pricing__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
}
.pricing__list svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 0;
}

.pricing__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 16px;
}
.quote p { margin: 0 0 22px; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.92); }
.quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
}
.quote__author b { display: block; font-weight: 600; }
.quote__author span { color: rgba(255,255,255,0.55); font-size: 12px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.avatar__initial { position: relative; z-index: 0; }

.note {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--muted);
}
.note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); }
.note p { margin: 0; line-height: 1.45; }

@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS ---------- */
.testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi__card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi__card p {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.testi__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi__user b { display: block; font-size: 14px; }
.testi__user span { color: var(--muted); font-size: 12.5px; }

@media (max-width: 880px) { .testi { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(120% 80% at 50% 0%, #1f1f1f 0%, var(--ink) 60%);
  color: #fff;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 60%;
  background: radial-gradient(40% 60% at 50% 50%, rgba(16,185,129,0.35), transparent 60%);
  filter: blur(40px);
}
.cta__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 18px 0 16px;
  color: #fff;
}
.cta h2 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #34d399, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta__actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta__hint { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ---------- FOOTER ---------- */
.footer { padding: 36px 0; background: #fff; border-top: 1px solid var(--line); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__copy { color: var(--muted); font-size: 13.5px; margin: 0; }
.footer__links { display: flex; gap: 22px; font-size: 13.5px; color: var(--muted); }
.footer__links a:hover { color: var(--ink); }

/* ---------- FLOATING WA BUTTON ---------- */
.fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(16,185,129,0.6), 0 0 0 0 rgba(16,185,129,0.5);
  z-index: 40;
  transition: transform .2s ease, background .2s ease;
  animation: pulse 2.4s ease-out infinite;
}
.fab:hover { transform: scale(1.06); background: var(--accent-2); }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px -8px rgba(16,185,129,0.6), 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 12px 30px -8px rgba(16,185,129,0.6), 0 0 0 18px rgba(16,185,129,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(16,185,129,0.6), 0 0 0 0 rgba(16,185,129,0); }
}

/* ============================
   CINEMATIC REVEAL ON SCROLL
   - Base state (from) lalu section-specific from-state.
   - Akhir block: .is-in (to-state) dengan selector lebih
     spesifik supaya pasti menang melawan override section.
   ============================ */
:root {
  --ease-cine: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 1.1s;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(6px);
  transition:
    opacity var(--reveal-dur) var(--ease-cine),
    transform var(--reveal-dur) var(--ease-cine),
    filter var(--reveal-dur) var(--ease-cine);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

/* ----- From-state per section ----- */

.hero__title.reveal {
  transform: translateY(60px);
  filter: blur(10px);
  transition-duration: 1.4s;
}
.hero__sub.reveal    { transition-duration: 1.2s; }
.hero__price.reveal  { transition-duration: 1.1s; transform: translateY(36px) scale(0.96); }
.hero__cta.reveal    { transition-duration: 1.1s; transform: translateY(36px); }
.hero__trust.reveal  { transition-duration: 1.1s; }

.showcase__frame.reveal {
  transform: scale(0.94) translateY(40px);
  filter: blur(14px) brightness(0.85);
  transition-duration: 1.6s;
}

.section__head.reveal {
  transition-duration: 1.3s;
  transform: translateY(40px);
  filter: blur(8px);
}

.step.reveal,
.feature.reveal,
.testi__card.reveal {
  transform: translateY(50px) scale(0.97);
}

.cta__inner.reveal {
  transition-duration: 1.4s;
  transform: translateY(50px);
  filter: blur(8px);
}

.stat.reveal {
  transform: translateY(28px);
  filter: blur(4px);
  transition-duration: 1s;
}

.pricing.reveal {
  transition-duration: 1.4s;
  transform: translateY(60px) scale(0.97);
  filter: blur(8px);
}

/* ----- TO-STATE (is-in) ----- 
   Diletakkan paling akhir + selector dua-class agar
   pasti menang specificity terhadap from-state di atas. */
.reveal.is-in,
.hero__title.reveal.is-in,
.hero__sub.reveal.is-in,
.hero__price.reveal.is-in,
.hero__cta.reveal.is-in,
.hero__trust.reveal.is-in,
.showcase__frame.reveal.is-in,
.section__head.reveal.is-in,
.step.reveal.is-in,
.feature.reveal.is-in,
.testi__card.reveal.is-in,
.cta__inner.reveal.is-in,
.stat.reveal.is-in,
.pricing.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) brightness(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ---------- RESPONSIVE / MOBILE TIGHTEN ---------- */
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__inner { height: 58px; }

  /* Padding section sangat rapat untuk mobile */
  .hero       { padding: 18px 0 22px; }
  .stats      { padding: 2px 0 10px; }
  .showcase   { padding: 2px 0 10px; }
  .section    { padding: 28px 0; }
  .cta        { padding: 36px 0; }
  .footer     { padding: 18px 0; }

  /* Hero: kompak vertikal */
  .eyebrow            { margin-bottom: 12px; padding: 4px 11px; font-size: 11.5px; }
  .hero__title        { margin-bottom: 10px; }
  .hero__sub          { margin-bottom: 14px; font-size: 14.5px; line-height: 1.5; }
  .hero__price        { margin-bottom: 14px; gap: 8px; }
  .hero__price-label  { font-size: 13.5px; }
  .hero__price-pill   { padding: 10px 18px; font-size: 14px; }
  .hero__cta          { margin-bottom: 16px; gap: 8px; }
  .hero__trust        { gap: 10px; padding: 7px 12px 7px 9px; }
  .trust__text        { font-size: 12px; }

  /* Section head lebih dekat ke kontennya */
  .section__head { margin-bottom: 18px; }
  .section__head p { font-size: 14.5px; margin-top: 4px; }
  .section__head h2 { margin-bottom: 6px; }
  .tag { margin-bottom: 10px; font-size: 11px; }

  /* Card spacing dirapatin */
  .steps    { gap: 10px; }
  .features { gap: 10px; }
  .testi    { gap: 10px; }
  .step     { padding: 16px 18px; }
  .feature  { padding: 16px 18px; }
  .testi__card { padding: 18px; }
  .step h3, .feature h3 { font-size: 16px; margin-bottom: 4px; }
  .step p, .feature p, .testi__card p { font-size: 14px; }
  .step__num { font-size: 30px; margin-bottom: 6px; }
  .feature__icon { width: 36px; height: 36px; margin-bottom: 10px; border-radius: 10px; }
  .feature__icon svg { width: 18px; height: 18px; }
  .testi__card p { margin-bottom: 14px; }
  .testi__user { padding-top: 12px; }

  /* Pricing dirapatin */
  .pricing { gap: 10px; }
  .pricing__card { padding: 22px 20px; border-radius: 18px; }
  .pricing__head h3 { font-size: 22px; }
  .pricing__head p { margin-bottom: 14px; font-size: 14px; }
  .pricing__badge { margin-bottom: 10px; }
  .pricing__price { margin-bottom: 14px; padding-bottom: 14px; }
  .pricing__list { gap: 8px; margin-bottom: 18px; }
  .pricing__list li { font-size: 14px; }
  .pricing__note { margin-top: 8px; font-size: 12.5px; }
  .quote { padding: 20px; }
  .quote__mark { font-size: 48px; margin-bottom: 6px; line-height: 0.5; }
  .quote p { margin-bottom: 14px; font-size: 14.5px; }
  .note { padding: 10px 12px; font-size: 12.5px; }

  /* Stats lebih rapat */
  .stat { padding: 18px 16px; }
  .stat__lbl { font-size: 12.5px; }

  /* CTA banner */
  .cta h2 { margin: 12px 0 10px; }
  .cta p { font-size: 14.5px; margin-bottom: 18px; }

  /* Footer */
  .footer__inner { gap: 8px; }
  .footer__links { gap: 14px; }

  /* FAB sedikit lebih kecil di mobile */
  .fab { width: 48px; height: 48px; bottom: 14px; right: 14px; }
}

/* Layar sangat kecil (di bawah 380px) */
@media (max-width: 380px) {
  .hero    { padding: 14px 0 18px; }
  .section { padding: 22px 0; }
  .cta     { padding: 30px 0; }
  .section__head { margin-bottom: 14px; }
  .container { padding: 0 16px; }
  .pricing__card { padding: 20px 16px; }
}
