/*
  Purpose Driven Bespoke Journey - CSS
  Uses site variables: --fo --go --pg --lg --iv --ch --wh --li --mi --fs --fb --ez
  Uses site classes: .ff (form fields), .b .bg .bd (buttons), .lbl, .pgh .pghi, .w, .s
*/

/* ---- Page reset (Hello Elementor override) ---- */
.pdd-journey-page .entry-content,
.pdd-journey-page .page-content,
.pdd-journey-page main#main > .post,
.pdd-journey-page main#main > article {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ---- PROGRESS BAR ---- */
.bj-progress {
  background: var(--wh);
  border-bottom: 1px solid var(--li);
  position: sticky;
  top: 72px;
  z-index: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.bj-prog-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,60px);
  height: 58px;
  display: flex;
  align-items: center;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.bj-prog-inner::-webkit-scrollbar { display: none; }
.bj-prog-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: clamp(16px,4vw,60px);
  right: clamp(16px,4vw,60px);
  height: 1px;
  background: var(--li);
  transform: translateY(-50%);
  z-index: 0;
}
.bj-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 52px;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.bj-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--li);
  background: var(--wh);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-size: 9.5px;
  font-weight: 600;
  color: #bbb;
  transition: all 0.3s var(--ez);
}
.bj-step-done .bj-dot {
  background: var(--fo);
  border-color: var(--fo);
  color: var(--wh);
}
.bj-step-active .bj-dot {
  background: var(--go);
  border-color: var(--go);
  color: var(--fo);
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(223,189,105,0.2);
  transform: scale(1.1);
}
.bj-step-label {
  font-family: var(--fb);
  font-size: 7.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s;
}
.bj-step-done .bj-step-label  { color: var(--fo); }
.bj-step-active .bj-step-label { color: var(--go); font-weight: 600; }

/* ---- STAGE HERO (matches .pgh from site) ---- */
.bj-hero {
  background: linear-gradient(150deg, var(--fo) 0%, var(--gd) 55%, #1e2b1e 100%);
  padding: clamp(52px,7vw,88px) 0;
  position: relative;
  overflow: hidden;
}
.bj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 4L56 30L30 56L4 30Z' fill='none' stroke='%23dfbd69' stroke-width='.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.bj-hero-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,60px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.bj-hero .lbl { color: var(--pg); }
.bj-hero h2 {
  font-family: var(--fs);
  font-size: clamp(30px,4.5vw,58px);
  font-weight: 400;
  color: #faf8f2;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.bj-hero h2 em { font-style: italic; color: var(--pg); }
.bj-hero p {
  font-size: clamp(13px,1.15vw,15px);
  font-weight: 300;
  color: rgba(242,235,224,0.82);
  line-height: 1.85;
  max-width: 520px;
}
.bj-hero-video {
  border: 1px solid rgba(223,189,105,0.2);
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bj-hero-video video { width: 100%; height: 100%; object-fit: cover; }
.bj-hero-video-ph {
  text-align: center;
  padding: 20px;
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(242,235,224,0.28);
  line-height: 2;
}

/* ---- FORM SECTION ---- */
.bj-section {
  background: var(--wh);
  padding: clamp(44px,6vw,72px) 0;
}
.bj-section-cream { background: var(--ch); }
.bj-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,60px);
}

/* ---- SECTION TITLE ---- */
.bj-title {
  margin-bottom: clamp(24px,3.5vw,36px);
  padding-bottom: clamp(16px,2vw,22px);
  border-bottom: 1px solid var(--li);
}
.bj-title h3 {
  font-family: var(--fs);
  font-size: clamp(20px,2.2vw,28px);
  font-weight: 400;
  color: var(--fo);
  margin: 0 0 6px;
}
.bj-title p {
  font-size: 13px;
  color: var(--mi);
  margin: 0;
  line-height: 1.65;
}

/* ---- FIELD LAYOUT ---- */
.bj-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px,2vw,22px);
}
.bj-field {
  margin-bottom: clamp(20px,2.8vw,28px);
}
.bj-label {
  display: block;
  font-family: var(--fb);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fo);
  margin-bottom: 9px;
}
.bj-req { color: var(--go); }
.bj-hint {
  display: block;
  font-size: 11px;
  color: var(--mi);
  margin-top: 6px;
  line-height: 1.5;
}

