:root {
  --gold: #FECF29;
  --gold-dim: rgba(254,207,41,0.12);
  --gold-mid: rgba(254,207,41,0.4);
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #181818;
  --border: rgba(255,255,255,0.08);
  --text: #FFFFFF;
  --text-dim: rgba(255,255,255,0.45);
  --text-mid: rgba(255,255,255,0.7);
  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --font-m: 'DM Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); min-height: 100vh; overflow-x: hidden; }

/* progress */
.pbar { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: var(--border); z-index: 100; }
.pfill { height: 100%; background: var(--gold); transition: width 0.5s var(--ease); width: 0%; }

/* header */
header {
  position: fixed; top: 3px; left: 0; width: 100%;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 99;
  background: linear-gradient(to bottom, rgba(10,10,10,0.97) 60%, transparent);
}
.logo { font-family: var(--font-d); font-size: 26px; letter-spacing: 0.1em; color: var(--gold); cursor: pointer; }
.header-right { display: flex; align-items: center; gap: 12px; }
.home-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px; color: var(--text-dim);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-b);
}
.home-btn:hover { border-color: var(--gold-mid); color: var(--text); }
.cart-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 100px;
  cursor: pointer; font-size: 13px; color: var(--text-mid);
  background: rgba(10,10,10,0.7); backdrop-filter: blur(12px);
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-b);
}
.cart-pill:hover { border-color: var(--gold); color: var(--text); }
.cart-count {
  background: var(--gold); color: #000; font-size: 11px; font-weight: 500;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m);
}

/* back button - now visible as a proper button in the flow */
.back-row {
  position: fixed; bottom: 36px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px;
  z-index: 50;
  pointer-events: none;
}
.back-row button { pointer-events: all; }
.back-btn-fixed {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  cursor: pointer; font-size: 14px; color: var(--text-mid);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  transition: all 0.2s;
  font-family: var(--font-b);
}
.back-btn-fixed:hover { border-color: var(--gold-mid); color: var(--text); }

/* screens */
.screen {
  min-height: 100vh; display: none; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 110px 40px 120px;
  animation: fadeUp 0.45s var(--ease) both;
}
.screen.active { display: flex; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* step dots - right side */
.step-dots {
  position: fixed; right: 32px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px; z-index: 50;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
.dot.done { background: var(--gold); opacity: 0.5; }
.dot.active { background: var(--gold); height: 20px; border-radius: 3px; }

/* typography */
.q-tag {
  font-family: var(--font-m); font-size: 11px; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px;
}
.q-headline {
  font-family: var(--font-d); font-size: clamp(50px, 8vw, 92px);
  line-height: 0.95; letter-spacing: 0.02em; text-align: center;
  margin-bottom: 10px; max-width: 900px;
}
.q-sub {
  font-size: 15px; color: var(--text-dim); text-align: center;
  margin-bottom: 48px; max-width: 460px; line-height: 1.6;
}

/* option grid */
.ogrid { display: grid; gap: 2px; width: 100%; max-width: 900px; }
.ogrid.c2 { grid-template-columns: 1fr 1fr; }
.ogrid.c3 { grid-template-columns: 1fr 1fr 1fr; }
.ogrid.c4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.opt {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
  padding: 26px 22px; cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 5px;
}
.opt::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-dim); opacity: 0; transition: opacity 0.2s;
}
.opt:hover { border-color: var(--gold-mid); transform: translateY(-2px); }
.opt:hover::before { opacity: 1; }
.opt.sel { border-color: var(--gold); background: var(--bg3); }
.opt.sel::before { opacity: 1; }
.opt.sel::after {
  content: 'v'; font-family: var(--font-m); font-size: 13px;
  position: absolute; top: 12px; right: 14px; color: var(--gold);
}
.opt-badge {
  display: inline-block; background: var(--gold); color: #000;
  font-size: 10px; font-weight: 500; padding: 3px 10px; border-radius: 100px;
  font-family: var(--font-m); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px; width: fit-content;
}
.opt-name { font-family: var(--font-d); font-size: 26px; letter-spacing: 0.03em; line-height: 1; }
.opt-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-top: 3px; }
.opt-price { font-family: var(--font-m); font-size: 14px; color: var(--text-mid); margin-top: 10px; }
.opt-monthly { font-family: var(--font-m); font-size: 11px; color: var(--text-dim); }

