:root {
  --green: #087f75;
  --dark: #153d39;
  --muted: #80908d;
  --line: #e8eeec;
  --bg: #f6f9f8;
  --orange: #ff975f;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #243c38;
  background: var(--bg);
  font-size: 14px;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #f5b57c;
  outline-offset: 4px;
}
a {
  text-decoration: none;
  color: inherit;
}
svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
h1,
h2,
h3,
.brand {
  font-family: "Plus Jakarta Sans", sans-serif;
}
button {
  border: 0;
}
aside {
  position: fixed;
  inset: 0 auto 0 0;
  width: 232px;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -1.2px;
}
.brand-mark {
  background: var(--green);
  color: white;
  width: 35px;
  height: 38px;
  border-radius: 12px 12px 12px 3px;
  display: grid;
  place-items: center;
  transform: rotate(-5deg);
}
.brand-mark svg {
  width: 25px;
}
.brand-dot {
  color: var(--orange);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  color: #98a5a2;
  font-weight: 700;
  margin: 43px 14px 15px;
}
.nav-link {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border-radius: 9px;
  margin-bottom: 7px;
  color: #758581;
  font-weight: 500;
  width: 100%;
  background: none;
  text-align: left;
}
.nav-link.active {
  color: var(--green);
  background: #eaf5f1;
  font-weight: 700;
}
.nav-link:hover {
  background: #f2f7f5;
}
.nav-link .tag {
  font-size: 9px;
  background: #fff0e4;
  color: #d98240;
  border-radius: 4px;
  padding: 3px 5px;
  margin-left: auto;
}
.side-bottom {
  margin-top: auto;
}
.help-card {
  background: #f5f9f7;
  border: 1px solid var(--line);
  padding: 18px 14px;
  border-radius: 12px;
}
.help-card > svg {
  color: var(--green);
}
.help-card h4 {
  font-size: 12px;
  margin: 10px 0 6px;
}
.help-card p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 14px;
}
.help-card button {
  width: 100%;
  background: #fff;
  border: 1px solid #dce7e2;
  border-radius: 6px;
  padding: 9px;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}
