/* ============================================================
   RR BILLING PRO — Website Promosi
   Tema gelap, aksen ungu sesuai branding aplikasi
   ============================================================ */
:root {
  --bg: #0B0F1A;
  --bg-2: #101627;
  --panel: #151D31;
  --panel-2: #1B2540;
  --line: #243150;
  --accent: #7C3AED;
  --accent-2: #A855F7;
  --green: #22C55E;
  --red: #EF4444;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; }
.brand img { height: 34px; width: auto; }
.brand .badge {
  font-size: 10px; background: var(--accent); color: #fff;
  padding: 2px 8px; border-radius: 999px; letter-spacing: 1px;
}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 14px; position: relative; }
.nav-links a:hover { color: var(--accent-2); text-decoration: none; }
.nav-links .btn { color: #fff; padding: 9px 18px; font-size: 13px; }
.nav-links .badge { vertical-align: middle; }
.nav-links .badge.hot {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #e53935;
  color: #fff; font-weight: 700; font-size: 9px;
  padding: 2px 7px; border-radius: 999px; letter-spacing: .5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(229,57,53,.45);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 10px;
  font-weight: 600; font-size: 15px; border: 0; cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 6px 22px rgba(124, 58, 237, .35);
}
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-green { background: #16A34A; color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 17px; }

/* ---------- HERO ---------- */
.hero {
  padding: 90px 0 70px; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(124,58,237,.28), transparent 60%),
    radial-gradient(700px 380px at 0% 110%, rgba(168,85,247,.14), transparent 60%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.15; margin-bottom: 18px; }
.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent-2), #E879F9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { color: var(--muted); font-size: 18px; margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; }
.stat b { display: block; font-size: 26px; color: #fff; }
.stat span { color: var(--muted); font-size: 13px; }

.hero-visual {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.hero-visual .v-head { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 13px; color: var(--muted); }
.slot { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; margin-bottom: 10px; background: var(--panel-2); border: 1px solid var(--line); }
.slot .tv { width: 90px; font-size: 12px; color: var(--muted); }
.slot .bar { flex: 1; height: 8px; border-radius: 99px; background: var(--line); overflow: hidden; }
.slot .bar i { display: block; height: 100%; border-radius: 99px; }
.slot .meta { font-size: 12px; color: var(--muted); text-align: right; }
.slot .meta b { color: var(--text); }

/* ---------- SECTIONS ---------- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 32px; margin-bottom: 10px; }
.section-head p { color: var(--muted); }

/* ---------- FITUR ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .15s, border-color .15s;
}
.feat:hover { transform: translateY(-4px); border-color: var(--accent); }
.feat .icon {
  height: 110px;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.feat .icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat .icon::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 26, 0) 40%, rgba(11, 15, 26, .55));
}
.feat:hover .icon img { transform: scale(1.08); }
.feat .icon img { transition: transform .5s cubic-bezier(.2, .8, .2, 1); }
.feat h3 { font-size: 17px; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 14px; }

/* ---------- VIDEO ---------- */
.video-wrap { max-width: 820px; margin: 0 auto; }
.video-embed { position: relative; padding-top: 56.25%; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, #131A2B, #1B2540); color: var(--muted); text-align: center; padding: 20px;
}
.video-placeholder .big { font-size: 52px; }

/* ---------- HARGA ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; position: relative;
}
.plan.hot { border-color: var(--accent); box-shadow: 0 14px 44px rgba(124,58,237,.25); }
.plan .ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 99px; letter-spacing: 1px;
}
.plan h3 { font-size: 17px; }
.plan .price { font-size: 34px; font-weight: 800; margin: 12px 0 4px; }
.plan .price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan ul { list-style: none; margin: 18px 0 24px; flex: 1; }
.plan li { color: var(--muted); font-size: 14px; padding: 5px 0; }
.plan li:before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ---------- TABEL DOWNLOAD ---------- */
.dl-table { width: 100%; border-collapse: collapse; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dl-table th, .dl-table td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 14px; }
.dl-table th { background: var(--panel-2); color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
.dl-table tr:last-child td { border-bottom: 0; }
.dl-table td .fname { font-weight: 600; color: #fff; }
.dl-table .size { color: var(--muted); white-space: nowrap; }
.ver-badge {
  display: inline-block; background: rgba(34,197,94,.14); color: var(--green);
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}

/* ---------- KATEGORI DOWNLOAD ---------- */
.dl-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.dl-cat { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; cursor: pointer; transition: border-color .18s ease, transform .18s ease; }
.dl-cat:hover { border-color: var(--accent); }
.dl-cat.open { border-color: var(--accent-2); }
.dl-cat .cat-ico {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.16); margin-bottom: 14px;
}
.dl-cat .cat-ico img { width: 30px; height: 30px; object-fit: contain; }
.dl-cat h3 { font-size: 16px; margin-bottom: 4px; }
.dl-cat p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.dl-cat .cat-files { width: 100%; display: none; padding-top: 18px; margin-top: 4px; border-top: 1px dashed var(--line); }
.dl-cat.open .cat-files { display: block; }
.dl-cat .cat-files .dl-table { width: 100%; margin: 0 0 16px; }
.dl-cat .cat-files .card p { margin-bottom: 4px; }
.dl-cat .cat-btn { margin-top: 14px; }

/* ---------- KONTAK ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.wa-cta { text-align: center; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 24px; margin-top: 26px; }
.wa-cta h3 { margin-bottom: 10px; }
input, textarea, select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 12px; font-size: 14px; font-family: inherit;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
select option { background: var(--bg-2); color: var(--text); }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--muted); font-size: 13px; }
.foot-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.helptext { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-top: 30px; }
.helptext ol { margin: 12px 0 0 20px; color: var(--muted); }
.helptext li { padding: 4px 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-links {
    display: flex; position: static; flex-direction: row; flex-wrap: wrap;
    width: 100%; gap: 8px 18px; padding: 12px 0 2px;
    background: transparent; border: 0;
  }
  .nav-links .btn { margin-left: auto; }
}
@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr 1fr; }
  .dl-cats { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
@media (max-width: 560px) {
  .features, .plans { grid-template-columns: 1fr; }
  .dl-table { display: block; overflow-x: auto; }
}
/* ===== Lightbox zoom gambar fitur ===== */
.feat .icon img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8, 8, 20, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 94vw; max-height: 88vh;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.4); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1.2, 0.36, 1), opacity 0.25s ease;
}
.lightbox.open img { transform: scale(1); opacity: 1; }
.lightbox .lb-close {
  position: absolute; top: 18px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08);
  color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
@media (max-width: 640px) {
  .lightbox img { max-width: 96vw; max-height: 82vh; }
}
.lightbox .lb-figure {
  margin: 0; display: flex; flex-direction: column; align-items: center;
  max-width: 94vw; max-height: 92vh;
}
.lightbox .lb-figure img {
  max-width: 94vw; max-height: 74vh; display: block;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.4); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1.2, 0.36, 1), opacity 0.25s ease;
}
.lightbox.open .lb-figure img { transform: scale(1); opacity: 1; }
.lightbox .lb-caption {
  margin-top: 16px; text-align: center; max-width: 640px;
  transform: translateY(14px); opacity: 0;
  transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}
