@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700;1,800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }

:root {
  --orange: #e85d20;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #f5f5f5;
  --border: #e8e8e8;
  --white: #ffffff;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 20;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo em {
  font-style: normal;
  color: var(--orange);
}

.nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 3px 9px;
  border-radius: 4px;
}

/* HERO */
.hero-img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* TITLE BLOCK */
.title-block {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
}

.tb-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.tb-h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.tb-h1 em {
  font-style: italic;
  color: var(--orange);
}

.tb-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tb-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  background: var(--light);
  padding: 5px 11px;
  border-radius: 4px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-n {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.8px;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-n span { color: var(--orange); }

.stat-l {
  font-size: 10px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* PRICE BLOCK */
.price-block {
  padding: 20px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pb-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.pb-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pb-left {}

.pb-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.pb-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}

.pb-right {
  text-align: right;
  padding-top: 4px;
}

.pb-was {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.pb-save {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.pb-ongkir {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 10px 14px;
}

.pb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}

.pb-ongkir-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.pb-ongkir-text strong {
  color: #6ee7a0;
}

/* CTA */
.cta-wrap {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.2px;
}

.cta-arrow {
  font-size: 20px;
  font-weight: 400;
}

/* IMG STRIP */
.img-strip {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.img-strip img {
  flex: 1;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* SECTIONS */
.section {
  padding: 28px 20px;
  border-bottom: 1px solid var(--border);
}

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.sec-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}

.sec-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* USP LIST */
.usp-list { display: flex; flex-direction: column; gap: 0; }

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.usp-item:last-child { border-bottom: none; padding-bottom: 0; }
.usp-item:first-child { padding-top: 0; }

.usp-idx {
  font-size: 28px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: right;
  letter-spacing: -1px;
}

.usp-body {}

.usp-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.usp-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.55;
}

/* MATERIAL */
.mat-card {
  background: var(--light);
  border-radius: 8px;
  padding: 18px;
  border-left: 3px solid var(--orange);
}

.mat-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.mat-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.6;
}

/* HOW */
.how-list { display: flex; flex-direction: column; gap: 20px; }

.how-item { display: flex; gap: 16px; align-items: flex-start; }

.how-n {
  width: 32px; height: 32px;
  border: 2px solid var(--dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}

.how-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.how-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.5;
}

/* TESTI */
.testi-list { display: flex; flex-direction: column; gap: 12px; }

.testi-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.testi-info {}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.testi-loc {
  font-size: 11px;
  color: #aaa;
  font-weight: 500;
  margin-top: 1px;
}

.testi-stars {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 1px;
}

.testi-text {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}

/* SPEC */
.spec-list { display: flex; flex-direction: column; }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.spec-row:last-child { border-bottom: none; }

.spec-k {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.spec-v {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-align: right;
}

/* GUARANTEE */
.gua {
  padding: 20px;
  background: #f0faf4;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gua-check {
  width: 36px; height: 36px;
  background: #1a9a50;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 18px;
}

.gua-title {
  font-size: 14px;
  font-weight: 800;
  color: #1a4a30;
  margin-bottom: 3px;
}

.gua-desc {
  font-size: 12px;
  font-weight: 500;
  color: #4a7060;
  line-height: 1.5;
}

/* FORM */
.form-sec { padding: 28px 20px 40px; }

.form-hd { margin-bottom: 24px; }

.form-hd h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}

.form-hd p {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
}

.form-hd p strong { color: #1a9a50; }

.f-lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.variant-grid.seven-col {
  grid-template-columns: repeat(4, 1fr);
}

.v-btn {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 4px 9px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: all 0.1s;
  user-select: none;
}

.v-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  margin: 0 auto 6px;
  border: 1.5px solid rgba(0,0,0,0.1);
}

.v-name {
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
}

.v-btn.selected { border-color: var(--dark); background: var(--light); }
.v-btn.selected .v-name { color: var(--dark); }

.line { height: 1px; background: var(--border); margin: 20px 0; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.1s;
}

.field input:focus,
.field textarea:focus { border-color: var(--dark); }
.field textarea { resize: none; height: 80px; }

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.pay-btn {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 12px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.1s;
  user-select: none;
}

.pay-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

.pay-desc {
  font-size: 11px;
  color: #aaa;
  font-weight: 500;
}

.pay-btn.selected { border-color: var(--dark); background: var(--light); }

.summary {
  background: var(--light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 10px;
}

.sum-row.green { color: #1a9a50; font-weight: 700; }

.sum-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.submit-btn {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 17px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: background 0.1s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submit-btn span { opacity: 0.5; font-weight: 400; }
.submit-btn:active { background: var(--orange); }

.trust-row {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.trust-item {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
  border-right: 1px solid var(--border);
  letter-spacing: 0.2px;
}

.trust-item:last-child { border-right: none; }

footer {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.toast {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 6px;
  z-index: 100;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* TRANSFORM SECTION */
.transform-section {
  padding: 28px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.ts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.ts-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.transform-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tv-bag-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tv-bag {
  width: 140px;
  height: 160px;
}

.tv-bag-label,
.tv-crib-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.tv-arrows {
  width: 240px;
  margin: 8px 0;
}

.tv-arrows-up {
  margin-top: 8px;
}

.tv-crib-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.tv-crib {
  width: 100%;
  max-width: 360px;
  min-height: 120px;
}

.tv-expand-arrows {
  width: 100%;
  max-width: 360px;
  margin: 4px 0;
}

.ts-caption {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.6;
  text-align: center;
  padding: 0 8px;
}

/* SPEC VISUAL */
.spec-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.sv-item:last-child { border-bottom: none; }
.sv-item:first-child { padding-top: 0; }

.sv-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  padding: 6px;
}

.sv-icon svg {
  width: 100%;
  height: 100%;
}

.sv-body { flex: 1; }

.sv-key {
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.sv-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.sv-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.svc {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.sv-color-labels {
  font-size: 12px;
  color: var(--mid);
  font-weight: 600;
}

/* USP GRID VISUAL */
.usp-grid-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ugv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ugv-illo {
  width: 100%;
  aspect-ratio: 10/7;
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.ugv-illo svg {
  width: 100%;
  height: 100%;
}

.ugv-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.2px;
}

.ugv-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.5;
}

/* TESTI UPGRADE */
.testi-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.ts-big-rating {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -2px;
  line-height: 1;
  flex-shrink: 0;
}

.ts-right { flex: 1; }

.ts-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.ts-bar-row .ts-bar-fill {
  display: block;
  height: 6px;
  background: var(--orange);
  border-radius: 3px;
  flex: 1;
  max-width: calc(100% - 28px);
}

.ts-bar-n {
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}

.ts-total {
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
  margin-top: 6px;
}

.testi-list { display: flex; flex-direction: column; gap: 10px; }

.testi-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: var(--white);
}

.tc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tc-ava {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.tc-meta { flex: 1; }

.tc-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1px;
}

.tc-loc {
  font-size: 11px;
  color: #aaa;
  font-weight: 500;
}

.tc-stars {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.tc-text {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 1.65;
  margin-bottom: 10px;
  font-style: italic;
}

.tc-tag {
  font-size: 11px;
  font-weight: 700;
  color: #1a9a50;
  letter-spacing: 0.3px;
}

/* PROBLEM SECTION */
.problem-section { background: var(--white); }

.problem-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.prob-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff5f5;
  border: 1px solid #ffe0e0;
  border-radius: 10px;
  padding: 14px;
}

.prob-illo {
  width: 72px;
  height: 54px;
  flex-shrink: 0;
}

.prob-illo svg { width: 100%; height: 100%; }

.prob-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 3px;
}

.prob-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.5;
}

.prob-solve {
  background: var(--dark);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.ps-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.ps-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* COMPARISON TABLE */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.ct-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  background: var(--dark);
  padding: 10px 14px;
}

.ct-h-empty {}

.ct-h-lc {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  text-align: center;
}

.ct-h-other {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.ct-last { border-bottom: none; }

.ct-row:nth-child(even) { background: var(--light); }

.ct-feature {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.ct-lc, .ct-other {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.ct-yes { color: #1a9a50; }
.ct-no { color: #e85d20; }
.ct-maybe { color: #f0a020; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.faq-a {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.6;
}

/* URGENCY */
.urgency-block {
  background: var(--dark);
  padding: 24px 20px;
  border-top: 3px solid var(--orange);
}

.ub-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.ub-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ub-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sb-price {}

.sb-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.sb-sub {
  font-size: 11px;
  font-weight: 600;
  color: #1a9a50;
  margin-top: 2px;
}

.sb-btn {
  background: var(--dark);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.1s;
}

.sb-btn:active { background: var(--orange); }

/* Beri ruang di bawah page biar tidak ketutup sticky bar */
.page { padding-bottom: 72px; }

/* SHEET OVERLAY */
.sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 50;
  opacity: 0;
  transition: opacity 0.25s;
}

.sheet-overlay.open {
  display: block;
  opacity: 1;
}

/* BOTTOM SHEET */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 430px;
  background: var(--white);
  border-radius: 18px 18px 0 0;
  z-index: 60;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.bottom-sheet.open {
  transform: translateX(-50%) translateY(0);
}

.bs-handle {
  width: 36px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.bs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.bs-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.bs-close {
  width: 28px;
  height: 28px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  font-size: 13px;
  color: var(--mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.bs-body {
  overflow-y: auto;
  padding: 16px 20px 0;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.bs-note {
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 16px;
}

.bs-note strong { color: #1a9a50; }

/* URGENCY update - hapus cta di dalamnya */
.urgency-block {
  background: var(--dark);
  padding: 20px;
  border-top: 3px solid var(--orange);
}

.ub-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.ub-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