/* ---- PILLS (custom radio/checkbox) ---- */
.bj-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bj-pill {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.bj-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.bj-pill-face {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid var(--li);
  background: var(--wh);
  font-family: var(--fb);
  font-size: clamp(11px,1vw,12.5px);
  font-weight: 400;
  color: var(--fo);
  cursor: pointer;
  transition: all 0.2s var(--ez);
  user-select: none;
  white-space: nowrap;
  line-height: 1.3;
}
.bj-pill:hover .bj-pill-face {
  border-color: var(--go);
  background: rgba(223,189,105,0.04);
}
.bj-pill input:checked + .bj-pill-face {
  border-color: var(--fo);
  background: var(--fo);
  color: var(--lg);
  font-weight: 500;
}
.bj-tick {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--li);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: all 0.2s;
}
.bj-pill input:checked + .bj-pill-face .bj-tick {
  background: var(--go);
  border-color: var(--go);
  font-size: 9px;
  color: var(--fo);
}

/* ---- SELECTION CARDS ---- */
.bj-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 10px;
}
.bj-cards-2 { grid-template-columns: repeat(2,1fr); }
.bj-cards-3 { grid-template-columns: repeat(3,1fr); }
.bj-cards-4 { grid-template-columns: repeat(4,1fr); }

.bj-card {
  position: relative;
  cursor: pointer;
}
.bj-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.bj-card-face {
  border: 1.5px solid var(--li);
  background: var(--wh);
  padding: clamp(16px,2.2vw,24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.25s var(--ez);
  cursor: pointer;
  height: 100%;
  box-sizing: border-box;
}
.bj-card:hover .bj-card-face {
  border-color: var(--go);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(57,66,57,0.1);
}
.bj-card input:checked + .bj-card-face {
  border-color: var(--fo);
  border-width: 2px;
  background: var(--fo);
  color: #faf8f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(57,66,57,0.18);
}
.bj-card-tick {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--go);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--fo);
  font-weight: 700;
  z-index: 2;
}
.bj-card input:checked ~ .bj-card-tick { display: flex; }

.bj-card-icon {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(57,66,57,0.2);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--fo);
  flex-shrink: 0;
  transition: all 0.25s;
}
.bj-card input:checked + .bj-card-face .bj-card-icon {
  border-color: rgba(242,235,224,0.3);
  color: var(--pg);
}
.bj-card-name {
  font-family: var(--fs);
  font-size: clamp(13px,1.2vw,15px);
  font-weight: 400;
  color: var(--fo);
  margin: 0;
  line-height: 1.25;
}
.bj-card input:checked + .bj-card-face .bj-card-name { color: #faf8f2; }
.bj-card-desc {
  font-size: clamp(11px,0.95vw,12px);
  color: var(--mi);
  line-height: 1.6;
  margin: 0;
}
.bj-card input:checked + .bj-card-face .bj-card-desc { color: rgba(242,235,224,0.65); }
.bj-card-cert {
  font-family: var(--fb);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--go);
  color: var(--go);
  margin-top: auto;
}
.bj-card input:checked + .bj-card-face .bj-card-cert {
  border-color: rgba(232,207,138,0.4);
  color: var(--pg);
}

/* Warning card variant */
.bj-card-warn .bj-card-face {
  border-style: dashed;
  border-color: rgba(180,50,50,0.3);
}
.bj-card-warn:hover .bj-card-face { border-color: #b83232; }
.bj-card-warn input:checked + .bj-card-face {
  background: rgba(180,50,50,0.06);
  border-color: #b83232;
  border-style: solid;
  color: #b83232;
}

/* ---- GEM / METAL SWATCHES ---- */
.bj-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.bj-card:hover .bj-swatch { transform: scale(1.1); }

/* ---- GROUP HEADING ---- */
.bj-group {
  font-family: var(--fb);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fo);
  margin: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bj-group::after { content: ''; flex: 1; height: 1px; background: var(--li); }
.bj-group-warn { color: #b83232; }

/* ---- ADVISORY NOTE ---- */
.bj-note {
  padding: 14px 18px;
  background: var(--iv);
  border-left: 3px solid var(--go);
  font-size: clamp(12px,1.05vw,13.5px);
  color: #3a3a3a;
  line-height: 1.8;
  margin-top: 12px;
}
.bj-note strong { color: var(--fo); font-weight: 600; }
.bj-note-warn { border-left-color: #b83232; background: rgba(180,50,50,0.04); }
.bj-note-warn strong { color: #b83232; }

/* ---- BUDGET ---- */
.bj-budget-hero {
  text-align: center;
  padding: clamp(28px,4vw,44px) 0;
  border-bottom: 1px solid var(--li);
  margin-bottom: 28px;
}
.bj-budget-label {
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mi);
  display: block;
  margin-bottom: 10px;
}
.bj-budget-amount {
  font-family: var(--fs);
  font-size: clamp(52px,8vw,96px);
  font-weight: 300;
  color: var(--fo);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.bj-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}
.bj-slider-cap {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--mi);
  white-space: nowrap;
}
input[type=range].bj-range {
  -webkit-appearance: none;
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, var(--go) var(--pct,10%), var(--li) var(--pct,10%));
  outline: none;
  cursor: pointer;
  border-radius: 2px;
}
input[type=range].bj-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--wh);
  border: 2.5px solid var(--go);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: box-shadow 0.2s;
}
input[type=range].bj-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px rgba(223,189,105,0.18);
}
.bj-bands { border: 1px solid var(--li); }
.bj-band {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--li);
  transition: background 0.2s;
  align-items: center;
}
.bj-band:last-child { border-bottom: none; }
.bj-band-active { background: rgba(223,189,105,0.08); }
.bj-band-active .bj-band-range { color: var(--go); }
.bj-band-range {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  color: var(--fo);
  transition: color 0.2s;
}
.bj-band-note { font-size: 12px; color: var(--mi); line-height: 1.55; }

