/* ============ Safar Talk — landing ============ */
:root {
  --bg: #090a09;
  --bg-soft: #0e100e;
  --card: #121512;
  --card-border: rgba(244, 239, 226, 0.08);
  --cream: #f4efe2;
  --cream-dim: rgba(244, 239, 226, 0.68);
  --cream-faint: rgba(244, 239, 226, 0.55);
  --emerald: #10b981;
  --emerald-light: #34d399;
  --gold: #e6c15a;
  --radius: 18px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

a { color: var(--emerald-light); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}
.container-narrow { max-width: 760px; }

/* ---------- Tipografi ---------- */
h1 {
  font-size: clamp(1.9rem, 4.6vw + 0.6rem, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--emerald-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-size: clamp(1.5rem, 2.6vw + 0.7rem, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 22em;
}
h3 { font-size: 1.15rem; font-weight: 700; }

.kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}
.section-sub { color: var(--cream-dim); margin-top: 0.8rem; max-width: 40em; }

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(105deg, var(--emerald) 10%, #0ea672 90%);
  color: #06231a;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(16, 185, 129, 0.5); }

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(244, 239, 226, 0.25);
  background: rgba(244, 239, 226, 0.04);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  color: var(--emerald-light);
  border: 1.5px solid rgba(16, 185, 129, 0.55);
  background: transparent;
}
.btn-outline:hover { background: rgba(16, 185, 129, 0.1); }

.btn-big { font-size: 1.1rem; padding: 1rem 2rem; min-height: 56px; }

.ico { flex-shrink: 0; }

/* ---------- Nav & brand ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  position: relative;
  z-index: 2;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
  font-weight: 800;
  font-size: 1.15rem;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
  flex-shrink: 0;
}
.nav-cta {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 239, 226, 0.2);
  border-radius: 999px;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-login {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}
.nav-login:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 75%;
  background:
    radial-gradient(38% 45% at 22% 30%, rgba(16, 185, 129, 0.18), transparent 70%),
    radial-gradient(30% 40% at 80% 20%, rgba(230, 193, 90, 0.1), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 2.5rem 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-light);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
  color: var(--cream-dim);
  max-width: 34em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--cream-faint);
}

/* ---------- Mockup HP ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: min(290px, 78vw);
  aspect-ratio: 9 / 18.6;
  border-radius: 42px;
  background: #131613;
  border: 1px solid rgba(244, 239, 226, 0.14);
  box-shadow:
    inset 0 0 0 6px #050605,
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(16, 185, 129, 0.12);
  padding: 14px;
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #050605;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #0b0d0b 0%, #0f1710 60%, #0b0d0b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.6rem 1.1rem 1.3rem;
  overflow: hidden;
}
.scr-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.scr-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
}
.scr-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ff8a8a;
  background: rgba(255, 90, 90, 0.12);
  border: 1px solid rgba(255, 90, 90, 0.35);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5a5a;
  animation: pulse 1.4s ease-in-out infinite;
}
.scr-room { font-size: 1.25rem; font-weight: 800; line-height: 1.25; }
.scr-host { font-size: 0.78rem; color: var(--cream-faint); margin-top: 0.3rem; }
.scr-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 46px;
  margin-block: 1.4rem 1.2rem;
}
.scr-wave span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--emerald-light), var(--emerald));
  animation: wave 1.15s ease-in-out infinite;
}
.scr-wave span:nth-child(1) { height: 16px; animation-delay: 0s; }
.scr-wave span:nth-child(2) { height: 30px; animation-delay: 0.12s; }
.scr-wave span:nth-child(3) { height: 42px; animation-delay: 0.24s; }
.scr-wave span:nth-child(4) { height: 24px; animation-delay: 0.36s; }
.scr-wave span:nth-child(5) { height: 38px; animation-delay: 0.18s; }
.scr-wave span:nth-child(6) { height: 20px; animation-delay: 0.3s; }
.scr-wave span:nth-child(7) { height: 32px; animation-delay: 0.06s; }
.scr-speaker {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.12), 0 10px 30px rgba(16, 185, 129, 0.35);
}
.scr-hint { font-size: 0.72rem; color: var(--cream-faint); margin-top: 0.9rem; }
.scr-hand {
  margin-top: auto;
  width: 100%;
  padding: 0.8rem;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  border: 1.5px solid rgba(230, 193, 90, 0.45);
  background: rgba(230, 193, 90, 0.07);
}
.phone-shadow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.7), transparent);
}

/* ---------- Badge store (Google Play / App Store) ---------- */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.store-badges-hero { margin-top: 1.4rem; }
.store-badges-center { justify-content: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.5rem 1.15rem 0.5rem 0.95rem;
  border-radius: 12px;
  background: #0d0f0d;
  border: 1px solid rgba(244, 239, 226, 0.22);
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.store-badge:hover {
  border-color: rgba(244, 239, 226, 0.45);
  transform: translateY(-2px);
}
.store-badges-hero .store-badge { min-height: 48px; padding-block: 0.4rem; }
.sb-logo { flex-shrink: 0; }
.sb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.sb-top {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-faint);
}
.sb-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.store-soon {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.cta-stores {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}
.cta-stores .store-lead {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.cta-stores .store-soon {
  margin: 0.9rem auto 0;
  font-size: 0.82rem;
  color: var(--cream-faint);
}

/* ---------- Bar kepercayaan ---------- */
.trustbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--card-border);
}
.trustbar-inner {
  padding-block: 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.trustbar a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding-block: 0.35rem; /* target sentuh ≥24px */
}
.trustbar a:hover { text-decoration: underline; }

/* ---------- Sections & cards ---------- */
.section { padding-block: 4.5rem; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--card-border); }

.grid { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
.grid-3 { grid-template-columns: 1fr; }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(16, 185, 129, 0.35); transform: translateY(-3px); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--cream-dim); font-size: 0.96rem; }
.card .answer {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(230, 193, 90, 0.3);
  color: var(--emerald-light);
  font-weight: 600;
}
.card-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 1.1rem;
}

