html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0d8ff5 0%, #1693f5 58%, #1c9dfb 100%);
}

.pulsa-hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0d8ff5 0%, #1693f5 58%, #1c9dfb 100%);
}

.topbar {
  background: #ffffff;
}

.brand-lockup {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.level-badge {
  display: block;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 14px;
}

.level-badge-wrap {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.hero-icon-btn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #eef6ff;
  color: #1787e0;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.hero-icon-btn:hover {
  transform: translateY(-1px);
  background: #e2f0ff;
}

.hero-icon-btn.has-badge {
  position: relative;
}

.hero-icon-btn.has-badge::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #ef4444;
  box-shadow: 0 0 0 2px #ffffff;
}

.upgrade-btn {
  flex: 0 0 auto;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  padding: 0.42rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.upgrade-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.92);
}

.hero-title {
  font-weight: 700;
}

.promo-title {
  font-weight: 800;
}

.section-title {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f2937;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0;
  opacity: 0.9;
}

.active-tab {
  transform: translateY(-1px);
}

.icon-pill {
  display: grid;
  place-items: center;
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 1.45rem;
  backdrop-filter: blur(8px);
}

.feature-short,
.feature-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.feature-short {
  color: #404854;
}

.feature-short-light {
  color: #ffffff;
}

.feature-short span:last-child,
.feature-tile .tile-text {
  display: block;
  font-size: 0.83rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.short-icon,
.tile-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #dff1ff 0%, #c8e7ff 100%);
  color: #1590f4;
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.short-icon-light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.active-pulsa .short-icon-light {
  background: #ffffff;
  color: #1787e0;
}

.tile-placeholder {
  background: #d1d5db;
  color: transparent;
}

.feature-tile {
  color: #202938;
}

.feature-tile .tile-icon,
.feature-short .short-icon {
  font-weight: 600;
}

.micro-text {
  font-size: 10px;
  line-height: 1.2;
}

.promo-banner {
  position: relative;
}

.promo-track {
  transition: transform 0.55s ease;
  will-change: transform;
}

.promo-slide {
  overflow: hidden;
}

.promo-dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: #d1d5db;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.promo-dot.active {
  width: 28px;
  background: #22a7ff;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
}

#backToTop {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