/* ---- 4CS KNOWLEDGE CHOICE ---- */
.bj-know-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 28px;
}
.bj-know { position: relative; cursor: pointer; }
.bj-know input { position: absolute; opacity: 0; width: 0; height: 0; }
.bj-know-face {
  border: 1.5px solid var(--li);
  background: var(--wh);
  padding: clamp(22px,3vw,32px) 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s var(--ez);
}
.bj-know:hover .bj-know-face {
  border-color: var(--go);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(57,66,57,0.1);
}
.bj-know input:checked + .bj-know-face {
  border-color: var(--fo);
  background: var(--fo);
  color: #faf8f2;
}
.bj-know-icon { font-size: 28px; color: var(--go); }
.bj-know input:checked + .bj-know-face .bj-know-icon { color: var(--pg); }
.bj-know-title {
  font-family: var(--fs);
  font-size: clamp(15px,1.5vw,19px);
  font-weight: 400;
  color: var(--fo);
  margin: 0;
}
.bj-know input:checked + .bj-know-face .bj-know-title { color: #faf8f2; }
.bj-know-desc { font-size: 12px; color: var(--mi); margin: 0; line-height: 1.6; }
.bj-know input:checked + .bj-know-face .bj-know-desc { color: rgba(242,235,224,0.65); }

/* ---- 4C BLOCK ---- */
.bj-c-block {
  border: 1px solid var(--li);
  background: var(--wh);
  padding: clamp(20px,2.8vw,32px);
  margin-bottom: 12px;
}
.bj-c-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.bj-c-badge {
  width: 44px; height: 44px;
  background: var(--fo);
  color: var(--lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fs);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
}
.bj-c-header h4 {
  font-family: var(--fs);
  font-size: clamp(17px,1.8vw,22px);
  font-weight: 400;
  color: var(--fo);
  margin: 0 0 3px;
}
.bj-c-sub {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mi);
  font-family: var(--fb);
  display: block;
}
.bj-c-explain {
  font-size: clamp(13px,1.1vw,14px);
  color: #3a3a3a;
  line-height: 1.85;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--li);
  padding-bottom: 14px;
}

/* ---- UPLOAD ZONE ---- */
.bj-drop {
  border: 2px dashed var(--li);
  background: var(--iv);
  padding: clamp(36px,5vw,52px) 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ez);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bj-drop:hover, .bj-drop.bj-dragover {
  border-color: var(--go);
  background: rgba(223,189,105,0.05);
}
.bj-drop-arrow { font-size: 32px; color: var(--go); line-height: 1; }
.bj-drop h4 {
  font-family: var(--fs);
  font-size: clamp(16px,1.6vw,20px);
  font-weight: 400;
  color: var(--fo);
  margin: 0;
}
.bj-drop p { font-size: 12px; color: var(--mi); margin: 0; line-height: 1.6; }
.bj-file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.bj-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--wh);
  border: 1px solid var(--li);
  font-size: 13px;
  color: var(--fo);
}
.bj-file-name { flex: 1; }
.bj-file-remove {
  color: #bbb;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.bj-file-remove:hover { color: #b83232; }

/* ---- RING SIZE ---- */
.bj-sizes { display: grid; grid-template-columns: repeat(auto-fill, minmax(44px,1fr)); gap: 6px; }

/* ---- SUMMARY ---- */
.bj-sum-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 28px; }
.bj-sum-card { border: 1px solid var(--li); background: var(--wh); padding: 20px 22px; }
.bj-sum-head {
  font-family: var(--fb);
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mi);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--li);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bj-sum-edit {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--go);
  text-decoration: none;
  border-bottom: 1px solid rgba(223,189,105,0.3);
}
.bj-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(229,221,212,0.5);
}
.bj-sum-row:last-child { border-bottom: none; }
.bj-sum-label { font-size: 11px; color: var(--mi); min-width: 70px; }
.bj-sum-value { font-size: 12.5px; color: var(--fo); font-weight: 500; text-align: right; }