/* ---------- Langkah ---------- */
.step { position: relative; padding-top: 2rem; }
.step-num {
  position: absolute;
  top: -1.4rem;
  left: 1.4rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--emerald-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.steps { margin-top: 3.2rem; }
.code-demo {
  display: flex;
  gap: 0.5rem;
  margin-block: 1rem;
}
.code-demo span {
  flex: 1;
  max-width: 58px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(230, 193, 90, 0.08);
  border: 1.5px solid rgba(230, 193, 90, 0.4);
  border-radius: 12px;
}

.step-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
}

/* ---------- Use case ---------- */
.usecase-badge { font-size: 2rem; margin-bottom: 0.8rem; }

/* ---------- Pricing ---------- */
/* Toggle Bulanan/Tahunan — butuh JS; tanpa JS disembunyikan (default bulanan
   sudah tampil lengkap dengan subteks tahunan, tidak ada informasi hilang) */
.billing-toggle-wrap { display: none; }
html.js .billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}
.billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(244, 239, 226, 0.05);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.billing-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream-faint);
  padding: 0.5rem 1.2rem;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.billing-btn:hover { color: var(--cream); }
.billing-btn[aria-pressed="true"] {
  background: linear-gradient(105deg, var(--emerald) 10%, #0ea672 90%);
  color: #06231a;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}
.billing-btn[aria-pressed="true"]:hover { color: #06231a; }
.billing-save {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #171304;
  background: linear-gradient(100deg, var(--gold), #f0d488);
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
/* Transisi halus saat harga berganti periode */
.price-card [data-monthly],
.price-card .save-pill { transition: opacity 0.18s ease; }
.price-card [data-monthly].switching,
.price-card .save-pill.switching { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .price-card [data-monthly],
  .price-card .save-pill { transition: none; }
  .billing-btn { transition: none; }
}

/* Fallback tanpa JS: toggle tersembunyi, info tahunan tetap tampil satu baris */
.pricing-nojs-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}
html.js .pricing-nojs-note { display: none; }

.pricing {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.6rem;
  align-items: stretch;
}
html.js .billing-toggle-wrap + .pricing { margin-top: 1.8rem; }
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2.2rem 1.5rem 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tier-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.badge-pop {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #171304;
  background: linear-gradient(100deg, var(--gold), #f0d488);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-line {
  margin-top: 1.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}
.price-cur {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream-dim);
  margin: 0.4rem 0.18rem 0 0;
}
.price-amount {
  font-size: clamp(2.5rem, 2.6vw + 1.7rem, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-per {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-faint);
  align-self: flex-end;
  margin: 0 0 0.35rem 0.25rem;
}
.amount-custom {
  background: linear-gradient(100deg, var(--emerald-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bill-note {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--cream-faint);
}
.save-pill {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #171304;
  background: linear-gradient(100deg, var(--gold), #f0d488);
  padding: 0.24rem 0.75rem;
  border-radius: 999px;
}
/* [hidden] tetap memesan ruang — layout tidak melompat saat toggle */
.save-pill[hidden] { display: inline-flex; visibility: hidden; }
.tier-desc {
  margin-top: 1rem;
  font-size: 0.93rem;
  color: var(--cream-dim);
  max-width: 26em;
}
.cap-highlight {
  margin-top: 1.15rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.feat-list {
  list-style: none;
  width: 100%;
  text-align: left;
  margin: 1.2rem 0 1.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--card-border);
  display: grid;
  gap: 0.65rem;
  align-content: start;
  flex-grow: 1;
}
.feat-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--cream-dim);
  font-size: 0.96rem;
}
.feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' fill='none' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat,
    rgba(16, 185, 129, 0.12);
}
.price-card .btn { width: 100%; }
.cta-micro {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--cream-faint);
}

.price-card.featured {
  border: 1.5px solid rgba(230, 193, 90, 0.55);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(230, 193, 90, 0.04)), var(--card);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.12);
}
.price-card.featured .tier-name { color: var(--cream); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; display: grid; gap: 0.8rem; }
.faq-list details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.3rem;
  font-weight: 700;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--cream-dim);
  font-size: 0.96rem;
}
.faq-list summary:hover { color: var(--emerald-light); }