#backToTop:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(23, 135, 224, 0.36);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 40;
  display: grid;
  width: min(430px, calc(100vw - 20px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  transform: translateX(-50%);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 0.45rem 0.3rem 0.55rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #c7cbd1;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.bottom-nav-item i {
  font-size: 1.15rem;
  transition: transform 0.18s ease;
}

.bottom-nav-item.active {
  color: #1787e0;
}

.bottom-nav-item.active i {
  transform: translateY(-1px);
}

.bottom-nav-item:hover {
  color: #1787e0;
  opacity: 1;
  transform: translateY(-1px);
}

.bottom-nav-item:hover i {
  transform: translateY(-1px) scale(1.03);
}

.tab-item {
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.tab-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.pulsa-back,
.pulsa-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.pulsa-back {
  width: 2.2rem;
  height: 2.2rem;
}

.pulsa-help {
  padding: 0.45rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.verification-hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0d8ff5 0%, #1693f5 58%, #1c9dfb 100%);
}

.verification-back,
.verification-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.verification-back {
  width: 2.2rem;
  height: 2.2rem;
}

.verification-help {
  padding: 0.45rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.verification-badge-wrap {
  display: grid;
  place-items: center;
  width: 4.05rem;
  height: 4.05rem;
  flex: 0 0 auto;
  border-radius: 1rem;
  background: #f3f7ff;
  overflow: hidden;
}

.verification-badge {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.18rem;
}

.verification-badge-premium {
  transform: scale(0.98);
}

.verification-badge-priority {
  transform: scale(0.98);
}

.verification-badge-wrap.priority {
  background: linear-gradient(180deg, #fff1c5 0%, #f9cf58 100%);
  color: #d97706;
}

.verification-feature-icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  border-radius: 0.7rem;
  background: #f2f8ff;
  font-size: 1rem;
}

.verification-task {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.verification-task-icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  border-radius: 0.7rem;
  background: #f2f8ff;
  color: #1a90e9;
  font-size: 1rem;
}

.verification-task-label {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f2937;
}

.verification-check {
  flex: 0 0 auto;
  color: #d1d5db;
  font-size: 1.2rem;
}

.verification-vida {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  border-radius: 0.5rem;
  background: #1a90e9;
  color: #ffffff;
  font-size: 0.95rem;
}

.verification-footer {
  position: fixed;
  left: 50%;
  bottom: 5rem;
  z-index: 35;
  width: min(430px, calc(100vw - 20px));
  transform: translateX(-50%);
}

.verification-cta {
  width: 100%;
  border-radius: 0.45rem;
  background: #f8c400;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1f2937;
  box-shadow: 0 10px 22px rgba(248, 196, 0, 0.22);
}

.confirmation-hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0d8ff5 0%, #1693f5 58%, #1c9dfb 100%);
}

#confirmationScreen {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 50;
  width: min(430px, calc(100vw - 20px));
  height: 100dvh;
  overflow-y: auto;
  transform: translateX(-50%);
  background: #f4f5f7;
}

.confirmation-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.confirmation-thumb {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: #f2f6fa;
  color: #cfd6de;
}

.confirmation-thumb-icon {
  font-size: 1.15rem;
}

.confirmation-star {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #b5b5b5;
  font-size: 1.5rem;
}

.confirmation-mode {
  padding: 0.95rem 0.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #666;
  background: #f7f7f7;
}

.confirmation-mode.active {
  background: #1787e0;
  color: #ffffff;
}

.confirmation-rp {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  background: #e7fbf7;
  color: #0f9f92;
  font-size: 1.05rem;
  font-weight: 700;
}

.confirmation-price-input {
  flex: 1 1 auto;
  min-width: 0;
  padding-bottom: 0.05rem;
  border: 0;
  background: transparent;
  text-align: right;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #10b3a5;
  outline: none;
  caret-color: #10b3a5;
}

.confirmation-price-input::placeholder {
  color: #10b3a5;
  opacity: 0.35;
}

.confirmation-price-input.is-loss {
  color: #d61b26;
  caret-color: #d61b26;
}

.confirmation-price-input.is-loss::placeholder {
  color: #d61b26;
}

.confirmation-info {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 9999px;
  background: #1561c2;
  color: #ffffff;
  font-size: 0.85rem;
}

.confirmation-wallet {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.4rem;
  background: #eef6ff;
  color: #1787e0;
}

.confirmation-balance {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
}

.confirmation-balance > .flex {
  align-items: flex-start;
}

.confirmation-balance > button {
  width: 100%;
}

.confirmation-pay-btn {
  position: fixed;
  left: 50%;
  bottom: 0.95rem;
  z-index: 35;
  width: min(430px, calc(100vw - 20px));
  min-height: 3.4rem;
  transform: translateX(-50%);
}

#topupProceedButton {
  min-height: 3.4rem;
}

#topupScreen,
#topupPaymentScreen {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 50;
  width: min(430px, calc(100vw - 20px));
  height: 100dvh;
  overflow-y: auto;
  transform: translateX(-50%);
  background: #f4f5f7;
}

#topupStatusScreen {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 50;
  width: min(430px, calc(100vw - 20px));
  height: 100dvh;
  overflow-y: auto;
  transform: translateX(-50%);
  background: #f4f5f7;
}

.topup-hero,
.topup-payment-hero,
.topup-status-hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0d8ff5 0%, #1693f5 58%, #1c9dfb 100%);
}

.topup-back,
.topup-payment-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.topup-clock-icon {
  font-size: 1.45rem;
}

.topup-step-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.95rem;
  background: #f8fbff;
  padding: 0.9rem 0.95rem;
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.5;
}

.topup-step-index {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  border-radius: 9999px;
  background: #1787e0;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.topup-need-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #dff1ff;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1787e0;
  white-space: nowrap;
}

.topup-status-spinner {
  position: relative;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #eef7ff;
}

.topup-status-spinner::before {
  content: "";
  position: absolute;
  inset: 0.25rem;
  border-radius: 9999px;
  border: 3px solid rgba(23, 135, 224, 0.2);
  border-top-color: #1787e0;
  animation: topup-spin 1s linear infinite;
}