/* CTA */
.cta-wrap { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-primary {
  display: flex; align-items: center; gap: 12px;
  padding: 17px 46px;
  background: var(--gold); color: #000; border: none; border-radius: 100px;
  font-family: var(--font-d); font-size: 21px; letter-spacing: 0.08em;
  cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 36px rgba(254,207,41,0.28); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-skip {
  background: none; border: none; color: var(--text-dim); font-size: 13px;
  cursor: pointer; text-decoration: underline; text-underline-offset: 4px;
  transition: color 0.2s; font-family: var(--font-b);
}
.btn-skip:hover { color: var(--text); }

/* hero products */
.hero-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; width: 100%; max-width: 900px; margin-top: 40px; }
.hprod {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
  padding: 24px 20px; cursor: pointer;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.hprod::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.hprod:hover { border-color: var(--gold-mid); transform: translateY(-4px); }
.hprod:hover::after { transform: scaleX(1); }
.hprod-icon { font-size: 26px; margin-bottom: 14px; }
.hprod-name { font-family: var(--font-d); font-size: 22px; letter-spacing: 0.03em; margin-bottom: 5px; }
.hprod-price { font-family: var(--font-m); font-size: 12px; color: var(--gold); }
.hprod-desc { font-size: 12px; color: var(--text-dim); margin-top: 7px; line-height: 1.4; }

/* slider */
.slider-outer { width: 100%; max-width: 540px; }
.count-display {
  font-family: var(--font-d); font-size: 110px; line-height: 1;
  color: var(--gold); text-align: center; margin: 20px 0 8px;
  transition: all 0.12s var(--ease); user-select: none;
}
.count-unit { font-family: var(--font-m); font-size: 12px; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; text-align: center; margin-bottom: 28px; }
.slider-wrap { position: relative; height: 28px; display: flex; align-items: center; margin: 0 0 10px; }
.slider-bg { position: absolute; left: 0; right: 0; height: 2px; background: var(--border); border-radius: 1px; }
.slider-filled { position: absolute; left: 0; height: 2px; background: var(--gold); border-radius: 1px; pointer-events: none; }
input[type=range] {
  position: absolute; left: 0; right: 0; width: 100%;
  -webkit-appearance: none; background: transparent; cursor: pointer; z-index: 2;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  box-shadow: 0 0 0 5px rgba(254,207,41,0.15);
  transition: box-shadow 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 9px rgba(254,207,41,0.2); }
input[type=range]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: var(--gold); cursor: pointer;
}
.preset-row { display: flex; justify-content: space-between; padding: 0 2px; }
.preset-btn {
  font-family: var(--font-m); font-size: 11px; color: var(--text-dim);
  cursor: pointer; padding: 4px 7px; border: 1px solid var(--border);
  border-radius: 4px; transition: all 0.15s; background: none; line-height: 1;
}
.preset-btn:hover { border-color: var(--gold-mid); color: var(--gold); }

/* price preview card */
.price-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 18px 24px; display: flex; justify-content: space-between;
  align-items: center; margin-top: 20px; width: 100%;
}
.price-card-label { font-size: 13px; color: var(--text-dim); margin-bottom: 4px; }
.price-card-price { font-family: var(--font-d); font-size: 34px; color: var(--gold); }
.price-card-right { text-align: right; }
.price-card-mo { font-family: var(--font-m); font-size: 12px; color: var(--text-dim); }

/* stepper */
.stepper-row { display: flex; align-items: center; justify-content: center; gap: 28px; margin: 24px 0; }
.step-btn {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg2); color: var(--text); font-size: 24px;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b);
}
.step-btn:hover { border-color: var(--gold); color: var(--gold); }
.step-num { font-family: var(--font-d); font-size: 88px; color: var(--gold); min-width: 150px; text-align: center; line-height: 1; }