.sidebar-copy {
  font-size: 10px;
  color: #a0aaa7;
  margin: 23px 0 0 11px;
}
main {
  margin-left: 232px;
}
header {
  height: 88px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 12px;
  color: #9ba7a3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb strong {
  color: #465b55;
  font-weight: 500;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 23px;
}
.security {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #7b8f87;
}
.security svg {
  width: 16px;
  color: var(--green);
}
.notification {
  position: relative;
  background: none;
  color: #698079;
  border-right: 1px solid var(--line);
  padding-right: 23px;
}
.notification:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border: 2px solid white;
  border-radius: 50%;
  right: 25px;
  top: 0;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fae9d9;
  color: #9e6946;
  font-size: 11px;
  font-weight: 700;
}
.profile {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}
.content {
  max-width: 1430px;
  margin: auto;
  padding: 33px 42px 24px;
}
.greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.greeting h1 {
  font-size: 24px;
  letter-spacing: -0.9px;
  margin: 0 0 9px;
  font-weight: 800;
}
.greeting p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6d827a;
  font-size: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 8px 12px;
}
.status i {
  width: 6px;
  height: 6px;
  background: #48ac7c;
  border-radius: 50%;
}
.hero {
  background: #def1e7;
  border-radius: 16px;
  min-height: 259px;
  padding: 30px 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero:after {
  content: "";
  width: 370px;
  height: 370px;
  border: 1px solid #c7e4d7;
  border-radius: 50%;
  position: absolute;
  right: -90px;
  top: -80px;
  box-shadow:
    0 0 0 40px #ffffff18,
    0 0 0 80px #ffffff18;
}
.hero-copy {
  z-index: 2;
  position: relative;
}
.hero-label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: #cce7d9;
  border: 1px solid #bfdccc;
  padding: 6px 10px;
  border-radius: 5px;
  color: #307356;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-label svg {
  width: 12px;
  height: 12px;
}
.hero h2 {
  font-size: 31px;
  line-height: 1.35;
  letter-spacing: -1.1px;
  color: #164f40;
  margin: 12px 0;
}
.hero p {
  font-size: 11px;
  line-height: 1.8;
  color: #648678;
  margin: 0 0 19px;
}
.hero button {
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 11px 16px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
}
.hero button svg {
  width: 15px;
  height: 15px;
}
.hero-art {
  position: relative;
  width: 310px;
  height: 226px;
  z-index: 1;
  margin-right: 24px;
  flex-shrink: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  background: #c8e6d6;
  width: 204px;
  height: 204px;
  left: 65px;
  top: 16px;
}
.phone {
  position: absolute;
  left: 94px;
  top: 0;
  width: 118px;
  height: 220px;
  background: #fff;
  border: 6px solid #22584b;
  border-radius: 23px;
  transform: rotate(10deg);
  box-shadow: 10px 16px 20px #3d735326;
  padding: 19px 10px;
}
.phone:before {
  content: "";
  position: absolute;
  width: 42px;
  height: 7px;
  background: #22584b;
  top: 0;
  left: 32px;
  border-radius: 0 0 8px 8px;
}
.phone-logo {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.8px;
}
.phone-balance {
  background: #e9f4ec;
  border-radius: 6px;
  padding: 9px 6px;
  margin-top: 11px;
  font-size: 6px;
  color: #78968a;
}
.phone-balance b {
  display: block;
  color: #2c6654;
  font-size: 11px;
  margin-top: 4px;
}
.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 15px;
}
.phone-grid span {
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #eff7f2;
  color: #62947d;
}
.phone-grid svg {
  width: 12px;
  height: 12px;
}
.phone-line {
  height: 5px;
  border-radius: 3px;
  background: #e7efea;
  margin-top: 10px;
}
.phone-line.short {
  width: 60%;
  margin-top: 5px;
}
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid #eef5ed;
  border-radius: 10px;
  padding: 11px 14px;
  box-shadow: 0 8px 20px #28543812;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 4;
}
.float-card.payment {
  left: 1px;
  top: 57px;
  transform: rotate(-7deg);
}
.float-card.done {
  right: -25px;
  bottom: 23px;
  transform: rotate(-5deg);
}
.float-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #e9f7ee;
  border-radius: 50%;
  color: #409866;
}
.float-card small {
  font-size: 7px;
  color: #83978b;
  display: block;
  margin-bottom: 4px;
}
.float-card b {
  font-size: 10px;
  color: #38634e;
}
.spark {
  position: absolute;
  color: #e9ad54;
  font-size: 30px;
  right: 12px;
  top: 21px;
}
.coin {
  position: absolute;
  left: 35px;
  bottom: 7px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid #efc16a;
  background: #f8d991;
  color: #c29134;
  font-size: 14px;
  font-weight: 800;
  transform: rotate(-19deg);
}
.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 34px;
  display: flex;
  gap: 5px;
}
.hero-dots span {
  height: 4px;
  width: 5px;
  background: #b3d1c2;
  border-radius: 4px;
}
.hero-dots span:first-child {
  width: 18px;
  background: var(--green);
}
.trust-row {
  display: flex;
  gap: 27px;
  align-items: center;
  padding: 17px 5px 23px;
  color: #7a8983;
  font-size: 10px;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-row svg {
  width: 14px;
  height: 14px;
  color: #72988b;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 9px 0 17px;
}
.section-head h2 {
  font-size: 17px;
  letter-spacing: -0.4px;
  margin: 0;
}
.section-head p {
  font-size: 11px;
  color: var(--muted);
  margin: 6px 0 0;
}
.section-head > a,
.text-button {
  font-size: 11px;
  color: var(--green);
  background: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-head svg {
  width: 14px;
}
.services {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 11px;
  margin-bottom: 25px;
}
.service {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 18px 4px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: #63766e;
  transition: 0.18s;
}
.service:hover {
  transform: translateY(-3px);
  border-color: #a6cfc0;
}
.service.selected {
  background: #edf7f2;
  border-color: #76b5a1;
  color: var(--green);
  font-weight: 700;
}
.service-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: var(--tint, #edf5ef);
  color: var(--color, #408a69);
  border-radius: 12px;
}
.service-icon svg {
  width: 23px;
  height: 23px;
}
.service.selected:after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  background: var(--green);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.purchase-layout {
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 20px;
  align-items: start;
}
.panel {
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
}
.order-panel {
  padding: 23px;
}
.panel-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}
.panel-title > svg {
  color: var(--green);
  width: 20px;
}
.panel-title h3 {
  font-size: 14px;
  margin: 0;
  letter-spacing: -0.2px;
}
.panel-title small {
  margin-left: auto;
  font-size: 9px;
  color: var(--muted);
}
.step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 11px;
}
.step-label span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #eaf4ef;
  color: var(--green);
  font-size: 10px;
}
.input-wrap {
  position: relative;
}
.input-wrap input {
  width: 100%;
  height: 44px;
  border-radius: 7px;
  border: 1px solid #dce6e1;
  padding: 0 96px 0 13px;
  color: #2d4840;
  background: #fff;
  outline: none;
  font-size: 12px;
}
.input-wrap input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px #087f7510;
}
.input-wrap .provider {
  position: absolute;
  right: 12px;
  top: 15px;
  font-size: 10px;
  color: #df4f56;
  font-weight: 800;
  font-style: italic;
}
.hint {
  font-size: 9px;
  color: #98a39e;
  margin: 8px 0 21px;
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amount {
  background: #fff;
  border: 1px solid #e4ebe7;
  border-radius: 8px;
  text-align: left;
  padding: 13px;
  position: relative;
  min-height: 71px;
  color: #344c43;
}
.amount b {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: 700;
}
.amount small {
  font-size: 9px;
  color: #8b9790;
}
.amount.selected {
  border-color: var(--green);
  background: #f0f8f4;
}
.amount.selected:after {
  content: "✓";
  position: absolute;
  right: 9px;
  top: 9px;
  color: var(--green);
  font-size: 11px;
}
.note {
  margin-top: 18px;
  padding: 11px 12px;
  border-radius: 6px;
  background: #f7f9f7;
  color: #8a978f;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
}
.note svg {
  width: 13px;
  height: 13px;
}
.summary {
  padding: 22px;
}
.summary h3 {
  font-size: 13px;
  margin: 0 0 20px;
}
.summary-product {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed #e0e8e3;
}
.summary-product .service-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}
.summary-product b {
  font-size: 11px;
  display: block;
  margin-bottom: 5px;
}
.summary-product small {
  font-size: 10px;
  color: var(--muted);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #8a978f;
  margin-top: 16px;
}
.summary-line strong {
  font-weight: 500;
  color: #475e52;
}
.summary-total {
  border-top: 1px dashed #e0e8e3;
  padding-top: 17px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.summary-total strong {
  color: var(--green);
  font-size: 19px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}
.primary {
  background: var(--green);
  color: #fff;
  border-radius: 7px;
  padding: 13px 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 20px;
}
.primary:hover {
  background: #056e65;
}
.primary svg {
  width: 15px;
  height: 15px;
}
.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  gap: 4px;
  color: #9aa69f;
  margin-top: 12px;
}
.secure-note svg {
  width: 11px;
  height: 11px;
}
.promo-section {
  margin-top: 27px;
}
.promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo {
  border-radius: 11px;
  min-height: 116px;
  position: relative;
  padding: 21px 23px;
  overflow: hidden;
  border: 1px solid #f0e5d5;
  background: #fff3e3;
}
.promo:nth-child(2) {
  background: #edf1fe;
  border-color: #e2e6f6;
}
.promo small {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #ae814c;
  font-weight: 700;
}
.promo:nth-child(2) small {
  color: #7a82b0;
}
.promo h3 {
  font-size: 15px;
  margin: 8px 0;
  color: #655035;
  letter-spacing: -0.3px;
}
.promo:nth-child(2) h3 {
  color: #535b87;
}
.promo p {
  font-size: 10px;
  margin: 0;
  color: #a08e73;
}
.promo-art {
  position: absolute;
  right: 25px;
  top: 24px;
  transform: rotate(-13deg);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -6px;
  color: #f3bc6e;
  text-shadow: 3px 4px 0 #e3a95433;
}
.promo-art svg {
  height: 61px;
  width: 61px;
  color: #8a96d3;
  stroke-width: 1.3;
}
.footer {
  margin-top: 29px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #9aa69f;
  font-size: 9px;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: #0e302b66;
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop[hidden] {
  display: none;
}
.modal {
  background: #fff;
  max-width: 470px;
  width: 100%;
  border-radius: 18px;
  padding: 28px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 100px #12372b33;
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal h2 {
  font-size: 21px;
  margin: 0;
}
.close {
  background: #f0f5f2;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #789185;
  font-size: 20px;
}
.modal-desc {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.checkout-details {
  padding: 1px 16px 16px;
  background: #f5f9f6;
  border-radius: 9px;
  margin: 20px 0;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  margin: 9px 0;
  cursor: pointer;
}
.payment-option:has(input:checked) {
  border-color: var(--green);
  background: #f2f9f5;
}
.payment-option input {
  accent-color: var(--green);
}
.payment-option b {
  font-size: 12px;
}
.payment-option small {
  display: block;
  font-size: 10px;
  color: #8c9a92;
  margin-top: 4px;
}
.qris-panel {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 18px 0;
}
.qris-frame {
  width: min(260px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}
.qris-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.qris-missing {
  width: min(320px, 100%);
  margin: 0;
  text-align: center;
}
.payment-badge {
  margin-left: auto;
  font-weight: 800;
  color: var(--green);
  font-size: 11px;
}
.error {
  color: #cf4848;
  font-size: 11px;
  margin: 10px 0 0;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #e2f3e9;
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 15px auto;
}
.success-icon svg {
  width: 32px;
  height: 32px;
}
.center {
  text-align: center;
}
.mobile-brand {
  display: none;
}
.history-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.history-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 6px;
}
.history-item strong {
  font-size: 11px;
  color: var(--green);
}
@media (min-width: 1450px) {
  .content {
    padding-top: 40px;
  }
  .hero {
    min-height: 285px;
  }
  .hero h2 {
    font-size: 36px;
  }
  .hero-art {
    margin-right: 65px;
  }
  .services {
    gap: 16px;
  }
  .purchase-layout {
    grid-template-columns: 1fr 330px;
  }
  .amount {
    min-height: 79px;
  }
}
@media (max-width: 1150px) {
  aside {
    width: 196px;
    padding: 30px 15px;
  }
  main {
    margin-left: 196px;
  }
  header {
    padding: 0 27px;
  }
  .content {
    padding: 27px;
  }
  .purchase-layout {
    grid-template-columns: 1fr 250px;
  }
  .hero-art {
    margin-right: 0;
    width: 245px;
    transform: scale(0.88);
    transform-origin: right center;
  }
  .hero {
    padding: 27px;
  }
  .hero h2 {
    font-size: 28px;
  }
  .service {
    font-size: 9px;
  }
  .services {
    gap: 7px;
  }
  .order-panel {
    padding: 18px;
  }
  .summary {
    padding: 18px;
  }
  .security {
    display: none;
  }
}
@media (max-width: 900px) {
  aside {
    width: 78px;
    padding: 27px 12px;
  }
  .brand > span:last-child,
  .nav-link > span,
  .eyebrow,
  .help-card,
  .sidebar-copy {
    display: none;
  }
  aside .brand {
    justify-content: center;
  }
  .nav-link {
    justify-content: center;
    padding: 14px;
    margin-top: 8px;
  }
  .nav-link .tag {
    display: none;
  }
  nav {
    margin-top: 35px;
  }
  main {
    margin-left: 78px;
  }
  .purchase-layout {
    grid-template-columns: 1fr 245px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .hero-art {
    width: 215px;
    transform: scale(0.8);
  }
  .hero p {
    max-width: 245px;
  }
  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-art {
    right: 14px;
    opacity: 0.5;
  }
  .promos .promo {
    padding: 20px 16px;
  }
  .promos h3 {
    font-size: 13px;
  }
  .hero {
    min-height: 245px;
  }
  .trust-row {
    gap: 16px;
    font-size: 9px;
  }
}
@media (max-width: 650px) {
  aside {
    display: none;
  }
  main {
    margin-left: 0;
  }
  header {
    height: 70px;
    padding: 0 20px;
  }
  .breadcrumb {
    display: none;
  }
  .mobile-brand {
    display: flex;
    font-size: 23px;
  }
  .mobile-brand .brand-mark {
    width: 29px;
    height: 31px;
  }
  .header-right {
    gap: 13px;
  }
  .notification {
    padding-right: 13px;
  }
  .notification:after {
    right: 15px;
  }
  .profile > span {
    display: none;
  }
  .content {
    padding: 24px 18px;
  }
  .greeting h1 {
    font-size: 21px;
  }
  .greeting p {
    font-size: 11px;
  }
  .status {
    font-size: 8px;
    padding: 6px 8px;
  }
  .hero {
    padding: 24px 21px;
    min-height: 240px;
  }
  .hero h2 {
    font-size: 25px;
  }
  .hero p {
    font-size: 10px;
    max-width: 190px;
  }
  .hero-art {
    position: absolute;
    right: -40px;
    top: 30px;
    transform: scale(0.63);
    width: 270px;
    opacity: 0.8;
  }
  .hero-copy {
    max-width: 220px;
  }
  .hero-label {
    font-size: 8px;
  }
  .hero-dots {
    left: 22px;
  }
  .trust-row {
    justify-content: space-between;
    gap: 7px;
    font-size: 8px;
    padding-top: 16px;
  }
  .trust-row svg {
    width: 12px;
  }
  .trust-row span {
    gap: 4px;
  }
  .services {
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
  }
  .service {
    padding: 15px 4px 12px;
    font-size: 10px;
  }
  .purchase-layout {
    grid-template-columns: 1fr;
  }
  .amount-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .summary {
    padding: 22px;
  }
  .promos {
    grid-template-columns: 1fr;
  }
  .promo {
    min-height: 110px;
  }
  .promo-art {
    opacity: 1;
    right: 30px;
  }
  .footer {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 8px;
  }
  .section-head h2 {
    font-size: 16px;
  }
  .section-head p {
    font-size: 10px;
  }
  .modal {
    padding: 23px;
  }
  .hero-art .float-card.done {
    right: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
html {
  scroll-behavior: smooth;
}

[data-style="utility-1"] {
  font-size: 22px;
}
[data-style="utility-2"] {
  color: var(--green);
}
[data-style="utility-3"] {
  font-size: 15px;
}
[data-style="utility-4"] {
  font-size: 9px;
}
[data-style="utility-5"] {
  font-size: 14px;
}
[data-style="utility-6"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tone-pulsa {
  --color: #42896d;
  --tint: #e8f3eb;
}
.tone-data {
  --color: #6392c8;
  --tint: #edf4fc;
}
.tone-listrik {
  --color: #d6a644;
  --tint: #fff7e3;
}
.tone-pdam {
  --color: #6197c9;
  --tint: #edf5fd;
}
.tone-wallet {
  --color: #a380c3;
  --tint: #f5eefa;
}
.tone-game {
  --color: #d38663;
  --tint: #fff0e8;
}
.tone-internet {
  --color: #699894;
  --tint: #ebf5f3;
}
.tone-bpjs {
  --color: #769970;
  --tint: #f0f6eb;
}

/* Shared static navigation and account pages. */
body {
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
h1,
h2,
h3,
.brand {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
.modal-open {
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 200;
  padding: 12px 18px;
  background: #fff;
  color: var(--green);
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.demo-banner {
  margin: 0;
  padding: 9px 18px;
  text-align: center;
  background: #eff6f2;
  color: #526e60;
  font-size: 11px;
  line-height: 1.6;
}
.account-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-link {
  color: var(--green);
  background: transparent;
  font-weight: 700;
  font-size: 12px;
}
.register-link {
  background: var(--green);
  color: white;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}
.account-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}
.demo-chip {
  background: #fff0e4;
  color: #915b27;
  padding: 4px 7px;
  border-radius: 5px;
  font-size: 10px;
}
.auth-page {
  min-height: 100vh;
  background: #f7faf8;
}
.auth-header {
  height: 90px;
  padding: 0 6vw;
  background: transparent;
  border: 0;
}
.auth-header .back-link {
  font-size: 12px;
  color: #6d8278;
}
.auth-main {
  margin: 0 auto;
  padding: 24px 6vw 50px;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9%;
}
.auth-story {
  position: relative;
  background: #deeee4;
  padding: 50px 40px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-story h1 {
  color: #174d3c;
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 1.25;
  letter-spacing: -1.5px;
  margin: 23px 0 18px;
}
.auth-story > p {
  color: #60816f;
  line-height: 1.9;
  max-width: 300px;
  font-size: 13px;
}
.auth-story .hero-label {
  align-self: flex-start;
}
.auth-illustration {
  display: grid;
  grid-template-columns: repeat(3, 65px);
  gap: 14px;
  margin: 30px 0;
  transform: rotate(-7deg);
}
.auth-illustration span {
  border-radius: 17px;
  background: #fafffc;
  height: 65px;
  display: grid;
  place-items: center;
  color: #47826a;
  font-size: 25px;
  box-shadow: 0 8px 15px #184d3c08;
}
.auth-illustration span:nth-child(2n) {
  background: #f9efd9;
  color: #b08b48;
  transform: translateY(10px);
}
.auth-story small {
  color: #648470;
  font-size: 11px;
  margin-top: 20px;
}
.auth-card {
  width: 100%;
  max-width: 410px;
  justify-self: center;
}
.auth-card h2 {
  font-size: 29px;
  letter-spacing: -1px;
  margin: 0 0 10px;
}
.auth-intro {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}
.auth-notice {
  font-size: 11px;
  line-height: 1.7;
  color: #5c7867;
  background: #eaf4ed;
  border: 1px solid #dceadf;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 23px;
}
.form-field {
  margin-bottom: 17px;
}
.form-field > label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field input {
  background: #fff;
  color: #294838;
  width: 100%;
  border: 1px solid #dce5df;
  border-radius: 8px;
  height: 46px;
  padding: 0 13px;
  outline: none;
}
.form-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px #087f7510;
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 100px;
}
.password-field button {
  position: absolute;
  right: 12px;
  top: 0;
  height: 46px;
  background: none;
  color: var(--green);
  font-size: 11px;
}
.field-help {
  color: #829388;
  font-size: 10px;
  margin: 6px 0 0;
}
.checkbox-label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.7;
  color: #718579;
}
.checkbox-label input {
  accent-color: var(--green);
  margin-top: 3px;
}
.auth-card .primary {
  height: 46px;
  font-size: 13px;
}
.secondary {
  height: 44px;
  width: 100%;
  background: #fff;
  border: 1px solid #dce5df;
  border-radius: 8px;
  color: #466951;
  font-weight: 600;
  font-size: 12px;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #a1ada5;
  font-size: 11px;
  margin: 20px 0;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: #e0e9e3;
  flex: 1;
}
.auth-switch {
  text-align: center;
  font-size: 12px;
  color: #819086;
  margin-top: 24px;
}
.auth-switch a {
  color: var(--green);
  font-weight: 700;
}
.auth-footer {
  text-align: center;
  font-size: 10px;
  color: #92a196;
  padding: 0 20px 24px;
}
.primary:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (max-width: 750px) {
  .auth-main {
    grid-template-columns: 1fr;
    padding: 20px 24px 38px;
  }
  .auth-story {
    display: none;
  }
  .auth-header {
    padding: 0 24px;
    height: 80px;
  }
  .auth-card {
    max-width: 430px;
  }
  .account-actions {
    gap: 8px;
  }
  .account-name {
    max-width: 70px;
  }
  .demo-chip {
    display: none;
  }
}

/* Longer FranksCell wordmark fits the desktop sidebar and mobile header. */
aside .brand {
  font-size: 24px;
  gap: 8px;
}
.phone-logo {
  font-size: 12px;
  letter-spacing: -0.6px;
}
@media (min-width: 901px) and (max-width: 1150px) {
  aside .brand {
    font-size: 21px;
    gap: 6px;
  }
  aside .brand-mark {
    width: 30px;
    height: 34px;
  }
}

.order-id {
  overflow-wrap: anywhere;
  max-width: 65%;
  text-align: right;
}
.history-button {
  width: 100%;
  background: transparent;
  color: inherit;
  text-align: left;
  gap: 15px;
}
.history-button small {
  overflow-wrap: anywhere;
}
.payment-history-link {
  margin: 20px auto 0;
}