.topup-status-spinner span {
  position: relative;
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #1787e0;
}

.topup-status-spinner.is-success::before {
  border-top-color: #10b981;
}

.topup-status-spinner.is-success span {
  background: #10b981;
}

.payment-success-badge {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #e8fff4;
  color: #10b981;
  font-size: 1.2rem;
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  z-index: 80;
  width: min(430px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(8px);
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.92);
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.app-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes topup-spin {
  to {
    transform: rotate(360deg);
  }
}

.topup-help {
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.topup-wallet-icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  background: #eaf4ff;
  color: #1787e0;
  font-size: 1.2rem;
}

.topup-section-icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  background: #eef6ff;
  color: #1787e0;
  font-size: 1.1rem;
}

.topup-amount {
  min-height: 3.3rem;
  border-radius: 0.55rem;
  border: 1px solid #d6dbe3;
  background: #ffffff;
  padding: 0.6rem 0.4rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #374151;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.topup-amount.active,
.topup-amount.active-blue {
  border-color: #7dc0f7;
  background: #eef7ff;
  color: #1f2937;
  box-shadow: inset 0 0 0 1px rgba(23, 135, 224, 0.08);
}

.topup-bank-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.8rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.topup-bank-row.active {
  border-color: #7dc0f7;
  box-shadow: 0 6px 14px rgba(23, 135, 224, 0.08);
  transform: translateY(-1px);
}

.topup-bank-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 2.2rem;
  padding: 0 0.5rem;
  border-radius: 0.45rem;
  background: #eef2f7;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.topup-bank-logo.blue {
  background: linear-gradient(135deg, #ecf5ff, #dfeeff);
  color: #276ef1;
}

.topup-bank-logo.orange {
  background: linear-gradient(135deg, #fff5e8, #ffe5be);
  color: #d97706;
}

.topup-bank-logo.navy {
  background: linear-gradient(135deg, #eef2ff, #dbe4ff);
  color: #1f4fbf;
}

.topup-bank-logo.green {
  background: linear-gradient(135deg, #ecfbf3, #d9f8e7);
  color: #0f9f92;
}

.topup-bank-logo.red {
  background: linear-gradient(135deg, #fff0ef, #ffdcdc);
  color: #bf1e2e;
}

.topup-bank-logo.orange-light {
  background: linear-gradient(135deg, #fff4e0, #ffe8bd);
  color: #d97706;
}

.topup-bank-logo.blue-dark {
  background: linear-gradient(135deg, #e7f0ff, #d7e4ff);
  color: #1748a5;
}

.topup-copy-btn {
  flex: 0 0 auto;
  border-radius: 0.55rem;
  border: 1px solid #9fd0f8;
  background: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1787e0;
}

.topup-copy-btn-sm {
  padding: 0.3rem 0.65rem;
  font-size: 0.76rem;
}

.topup-guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.95rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1f2937;
}

.topup-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #94a3b8;
}

.topup-timeline-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  background: #cbd5e1;
  box-shadow: 0 0 0 5px rgba(203, 213, 225, 0.18);
}

.topup-timeline-text {
  font-size: 0.92rem;
  font-weight: 600;
}

.topup-timeline-item.active {
  color: #1787e0;
}

.topup-timeline-item.active .topup-timeline-dot {
  background: #1787e0;
  box-shadow: 0 0 0 5px rgba(23, 135, 224, 0.12);
}

.topup-timeline-item.done {
  color: #10b981;
}

.topup-timeline-item.done .topup-timeline-dot {
  background: #10b981;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.pulsa-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.9rem;
  background: #ffffff;
  padding: 1rem 1rem;
  overflow: visible;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
}

.pulsa-card > div {
  position: relative;
}

.pulsa-card.has-promo > div {
  padding-left: 0;
}

.pulsa-promo {
  position: absolute;
  top: 0.15rem;
  right: 4.45rem;
  left: auto;
  transform: none;
  border-radius: 0.35rem;
  background: #facc15;
  padding: 0.25rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  color: #7c2d12;
  writing-mode: horizontal-tb;
  text-orientation: initial;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.pulsa-card.muted {
  opacity: 0.68;
}

.pulsa-pilih {
  border-radius: 0.55rem;
  background: #1779c7;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.pulsa-phone-row {
  transition: border-color 0.18s ease;
}

.pulsa-phone-row.is-filled {
  border-color: #1787e0;
}

.pulsa-phone-row.is-empty {
  border-color: #111827;
}

.pulsa-tab {
  position: relative;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #9ca3af;
  text-align: center;
}

.pulsa-tab.active {
  color: #1787e0;
}

.pulsa-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  border-radius: 9999px;
  background: #1787e0;
}

.pulsa-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0 1rem;
}

.pulsa-empty-illustration {
  position: relative;
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background: #eaf4ff;
  color: #1787e0;
}

.pulsa-empty-illustration i {
  font-size: 3rem;
}

.pulsa-empty-illustration.favor .star-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  font-size: 1rem;
  color: #d1d5db;
}

.pulsa-empty-illustration.recent .plus-dot {
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 9999px;
  background: #1787e0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.pulsa-empty-state button {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pulsa-empty-state button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(246, 196, 0, 0.24);
}

.recent-payment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.recent-payment-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.recent-payment-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: #eaf4ff;
  color: #1787e0;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.recent-payment-panel {
  padding-bottom: 1.3rem;
}

.recent-detail-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  background: #eaf4ff;
  color: #1787e0;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.recent-detail-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border-radius: 9999px;
  background: #eef6ff;
  color: #1787e0;
  font-size: 0.78rem;
  font-weight: 800;
}

