/* Bialock.id — design system ported from the prototype (pink #FF2E93 / maroon #7C0C3A). */

:root {
  --pink: #FF2E93;
  --pink-dark: #C4106C;
  --pink-mid: #FF6FB5;
  --pink-soft: #FF8FC1;
  --maroon: #7C0C3A;
  --ink: #2A0A18;
  --bg: #FFF3F8;
  --card: #FFFFFF;
  --line: #FFD3E4;
  --line-soft: #FFE4F0;
  --fill: #FFF7FB;
  --fill-pink: #FFF0F7;
  --muted: #8A6376;
  --muted-2: #A98098;
  --muted-3: #C29BAF;
  --sub: #7E5468;
  --green: #0E9F6E;
  --green-dark: #0E7A57;
  --green-bg: #E9FBF3;
  --green-border: #B7EAD5;
  --amber: #A66A00;
  --amber-bg: #FFF6E5;
  --amber-border: #FBE0AE;
  --red: #C42222;
  --red-2: #E02424;
  --red-bg: #FDECEC;
  --red-border: #F7C4C4;
  --wa: #25D366;
  --wa-dark: #148A43;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(900px 420px at 85% -8%, rgba(255,46,147,.14), transparent 62%),
              radial-gradient(700px 360px at 5% 4%, rgba(255,143,193,.18), transparent 60%),
              var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--pink-dark); }
img { image-rendering: pixelated; }
input, button, select { font-family: inherit; }
input:focus, select:focus { outline: none; }
::placeholder { color: var(--muted-3); }

h1, h2, h3 { font-family: 'Archivo', sans-serif; }

@keyframes bl-pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes bl-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes bl-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes bl-spin { to { transform: rotate(360deg); } }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.rise { animation: bl-rise .25s ease; }
.hidden { display: none !important; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.9);
  border-bottom: 2px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; margin-right: auto; }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pink); image-rendering: auto; }