/* addon list */
.addon-list { width: 100%; max-width: 620px; display: flex; flex-direction: column; gap: 2px; }
.arow {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; transition: all 0.2s; gap: 14px;
}
.arow:hover { border-color: var(--gold-mid); }
.arow.on { border-color: var(--gold); background: var(--bg3); }
.arow-info { flex: 1; }
.arow-name { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.arow-desc { font-size: 13px; color: var(--text-dim); }
.arow-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.arow-price { font-family: var(--font-m); font-size: 14px; color: var(--text-mid); white-space: nowrap; }
.toggle { width: 38px; height: 21px; border-radius: 100px; background: var(--border); position: relative; transition: background 0.2s; flex-shrink: 0; }
.toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 15px; height: 15px; border-radius: 50%; background: var(--text-dim);
  transition: all 0.2s var(--ease);
}
.arow.on .toggle { background: var(--gold); }
.arow.on .toggle::after { background: #000; left: 20px; }
.addon-divider { height: 1px; background: var(--border); margin: 8px 0; }
.addon-section-label { font-family: var(--font-m); font-size: 10px; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 0 6px; }

/* summary card */
.sum-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; width: 100%; max-width: 560px; }
.sum-head { background: var(--gold); padding: 18px 26px; display: flex; justify-content: space-between; align-items: center; }
.sum-head h3 { font-family: var(--font-d); font-size: 22px; color: #000; letter-spacing: 0.05em; }
.sum-total { font-family: var(--font-d); font-size: 30px; color: #000; }
.sum-body { padding: 20px 26px; display: flex; flex-direction: column; gap: 0; }
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); }
.sum-row:last-child { border-bottom: none; }
.sum-key { font-size: 13px; color: var(--text-dim); }
.sum-val { font-size: 14px; color: var(--text); font-weight: 500; }

/* cart drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(440px, 100vw);
  background: var(--bg2); border-left: 1px solid var(--border);
  z-index: 201; transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cdrawer-head {
  padding: 28px 28px 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cdrawer-head h2 { font-family: var(--font-d); font-size: 28px; letter-spacing: 0.05em; }
.cdrawer-close { background: none; border: none; color: var(--text-dim); font-size: 22px; cursor: pointer; transition: color 0.2s; line-height: 1; font-family: var(--font-b); }
.cdrawer-close:hover { color: var(--text); }
.cdrawer-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cdrawer-empty { text-align: center; color: var(--text-dim); font-size: 14px; padding: 50px 0; line-height: 1.7; }
.citem { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; }
.citem-body { flex: 1; }
.citem-type { font-family: var(--font-m); font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px; }
.citem-name { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.citem-detail { font-size: 12px; color: var(--text-dim); line-height: 1.5; }
.citem-right { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.citem-price { font-family: var(--font-m); font-size: 15px; white-space: nowrap; }
.citem-del { background: none; border: 1px solid var(--border); color: var(--text-dim); font-size: 12px; padding: 3px 10px; border-radius: 100px; cursor: pointer; transition: all 0.15s; white-space: nowrap; font-family: var(--font-b); }
.citem-del:hover { border-color: #e04; color: #e04; }
.cdrawer-foot { padding: 20px 28px; border-top: 1px solid var(--border); background: var(--bg); }
.cdrawer-total-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 6px; }
.cdrawer-total-label { font-size: 13px; color: var(--text-dim); }
.cdrawer-total-val { font-family: var(--font-d); font-size: 38px; color: var(--gold); line-height: 1; }
.cdrawer-mo { font-family: var(--font-m); font-size: 11px; color: var(--text-dim); margin-bottom: 20px; }
.cdrawer-checkout { width: 100%; padding: 15px; background: var(--gold); color: #000; border: none; border-radius: 100px; font-family: var(--font-d); font-size: 20px; letter-spacing: 0.08em; cursor: pointer; transition: all 0.2s; }
.cdrawer-checkout:hover { opacity: 0.9; transform: scale(1.01); }
.cdrawer-paytext { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 10px; line-height: 1.6; }
.cdrawer-keep { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: var(--text-dim); cursor: pointer; text-decoration: underline; text-underline-offset: 4px; background: none; border: none; width: 100%; transition: color 0.2s; font-family: var(--font-b); }
.cdrawer-keep:hover { color: var(--text); }

/* companion qty row */
.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.qty-ctrl { display: flex; align-items: center; gap: 14px; }
.qty-num { font-family: var(--font-d); font-size: 52px; color: var(--gold); min-width: 60px; text-align: center; line-height: 1; }

/* mobile */
@media (max-width: 680px) {
  header { padding: 14px 20px; }
  .screen { padding: 90px 18px 110px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .ogrid.c3, .ogrid.c4 { grid-template-columns: 1fr 1fr; }
  .step-dots { display: none; }
  .q-headline { font-size: 46px; }
  .count-display { font-size: 80px; }
}

/* ── VISUAL PANELS ── */
.vis-panel {
  width: 100%; max-width: 900px;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}
.vis-panel img {
  width: 100%; display: block;
  border-radius: 10px;
  height: auto;
}
.vis-panel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-size: 12px; color: rgba(255,255,255,0.7);
  font-family: var(--font-m); letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 0 0 10px 10px;
}
/* hero fullbleed bg */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.18; filter: grayscale(40%);
}
#sc-hero { position: relative; }
#sc-hero > * { position: relative; z-index: 1; }