.lightbox.open .lb-caption { transform: translateY(0); opacity: 1; }
.lightbox .lb-caption h3 {
  margin: 0 0 6px; font-size: 20px; color: var(--accent, #A855F7);
}
.lightbox .lb-caption p {
  margin: 0; font-size: 14px; line-height: 1.6; color: #c9c9dd;
}

/* ===== Demo slider (hero beranda) ===== */
#promoSlider { min-width: 0; }
#promoSlider .ds-stage {
  position: relative; height: 380px; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--line);
  background: #0b0f1a;
}
#promoSlider .slides, #promoSlider .slide {
  position: absolute; inset: 0; margin: 0; padding: 0;
}
#promoSlider .slide {
  background-size: cover; background-position: center center;
  opacity: 0; visibility: hidden; border-radius: 12px;
}
#promoSlider .slide.active { opacity: 1; visibility: visible; }
#promoSlider .slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
#promoSlider .content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  padding: 40px 16px 14px;
  background: linear-gradient(180deg, rgba(11,15,26,0) 0%, rgba(11,15,26,.85) 78%);
  pointer-events: none; text-align: left;
}
#promoSlider .content .tagline {
  display: inline-block; font-size: 10px; letter-spacing: 2px;
  color: #E879F9; font-weight: 700; margin-bottom: 5px;
}
#promoSlider .content h4 {
  margin: 0 0 5px; font-size: 17px; line-height: 1.3; color: #fff;
}
#promoSlider .content p { margin: 0 0 8px; font-size: 12px; line-height: 1.55; color: #b7b7cf;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
#promoSlider .cta-row { display: flex; align-items: center; gap: 12px; }
#promoSlider .btn-explore {
  pointer-events: auto; display: inline-block; padding: 7px 16px;
  border-radius: 99px; font-size: 12px; font-weight: 700;
  background: var(--accent, #7C3AED); color: #fff; text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
#promoSlider .btn-explore:hover { background: var(--accent-2, #A855F7); transform: translateY(-2px); }
#promoSlider .counter {
  pointer-events: none; font-size: 12px; color: #e6e6f5; font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
#promoSlider .cards-wrap {
  position: relative; display: flex; overflow: hidden;
  height: 0; margin: 0; padding: 0; visibility: hidden;
}
#promoSlider .cards-track { display: flex; gap: 8px; will-change: transform; }
#promoSlider .card {
  position: relative; flex: 0 0 96px; width: 96px; height: 64px;
  border-radius: 10px; cursor: pointer; overflow: hidden;
  border: 1px solid var(--line); background: var(--panel-2);
}
#promoSlider .card .thumb,
#promoSlider .card:not(.video)::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--thumb); background-size: cover; background-position: center;
}
#promoSlider .card .label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 5px 4px; font-size: 10px; line-height: 1.25; color: #eee;
  background: linear-gradient(180deg, rgba(11,15,26,0) 0%, rgba(11,15,26,.88) 55%);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#promoSlider .card .play {
  position: absolute; inset: 0; z-index: 3; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 16px;
  background: rgba(11,15,26,.45);
}
#promoSlider .card .progress {
  position: absolute; left: 0; bottom: 0; z-index: 4;
  width: 100%; height: 3px; background: #E879F9; transform-origin: left;
}
#promoSlider .card:hover { border-color: #E879F9; }
#promoSlider .hint {
  margin-top: 6px; font-size: 11px; color: var(--muted, #8b8bb0); text-align: center;
}
@media (max-width: 720px) {
  #promoSlider .ds-stage { height: 300px; }
}
@media (max-width: 560px) {
  #promoSlider .ds-stage { height: 270px; }
}
#promoSlider .hint { display: none; }