.recent-detail-status.is-success {
  background: #e7f8f2;
  color: #0ea371;
}

.recent-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.recent-detail-label {
  color: #64748b;
}

.recent-detail-value {
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}

.telkomsel-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
}

.telkomsel-mark {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.28rem;
  background: linear-gradient(135deg, #ff0026 10%, #ef1720 55%, #d80019 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: rotate(45deg);
}

.telkomsel-mark::before {
  content: "T";
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.telkomsel-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #d61b26;
}

.sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 60;
  display: grid;
  width: min(430px, calc(100vw - 20px));
  height: 100dvh;
  align-items: end;
  transform: translateX(-50%);
  pointer-events: none;
}

.sheet.is-open {
  pointer-events: auto;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sheet-panel {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #ffffff;
  padding: 0.9rem 1rem 1.2rem;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.18);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sheet.is-open .sheet-backdrop {
  opacity: 1;
}

.sheet.is-open .sheet-panel {
  transform: translateY(0);
  opacity: 1;
}

.sheet-handle {
  width: 3rem;
  height: 0.28rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: #cbd5e1;
}

.sheet-close {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #64748b;
}

.sheet-cta {
  width: 100%;
  border-radius: 0.95rem;
  background: #1787e0;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(23, 135, 224, 0.22);
}

.sheet-cta:hover {
  filter: brightness(0.98);
}

.payment-panel {
  padding: 0.9rem 1rem 1.1rem;
}

.payment-method-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 0.45rem;
  background: #f8fbff;
  color: #1787e0;
  font-size: 1.25rem;
}

.payment-radio {
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  border: 3px solid #d1d5db;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.payment-warning {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  border-radius: 0.9rem;
  border: 2px solid #cce5ff;
  background: #eef7ff;
  padding: 0.85rem 0.95rem;
  font-size: 0.88rem;
  color: #5a6b7f;
}

.payment-warning-action {
  flex: 0 0 auto;
  color: #1787e0;
  font-size: 0.94rem;
  font-weight: 800;
}

.payment-bi-badge {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  border-radius: 9999px;
  object-fit: cover;
  background: #ffffff;
}

.products-panel {
  padding: 0.9rem 1rem 1.2rem;
}

.products-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1f2937;
}

.products-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.products-tile-icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.85rem;
  color: #1787e0;
  font-size: 1.28rem;
}

.products-tile-text {
  font-size: 0.74rem;
  line-height: 1.25rem;
  color: #1f2937;
}

.products-tile-badge {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: #e11d48;
  padding: 0.08rem 0.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  color: #ffffff;
}