/* ---------- CTA penutup ---------- */
.cta-final { text-align: center; padding-block: 5.5rem; }
.cta-final h2 { margin-inline: auto; }
.cta-final p { color: var(--cream-dim); margin: 1rem auto 2rem; max-width: 36em; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--card-border);
  background: var(--bg-soft);
}
.footer-inner {
  /* padding bawah ekstra: ruang aman untuk tombol WhatsApp mengambang (58px + offset 18px) */
  padding-block: 2.5rem 6.5rem;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.footer a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer p a {
  display: inline-block;
  padding-block: 0.35rem; /* target sentuh ≥24px */
}
.footer a:hover { text-decoration: underline; }
.footer .brand { font-size: 1.05rem; }
.copyright { color: var(--cream-faint); font-size: 0.85rem; }

/* ---------- WhatsApp mengambang ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06231a;
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.07); }

/* ---------- Animations ---------- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* Konten .reveal hanya disembunyikan bila JS aktif (html.js dipasang
   oleh script inline di <head>) — tanpa JS, semua konten tetap terlihat. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .scr-wave span, .live-dot, .hero-eyebrow .dot { animation: none; }
  .btn, .card, .wa-float { transition: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 700px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .pricing { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    padding-block: 4rem 5.5rem;
  }
  .price-card.featured { transform: scale(1.045); }
  .price-card.featured:hover { transform: scale(1.045); }
}

@media (max-width: 699px) {
  .section { padding-block: 3.2rem; }
  .steps .step { margin-top: 1rem; }
  .hero-actions .btn { width: 100%; }
}