/* ===== Booking: rapi di layar kecil ===== */
@media (max-width: 560px) {
  #stepForm div[style*="display:flex"] { flex-wrap: wrap; }
  #stepForm div[style*="flex:2"] { flex: 1 1 100%; width: 100%; }
  #stepForm div[style*="flex:1"] { flex: 1 1 100%; width: 100%; }
  #stepForm select[style*="width:130px"],
  #stepForm input[style*="width:90px"] { width: auto; flex: 1 1 0; min-width: 0; }
  #stepForm .slot .tv { width: auto; min-width: 56px; }
}

/* ===== Header rental (halaman booking) ===== */
.rental-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.rental-nav .nav-inner { justify-content: center; }

.rental-nav .brand { display: inline-flex; align-items: center; gap: 10px; }

.rental-nav .brand img.brand-logo { height: 108px; max-width: 300px; object-fit: contain; border-radius: 14px; background: rgba(255,255,255,.08); padding: 4px; }
.rental-nav .brand { font-size: 18px; }
@media (max-width: 560px) {
  .rental-nav .brand { font-size: 15px; }
  .rental-nav .brand img.brand-logo { height: 72px; max-width: 200px; }
}

/* ===== Header rental: nama + info ===== */
.rental-nav .brand-col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.rental-nav .nav-inner { flex-direction: column; gap: 3px; padding: 14px 20px 12px; }
.rental-nav .rental-meta { font-size: 12px; color: var(--muted); }
.rental-nav .brand-addr { font-size: 11px; color: var(--muted); font-weight: 500; }
.rental-nav .brand-col .rental-nama { font-size: 16px; font-weight: 800; color: var(--text); }
@media (max-width: 560px) {
  .rental-nav .brand { font-size: 15px; }
  .rental-nav .rental-meta { font-size: 11px; }
  .rental-nav .brand-addr { font-size: 10px; }
  .rental-nav .brand-col .rental-nama { font-size: 13px; }
}