/* split layout: visual left, options right */
.split-screen {
  display: flex; align-items: flex-start; gap: 48px;
  width: 100%; max-width: 1100px;
  padding: 0;
}
.split-vis {
  flex: 0 0 400px; position: sticky; top: 90px;
}
.split-vis img {
  width: 100%; border-radius: 10px; display: block;
  height: auto;
}
.split-vis-sub {
  display: flex; gap: 6px; margin-top: 6px;
}
.split-vis-sub img {
  flex: 1; border-radius: 6px; height: auto; object-fit: initial; width: 100%; display: block;
}
.split-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: flex-start;
}
.split-content .q-tag,
.split-content .q-headline,
.split-content .q-sub { text-align: left; }
.split-content .ogrid,
.split-content .addon-list,
.split-content .slider-outer,
.split-content .cta-wrap { width: 100%; max-width: 100%; }
.split-content .cta-wrap { align-items: flex-start; }

/* option images inside opt cards */
.opt-img {
  width: 100%; height: auto;
  border-radius: 5px; margin-bottom: 10px; display: block;
}

/* full-width cinematic hero for layout choice */
.layout-hero {
  width: 100%; max-width: 900px;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 40px; position: relative;
  transition: all 0.4s var(--ease);
}
.layout-hero img {
  width: 100%; height: auto; display: block;
  transition: opacity 0.35s var(--ease);
}
.layout-hero-label {
  position: absolute; bottom: 16px; left: 20px;
  font-family: var(--font-d); font-size: 20px; letter-spacing: 0.06em;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

@media (max-width: 900px) {
  .split-screen { flex-direction: column; gap: 24px; }
  .split-vis { flex: none; width: 100%; position: static; }
  .split-vis img { height: auto; }
  .layout-hero img { height: auto; }
}

/* ── FINANCING CALCULATOR ── */
.fin-box {
  background: var(--bg3);
  border: 1px solid rgba(254,207,41,0.25);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.fin-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 14px;
}
.fin-header-left { display: flex; flex-direction: column; gap: 2px; }
.fin-label {
  font-family: var(--font-m); font-size: 10px; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.fin-monthly {
  font-family: var(--font-d); font-size: 36px; color: var(--gold); line-height: 1;
}
.fin-apr {
  font-family: var(--font-m); font-size: 11px; color: var(--text-dim);
  text-align: right;
}
.fin-slider-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.fin-dur-label {
  font-size: 12px; color: var(--text-dim); flex-shrink: 0; white-space: nowrap;
  font-family: var(--font-m);
}
.fin-dur-val {
  font-family: var(--font-m); font-size: 13px; color: var(--text);
  flex-shrink: 0; min-width: 38px; text-align: right;
}
.fin-slider-wrap {
  position: relative; flex: 1; height: 24px; display: flex; align-items: center;
}
.fin-slider-bg {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--border); border-radius: 1px;
}
.fin-slider-fill {
  position: absolute; left: 0; height: 2px;
  background: var(--gold); border-radius: 1px; pointer-events: none;
}
.fin-slider-wrap input[type=range] {
  position: absolute; left: 0; right: 0; width: 100%;
  -webkit-appearance: none; background: transparent; cursor: pointer; z-index: 2;
  margin: 0; padding: 0;
}
.fin-slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(254,207,41,0.18);
}
.fin-slider-wrap input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; border: none;
  background: var(--gold); cursor: pointer;
}
.fin-presets {
  display: flex; gap: 4px; margin-bottom: 12px; flex-wrap: wrap;
}
.fin-preset {
  flex: 1; padding: 6px 4px;
  background: none; border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-dim); font-family: var(--font-m); font-size: 11px;
  cursor: pointer; transition: all 0.15s; white-space: nowrap; min-width: 0;
}
.fin-preset:hover { border-color: var(--gold-mid); color: var(--text); }
.fin-preset.active { border-color: var(--gold); color: var(--gold); background: rgba(254,207,41,0.08); }
.fin-p4 {
  display: flex; align-items: center; gap: 7px;
  background: rgba(254,207,41,0.08); border: 1px solid rgba(254,207,41,0.2);
  border-radius: 6px; padding: 8px 12px;
  font-size: 12px; color: var(--gold); margin-bottom: 10px;
}
.fin-disclaimer {
  font-size: 10px; color: var(--text-dim); line-height: 1.6;
}