.brand-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -.01em; line-height: 1; }
.brand-name span { color: var(--pink); }
.brand-tag { font-size: 10.5px; color: #B07A93; font-weight: 700; letter-spacing: .1em; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.nav-item { padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 700; cursor: pointer; color: var(--muted); background: transparent; }
.nav-item:hover { background: #FFE4F0; }
.nav-item.on { color: #fff; background: var(--pink); }

/* ---------- promo banner ---------- */
.promo { background: linear-gradient(90deg, var(--pink), var(--pink-mid)); }
.promo-inner { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 9px 20px; font-size: 13px; color: #fff; font-weight: 600; }
.promo-pill { padding: 3px 9px; border-radius: 999px; background: #fff; color: var(--pink-dark); font-weight: 800; font-size: 11px; letter-spacing: .06em; }

/* ---------- generic cards / sections ---------- */
.card { background: var(--card); border: 2px solid var(--line); border-radius: 20px; padding: 22px; }
.section-head { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.step-badge { width: 26px; height: 26px; border-radius: 50%; background: var(--pink); color: #fff; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex: none; }
h2.section-title { margin: 0; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; }

.hint { font-size: 12.5px; color: var(--muted-2); }
.field-label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; font-weight: 700; }
.input {
  width: 100%; padding: 13px 15px; border-radius: 12px; background: var(--fill);
  border: 2px solid var(--line); color: var(--ink); font-size: 15px; font-weight: 600;
}
.input.world { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.input.ok { border-color: var(--green); }
.input.bad { border-color: var(--red-2); }
.msg-error { margin-top: 9px; font-size: 13px; font-weight: 600; color: var(--red); }

/* ---------- home hero ---------- */
.hero { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end; margin-bottom: 32px; }
.hero-left { flex: 1 1 420px; min-width: 280px; }
.badge-live { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; background: #fff; border: 2px solid var(--line); font-size: 12.5px; color: var(--pink-dark); font-weight: 700; margin-bottom: 16px; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: bl-pulse 1.8s infinite; }
.hero h1 { font-size: 46px; line-height: 1.02; margin: 0 0 14px; font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; }
.hero h1 span { color: var(--pink); }
.hero p { margin: 0; color: var(--sub); font-size: 16px; line-height: 1.6; max-width: 520px; }
.hero-stats { flex: 0 1 300px; display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 12px; }
.stat { padding: 15px 16px; border-radius: 16px; background: #fff; border: 2px solid var(--line); }
.stat-value { font-family: 'Archivo', sans-serif; font-size: 23px; font-weight: 800; color: var(--pink); }
.stat-label { font-size: 12.5px; color: var(--muted); margin-top: 2px; font-weight: 600; }

.columns { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
.col-main { flex: 1 1 560px; min-width: 300px; display: flex; flex-direction: column; gap: 18px; }

/* ---------- drop boxes / choice grids ---------- */
.grid-choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 9px; }
.choice { padding: 14px 16px; border-radius: 13px; cursor: pointer; background: #fff; border: 2px solid var(--line-soft); }
.choice.on { background: var(--fill-pink); border-color: var(--pink); }
.choice-title { font-size: 14px; font-weight: 800; color: var(--ink); }
.choice.on .choice-title { color: var(--pink-dark); }
.choice-note { font-size: 12px; color: var(--muted-2); margin-top: 3px; }

.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.pay-opt { padding: 11px 12px; border-radius: 11px; cursor: pointer; text-align: center; font-size: 13.5px; font-weight: 700; background: #fff; color: var(--muted); border: 2px solid var(--line-soft); }
.pay-opt.on { background: var(--fill-pink); color: var(--pink-dark); border-color: var(--pink); }

/* ---------- product qty cards ---------- */
.qty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 14px; }
.qcard { position: relative; padding: 18px; border-radius: 18px; background: #fff; border: 2px solid var(--line-soft); }
.qcard.on { background: var(--fill-pink); border-color: var(--pink); }
.qcard.off { opacity: .6; }
.qcard-head { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.qcard-thumb { width: 76px; height: 76px; flex: none; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.qcard-thumb.dl { background: #EFFCFD; }
.qcard-thumb.bgl { background: #EEF4FF; }
.qcard-thumb img { object-fit: contain; animation: bl-float 4.5s ease-in-out infinite; }
.qcard-thumb.dl img { width: 62px; height: 62px; }
.qcard-thumb.bgl img { width: 70px; height: 70px; animation-delay: .6s; }
.qcard-kind { font-size: 11px; color: var(--muted); letter-spacing: .1em; font-weight: 800; }
.qcard-name { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 800; line-height: 1.15; }
.qcard-price { font-size: 13.5px; font-weight: 800; color: var(--pink); margin-top: 3px; }
.qcard-price span { color: var(--muted-2); font-weight: 600; }
.stepper { display: flex; align-items: center; gap: 9px; }
.step-btn { width: 38px; height: 38px; border-radius: 11px; flex: none; cursor: pointer; background: var(--fill-pink); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--pink-dark); }
.step-btn:hover { background: var(--line); }
.qty-input { flex: 1; min-width: 0; padding: 10px; text-align: center; border-radius: 11px; background: var(--fill); border: 2px solid var(--line); color: var(--ink); font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 800; }
.qcard-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 13px; gap: 10px; flex-wrap: wrap; }
.detail-link { font-size: 12.5px; font-weight: 700; color: var(--pink-dark); cursor: pointer; }
.subtotal { font-size: 14px; font-weight: 800; color: var(--pink); }
.subtotal.zero { color: var(--muted-3); }
.badge-hot { position: absolute; top: -11px; right: 14px; padding: 4px 10px; border-radius: 999px; background: var(--pink); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; }

/* ---------- buyback banner ---------- */
.buyback { background: var(--maroon); border-radius: 20px; padding: 20px 22px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; cursor: pointer; }
.buyback:hover { filter: brightness(1.08); }
.buyback img { width: 54px; height: 54px; flex: none; object-fit: contain; }
.buyback-title { font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 3px; color: #fff; text-transform: uppercase; }
.buyback-title span { color: var(--pink-soft); }
.buyback-sub { font-size: 13.5px; color: #F3C9DB; line-height: 1.5; }
.buyback-cta { flex: none; padding: 12px 20px; border-radius: 999px; background: var(--pink); color: #fff; font-weight: 800; font-size: 13.5px; }

/* ---------- summary sidebar ---------- */
.aside { flex: 1 1 320px; min-width: 280px; position: sticky; top: 92px; background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: 0 10px 30px rgba(255,46,147,.10); }
.aside h3 { margin: 0 0 15px; font-size: 17px; font-weight: 800; text-transform: uppercase; }
.rows { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.row { display: flex; justify-content: space-between; gap: 12px; }
.row .k { color: var(--muted); }
.row .v { font-weight: 700; text-align: right; word-break: break-all; }
.row .v.dim { color: var(--muted-3); }
.divider { height: 2px; background: var(--line-soft); margin: 5px 0; }
.total-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.total-amt { font-family: 'Archivo', sans-serif; font-size: 25px; font-weight: 800; color: var(--pink); }
.cta { width: 100%; margin-top: 18px; padding: 14px; border-radius: 13px; border: none; cursor: pointer; background: var(--pink); color: #fff; font-weight: 800; font-size: 15px; box-shadow: 0 4px 0 var(--pink-dark); }
.cta:hover { filter: brightness(1.06); }
.cta.disabled { background: var(--line-soft); color: var(--muted-3); box-shadow: none; cursor: not-allowed; }
.badges { margin-top: 15px; display: flex; gap: 7px; flex-wrap: wrap; }
.badge { padding: 5px 10px; border-radius: 8px; background: var(--fill-pink); border: 1px solid var(--line); font-size: 11.5px; color: var(--muted); font-weight: 700; }

/* ---------- detail ---------- */
.back-link { display: inline-block; font-size: 13.5px; color: var(--muted); cursor: pointer; margin-bottom: 18px; font-weight: 700; }
.detail-media { flex: 1 1 300px; background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 14px; min-height: 260px; }
.detail-media img { width: 150px; height: 150px; object-fit: contain; animation: bl-float 4.5s ease-in-out infinite; }
.detail-info { flex: 1 1 340px; background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 26px; }
.detail-info h1 { margin: 0 0 8px; font-size: 28px; font-weight: 800; text-transform: uppercase; }
.detail-info p { margin: 0 0 18px; color: var(--sub); font-size: 14.5px; line-height: 1.6; }
.detail-price { font-family: 'Archivo', sans-serif; font-size: 31px; font-weight: 800; color: var(--pink); }
.points { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.point { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: #5C3446; }
.point span.ck { color: var(--green); font-weight: 800; }

/* ---------- checkout steps ---------- */
.steps { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.stepbox { flex: 1 1 180px; padding: 13px 15px; border-radius: 14px; background: var(--fill); border: 2px solid var(--line-soft); display: flex; align-items: center; gap: 11px; }
.stepbox.active { background: #fff; border-color: var(--pink); }
.stepbox .num { width: 24px; height: 24px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 800; background: var(--line-soft); color: var(--muted-2); }
.stepbox.active .num, .stepbox.done .num { background: var(--pink); color: #fff; }
.stepbox .lab { font-size: 13.5px; font-weight: 700; color: var(--muted-2); }
.stepbox.active .lab { color: var(--ink); }
.stepbox.done .lab { color: #5C3446; }
.stepbox .sub { font-size: 11.5px; color: var(--muted-2); }

.wa-preview { padding: 16px; border-radius: 14px; background: var(--fill-pink); border: 2px dashed var(--pink-soft); margin-bottom: 15px; }
.wa-preview .cap { font-size: 11.5px; color: var(--muted-2); font-weight: 800; letter-spacing: .08em; margin-bottom: 8px; }
.wa-preview .text { font-size: 13.5px; color: var(--ink); line-height: 1.7; white-space: pre-line; font-weight: 600; }
.wa-btn { display: block; text-align: center; padding: 15px; border-radius: 13px; background: var(--wa); color: #053B21; font-weight: 800; font-size: 15.5px; box-shadow: 0 4px 0 var(--wa-dark); }
.wa-line { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 12px; background: var(--maroon); margin: 15px 0; flex-wrap: wrap; }
.wa-line .l { font-size: 13px; color: #F3C9DB; font-weight: 600; }
.wa-line .r { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 800; color: #fff; }
.wa-steps { display: flex; flex-direction: column; gap: 8px; }
.wa-step { display: flex; gap: 10px; font-size: 13.5px; color: #5C3446; line-height: 1.55; }
.wa-step .n { color: var(--pink); font-weight: 800; flex: none; }
.btn-secondary { width: 100%; margin-top: 10px; padding: 11px; border-radius: 13px; cursor: pointer; background: var(--fill-pink); border: 2px solid var(--line); color: var(--muted); font-weight: 700; font-size: 13.5px; }
.btn-secondary:hover { color: var(--ink); }

/* ---------- status ---------- */
.status-search { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.status-search .input { flex: 1 1 240px; }
.btn-primary { padding: 13px 26px; border-radius: 12px; border: none; cursor: pointer; background: var(--pink); color: #fff; font-weight: 800; font-size: 14.5px; box-shadow: 0 4px 0 var(--pink-dark); }
.btn-primary:hover { filter: brightness(1.06); }
.alert-error { padding: 14px 16px; border-radius: 12px; background: var(--red-bg); border: 2px solid var(--red-border); color: #B31B1B; font-size: 13.5px; font-weight: 600; }
.status-card { background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 26px; margin-top: 20px; }
.status-top { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 20px; }
.pill { padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 800; border: 2px solid; }
.pill.Berhasil { background: var(--green-bg); color: var(--green-dark); border-color: var(--green-border); }
.pill.Menunggu { background: var(--amber-bg); color: var(--amber); border-color: var(--amber-border); }
.pill.Gagal { background: var(--red-bg); color: var(--red); border-color: var(--red-border); }
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-bottom: 20px; }
.field .fl { font-size: 12px; color: var(--muted-2); margin-bottom: 3px; font-weight: 600; }
.field .fv { font-size: 14.5px; font-weight: 700; word-break: break-all; }
.timeline { display: flex; flex-direction: column; }
.tl { display: flex; gap: 13px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; flex: none; }
.tl-dot { width: 13px; height: 13px; border-radius: 50%; margin-top: 4px; background: var(--line); }
.tl-dot.done { background: var(--green); }
.tl-dot.failed { background: var(--red-2); }
.tl-line { width: 2px; flex: 1; background: var(--line-soft); min-height: 26px; }
.tl-line.done { background: var(--green-border); }
.tl-line.last { background: transparent; }
.tl-body { padding-bottom: 14px; }
.tl-label { font-size: 14px; font-weight: 700; color: var(--muted-2); }
.tl-label.done { color: var(--ink); }
.tl-label.failed { color: var(--red); }
.tl-time { font-size: 12.5px; color: var(--muted-2); }

/* ---------- history ---------- */
.history-head { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 20px; }
.filters { display: flex; gap: 7px; flex-wrap: wrap; }
.filter { padding: 8px 15px; border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 700; background: #fff; color: var(--muted); border: 2px solid var(--line); }
.filter.on { background: var(--pink); color: #fff; border-color: var(--pink); }
.hist-list { display: flex; flex-direction: column; gap: 11px; }
.hist-row { background: #fff; border: 2px solid var(--line); border-radius: 16px; padding: 15px 19px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; cursor: pointer; }
.hist-row:hover { border-color: var(--pink-soft); }
.hist-row img { width: 38px; height: 38px; flex: none; object-fit: contain; }
.hist-id { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 800; }
.hist-meta { font-size: 12.5px; color: var(--muted-2); }
.hist-amt { flex: 0 1 130px; text-align: right; font-size: 15px; font-weight: 800; }
.hist-amt.sell { color: var(--green-dark); }
.status-badge { flex: none; padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 800; border: 2px solid; }
.status-badge.Berhasil { background: var(--green-bg); color: var(--green-dark); border-color: var(--green-border); }
.status-badge.Menunggu { background: var(--amber-bg); color: var(--amber); border-color: var(--amber-border); }
.status-badge.Gagal { background: var(--red-bg); color: var(--red); border-color: var(--red-border); }
.empty { padding: 44px; text-align: center; color: var(--muted-2); font-size: 14px; border: 2px dashed var(--line); border-radius: 16px; }

/* ---------- sell ---------- */
.sell-head { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.sell-head img { width: 56px; height: 56px; object-fit: contain; }
.sell-head h1 { margin: 0 0 4px; font-size: 29px; font-weight: 800; text-transform: uppercase; }
.sell-head h1 span { color: var(--pink); }
.sell-head p { margin: 0; color: var(--sub); font-size: 14.5px; }
.ticket-ok { margin-top: 14px; padding: 14px; border-radius: 12px; background: var(--green-bg); border: 2px solid var(--green-border); font-size: 13px; color: #12684B; line-height: 1.55; }
.wa-btn-sm { display: block; margin-top: 10px; text-align: center; padding: 13px; border-radius: 12px; background: var(--wa); color: #053B21; font-weight: 800; font-size: 14.5px; }

/* ---------- footer ---------- */
.footer { background: var(--maroon); padding: 26px 20px; margin-top: 20px; }
.footer-inner { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: 12.5px; color: #E9B9CF; }
.footer-inner .grow { margin-right: auto; }
.footer-inner a { color: #FFC9DE; }

/* ---------- loading / toast ---------- */
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: bl-spin .7s linear infinite; vertical-align: -3px; }
.page-loading { padding: 60px 20px; text-align: center; color: var(--muted); font-size: 14px; }

/* ---------- page titles (generic) ---------- */
.page-title { margin: 0 0 6px; font-size: 29px; font-weight: 800; text-transform: uppercase; }
.page-sub { margin: 0 0 20px; color: var(--sub); font-size: 14.5px; }

/* ---------- content sections (how it works / article / faq) ---------- */
.section-block { margin-top: 42px; scroll-margin-top: 88px; }
.sec-title { font-size: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 6px; }
.sec-sub { margin: 0 0 20px; color: var(--sub); font-size: 14.5px; max-width: 660px; line-height: 1.6; }

.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.how-card { background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: 20px; }
.how-num { width: 34px; height: 34px; border-radius: 50%; background: var(--fill-pink); border: 2px solid var(--pink); color: var(--pink-dark); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.how-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.how-card p { margin: 0; color: var(--sub); font-size: 13.5px; line-height: 1.6; }

.article { background: #fff; border: 2px solid var(--line); border-radius: 20px; padding: 26px; }
.article h2 { font-size: 22px; font-weight: 800; margin: 0 0 12px; letter-spacing: -.01em; }
.article h3 { font-size: 16.5px; font-weight: 800; margin: 22px 0 8px; }
.article p { color: var(--sub); font-size: 14.5px; line-height: 1.75; margin: 0 0 12px; }
.article strong { color: var(--ink); font-weight: 700; }
.kurs { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 16px; }
.kurs .k-item { flex: 1 1 160px; background: var(--fill-pink); border: 2px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.kurs .k-item .big { font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 800; color: var(--pink-dark); }
.kurs .k-item .lbl { font-size: 12px; color: var(--muted); font-weight: 700; margin-top: 3px; }

.faq { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.faq details { background: #fff; border: 2px solid var(--line); border-radius: 14px; padding: 2px 18px; }
.faq summary { cursor: pointer; list-style: none; padding: 15px 0; font-weight: 800; font-size: 14.5px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 21px; font-weight: 800; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 16px; color: var(--sub); font-size: 13.5px; line-height: 1.7; }

/* ---------- testimonials (illustrative) ---------- */
.testi-note { display: inline-block; background: var(--amber-bg); border: 1px solid var(--amber-border); color: var(--amber); font-size: 11.5px; font-weight: 700; padding: 2px 9px; border-radius: 999px; margin-left: 4px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.testi-card { margin: 0; background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.testi-card blockquote { margin: 0; font-size: 14.5px; line-height: 1.65; color: #5C3446; font-weight: 600; }
.testi-card figcaption { display: flex; align-items: center; gap: 11px; }
.testi-card figcaption img { width: 34px; height: 34px; flex: none; object-fit: contain; }
.testi-name { font-family: 'Archivo', sans-serif; font-size: 14.5px; font-weight: 800; color: var(--ink); }
.testi-grow { font-size: 12px; color: var(--muted-2); font-weight: 700; }

/* accepted payment methods — informational badges (no gateway, arranged in chat) */
.pay-methods { margin-top: 16px; }
.pay-methods .pm-label { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.pay-methods .pm-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-methods .pm { font-size: 11.5px; font-weight: 700; color: var(--muted); background: var(--fill-pink); border: 1px solid var(--line); border-radius: 8px; padding: 4px 9px; }

/* security / anti-scam section */
.sec-guard { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; margin-top: 4px; }
.guard-item { display: flex; gap: 13px; background: #fff; border: 2px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.guard-item .gi-ic { flex: none; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; background: var(--fill-pink); color: var(--pink-dark); }
.guard-item .gi-ic.warn { background: #FFF4D9; color: #9A6B00; }
.guard-item h3 { margin: 0 0 3px; font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 800; color: var(--ink); }
.guard-item p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted); }
.guard-wa { margin-top: 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: var(--maroon); border-radius: 16px; padding: 15px 18px; color: #fff; }
.guard-wa .gw-num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: .02em; }
.guard-wa .gw-txt { font-size: 12.5px; line-height: 1.5; opacity: .92; margin-top: 2px; }

/* floating WhatsApp button — persistent contact shortcut on every page */
.fab-wa { position: fixed; right: 20px; bottom: 22px; z-index: 55; display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px 12px 14px; border-radius: 999px; background: var(--wa); color: #053B21; font-weight: 800; font-size: 14px; box-shadow: 0 8px 22px rgba(5,59,33,.28); }
.fab-wa svg { width: 22px; height: 22px; flex: none; }
.fab-wa:hover { filter: brightness(1.05); }

/* mobile sticky order bar — hidden on desktop, shown ≤640px so the order total
   and checkout button stay reachable without scrolling to the summary aside */
.mobile-buybar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .aside { position: static; }
  .sec-title { font-size: 22px; }

  .mobile-buybar {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
    border-top: 2px solid var(--line); box-shadow: 0 -8px 24px rgba(124,12,58,.12);
  }
  .mobile-buybar .mb-info { display: flex; flex-direction: column; line-height: 1.15; flex: none; }
  .mobile-buybar .mb-label { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2); }
  .mobile-buybar .mb-total { font-family: 'Archivo', sans-serif; font-size: 19px; font-weight: 800; color: var(--maroon); }
  .mobile-buybar.off .mb-total { color: var(--muted-2); }
  .mobile-buybar .cta { flex: 1 1 auto; width: auto; margin-top: 0; padding: 13px; box-shadow: 0 3px 0 var(--pink-dark); }
  /* keep the fixed bar from covering the footer / FAQ at the end of the page */
  .footer { padding-bottom: 82px; }

  /* raise the floating WhatsApp button above the sticky order bar, icon-only */
  .fab-wa { bottom: 84px; right: 14px; padding: 12px; }
  .fab-wa span { display: none; }
}