/* ============================================================
   POLISH V2 — modernisasi tampilan
   ============================================================ */
@charset "UTF-8";

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  letter-spacing: 0.1px;
}
h1, h2, h3, h4 { letter-spacing: -0.2px; }

.container { max-width: 1140px; }

/* Nav */
.nav, .rental-nav { backdrop-filter: blur(12px); }
.brand { font-size: 21px; }
.nav-links a { font-weight: 500; }
.nav-links a:hover { text-decoration: none; }

/* Tombol */
.btn { border-radius: 12px; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(124,58,237,.5); }
.btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* Hero */
.hero { padding: 104px 0 84px; }
.hero h1 { font-size: 47px; }
.hero p.lead { font-size: 18.5px; }
.stat b { font-size: 28px; }

/* Slider hero: lebih besar & premium */
#promoSlider .ds-stage {
  height: 420px; border-radius: 22px;
  border: 1px solid rgba(124,58,237,.35);
  box-shadow: 0 30px 80px rgba(124,58,237,.22), 0 0 0 1px rgba(255,255,255,.03) inset;
}
#promoSlider .content { padding: 56px 20px 18px; }
#promoSlider .content .tagline { font-size: 11px; letter-spacing: 2.5px; margin-bottom: 6px; }
#promoSlider .content h4 { font-size: 20px; margin-bottom: 6px; }
#promoSlider .content p { font-size: 13px; line-height: 1.6; }
#promoSlider .btn-explore { padding: 8px 18px; font-size: 13px; }
#promoSlider .counter {
  pointer-events: none; font-size: 12px; color: #e6e6f5;
  background: rgba(11,15,26,.55); border: 1px solid rgba(255,255,255,.18);
  padding: 4px 12px; border-radius: 99px; letter-spacing: 1px;
}
@media (max-width: 720px) { #promoSlider .ds-stage { height: 330px; } }
@media (max-width: 560px) { #promoSlider .ds-stage { height: 290px; } }

/* Section */
section { padding: 84px 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: 34px; }

/* Kartu fitur: lebih tinggi & elegan */
.features { gap: 22px; }
.feat { border-radius: 18px; padding: 0 0 26px; overflow: hidden; border: 1px solid var(--line); }
.feat .icon { height: 180px; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); margin-bottom: 0; }
.feat h3 { padding: 22px 24px 0; font-size: 18px; }
.feat p { padding: 8px 24px 0; font-size: 14px; }
.feat:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 18px 50px rgba(124,58,237,.2); }

/* Harga */
.plan { border-radius: 18px; }
.plan .price { font-size: 36px; }

/* Tabel */
.dl-table { border-radius: 18px; }

/* Form */
input, textarea, select { border-radius: 12px; }
input:focus, textarea:focus, select:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(168,85,247,.18); }
input::placeholder, textarea::placeholder { color: #64748B; }

/* Kartu umum */
.card, .wa-cta, .helptext { border-radius: 18px; }

/* ===== Chip pesanan (booking web) ===== */
.chip{ display:inline-block; border:1px solid var(--line); background:var(--bg-2); color:var(--text); border-radius:8px; padding:6px 10px; font-size:12px; cursor:pointer; font-family:inherit; transition:all .15s; }
.chip:hover{ border-color:var(--accent); }
.chip-on{ background:var(--accent); border-color:var(--accent); color:#fff; }
.chip:disabled{ opacity:.4; cursor:not-allowed; }