/* ---- ASK THE JEWELLER ---- */
.bj-ask {
  margin-top: clamp(28px,4vw,40px);
  background: var(--ch);
  border-top: 3px solid var(--go);
  padding: clamp(24px,3.5vw,36px);
}
.bj-ask h4 {
  font-family: var(--fs);
  font-size: clamp(18px,2vw,24px);
  font-weight: 400;
  color: var(--fo);
  margin: 0 0 6px;
}
.bj-ask-sub { font-size: 13px; color: var(--mi); margin: 0 0 18px; }
.bj-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--li);
  background: var(--wh);
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fo);
  cursor: pointer;
  transition: all 0.22s var(--ez);
}
.bj-ask-btn:hover { border-color: var(--go); color: var(--go); }
.bj-ask-panel {
  margin-top: 14px;
  border: 1px solid var(--li);
  background: var(--wh);
  padding: clamp(20px,3vw,28px);
  display: none;
}
.bj-ask-grid { display: grid; grid-template-columns: 1fr 260px; gap: clamp(16px,2.5vw,28px); }
.bj-ask-panel-title {
  font-family: var(--fb);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fo);
  margin-bottom: 12px;
}
.bj-ask-panel textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--li);
  background: var(--wh);
  font-family: var(--fb);
  font-size: 13px;
  color: var(--fo);
  outline: none;
  resize: none;
  height: 96px;
  margin-bottom: 10px;
  transition: border-color 0.22s;
}
.bj-ask-panel textarea:focus { border-color: var(--go); }
.bj-ask-contact p { font-size: 13px; color: var(--fo); line-height: 1.7; margin-bottom: 10px; }
.bj-ask-contact a { color: var(--go); text-decoration: none; }
.bj-ask-sent { font-size: 12px; color: #2e7d4f; margin-top: 6px; display: none; }

/* ---- NAV BUTTONS ---- */
.bj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(28px,4vw,44px);
  padding-top: clamp(20px,3vw,28px);
  border-top: 1px solid var(--li);
}
.bj-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px,1.6vh,15px) clamp(18px,2.5vw,28px);
  border: 1px solid var(--li);
  background: transparent;
  font-family: var(--fb);
  font-size: clamp(9px,0.82vw,10.5px);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mi);
  cursor: pointer;
  transition: all 0.22s var(--ez);
}
.bj-btn-back:hover { border-color: var(--go); color: var(--fo); }
.bj-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(14px,1.8vh,17px) clamp(28px,4vw,48px);
  background: var(--go);
  border: 1px solid var(--go);
  font-family: var(--fb);
  font-size: clamp(9px,0.85vw,11px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fo);
  cursor: pointer;
  transition: all 0.25s var(--ez);
  white-space: nowrap;
}
.bj-btn-next:hover {
  background: var(--fo);
  border-color: var(--fo);
  color: var(--lg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(57,66,57,0.2);
}
.bj-btn-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- ERROR ---- */
.bj-error {
  padding: 12px 18px;
  background: rgba(180,50,50,0.07);
  border-left: 3px solid #b83232;
  color: #b83232;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ---- STICKY SUMMARY BAR ---- */
.bj-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--fo);
  z-index: 999;
  border-top: 1px solid rgba(223,189,105,0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ez);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
.bj-sticky-show { transform: translateY(0); }
.bj-sticky-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 11px clamp(16px,4vw,60px);
  display: flex;
  align-items: center;
  gap: clamp(16px,3vw,40px);
  overflow-x: auto;
  scrollbar-width: none;
}
.bj-si { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.bj-si-label {
  font-family: var(--fb);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,235,224,0.4);
}
.bj-si-value {
  font-family: var(--fs);
  font-size: clamp(12px,1.1vw,14px);
  color: var(--pg);
}

/* ---- RESPONSIVE ---- */
@media (max-width:900px) {
  .bj-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .bj-hero-video { max-width: 480px; }
  .bj-cards-4 { grid-template-columns: repeat(2,1fr); }
  .bj-cards-3 { grid-template-columns: repeat(2,1fr); }
  .bj-know-wrap { max-width: 100%; }
  .bj-ask-grid { grid-template-columns: 1fr; }
}
@media (max-width:650px) {
  .bj-prog-inner { height: 50px; }
  .bj-step-label { display: none; }
  .bj-step-active .bj-step-label { display: block; font-size: 7.5px; }
  .bj-row { grid-template-columns: 1fr; }
  .bj-cards, .bj-cards-3, .bj-cards-4 { grid-template-columns: repeat(2,1fr); }
  .bj-sum-grid { grid-template-columns: 1fr; }
  .bj-know-wrap { grid-template-columns: 1fr; }
  .bj-nav { flex-direction: column-reverse; }
  .bj-btn-back, .bj-btn-next { width: 100%; justify-content: center; }
}
@media (max-width:380px) {
  .bj-cards, .bj-cards-3, .bj-cards-4 { grid-template-columns: 1fr; }
}
