.bwo-wrap,
.bwo-wrap * { box-sizing: border-box; }
.bwo-wrap {
  --bwo-primary: #E46F2A;
  --bwo-dark: #172126;
  --bwo-muted: #66737A;
  --bwo-surface: #F5F7F7;
  --bwo-border: #DCE2E4;
  --bwo-white: #fff;
  --bwo-shadow: 0 18px 45px rgba(18, 31, 37, .09);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--bwo-dark);
  font-family: inherit;
  line-height: 1.5;
}
.bwo-wrap button,
.bwo-wrap input,
.bwo-wrap select,
.bwo-wrap textarea { font: inherit; }
.bwo-hero {
  position: relative;
  overflow: hidden;
  background: var(--bwo-dark);
  color: #fff;
  border-radius: 20px;
  padding: 42px 46px;
  box-shadow: var(--bwo-shadow);
}
.bwo-hero:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 42px solid rgba(228,111,42,.14);
  pointer-events: none;
}
.bwo-eyebrow,
.bwo-step-kicker,
.bwo-mini-title {
  display: block;
  color: var(--bwo-primary);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bwo-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 820px;
  margin: 8px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.bwo-hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 17px;
}
.bwo-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 28px auto;
  padding: 0 20px;
}
.bwo-progress-line {
  flex: 1;
  height: 2px;
  background: var(--bwo-border);
  margin: 0 12px 18px;
}
.bwo-progress-item {
  min-width: 92px;
  color: #879096;
  text-align: center;
}
.bwo-progress-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 6px;
  border: 2px solid var(--bwo-border);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}
.bwo-progress-item strong { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.bwo-progress-item.is-active span,
.bwo-progress-item.is-complete span { border-color: var(--bwo-primary); background: var(--bwo-primary); color: #fff; }
.bwo-progress-item.is-active { color: var(--bwo-dark); }
.bwo-progress-item.is-complete { color: var(--bwo-primary); }
.bwo-form,
.bwo-summary-card,
.bwo-concerns-summary,
.bwo-package-intro {
  background: #fff;
  border: 1px solid var(--bwo-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(18,31,37,.05);
}
.bwo-step { padding: 38px 42px 42px; }
.bwo-step[hidden] { display: none !important; }
.bwo-step-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--bwo-border);
}
.bwo-step-head h2,
.bwo-package-intro h2 {
  margin: 4px 0 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--bwo-dark);
}
.bwo-step-head p { margin: 0; color: var(--bwo-muted); max-width: 400px; }
.bwo-grid { display: grid; gap: 20px; }
.bwo-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bwo-span-2 { grid-column: span 2; }
.bwo-field label,
.bwo-label {
  display: block;
  margin: 0 0 7px;
  color: var(--bwo-dark);
  font-size: 14px;
  font-weight: 750;
}
.bwo-field label em,
.bwo-label em { color: var(--bwo-primary); font-style: normal; }
.bwo-field input,
.bwo-field select,
.bwo-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  border: 1.5px solid #C9D1D4;
  border-radius: 10px;
  background: #fff;
  color: var(--bwo-dark);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.bwo-field input:focus,
.bwo-field select:focus,
.bwo-field textarea:focus { border-color: var(--bwo-primary); box-shadow: 0 0 0 4px rgba(228,111,42,.11); }
.bwo-field input::placeholder { color: #9AA4A9; }
.bwo-fieldset { margin-bottom: 22px; }
.bwo-option-card {
  overflow: hidden;
  width: 100%;
  border: 1.5px solid var(--bwo-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(18,31,37,.035);
}
.bwo-choice-stack,
.bwo-concern-stack { display: block; }
.bwo-choice,
.bwo-concern {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 78px;
  padding: 17px 19px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--bwo-border);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease;
}
.bwo-choice:last-child,
.bwo-concern:last-child { border-bottom: 0; }
.bwo-choice:hover,
.bwo-concern:hover { background: var(--bwo-surface); }
.bwo-choice input,
.bwo-concern input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 20px;
  accent-color: var(--bwo-primary);
}
.bwo-choice:has(input:checked),
.bwo-concern:has(input:checked) {
  background: rgba(228,111,42,.055);
  box-shadow: inset 4px 0 0 var(--bwo-primary);
}
.bwo-choice strong,
.bwo-concern strong { display: block; color: var(--bwo-dark); font-size: 15px; line-height: 1.35; }
.bwo-choice small,
.bwo-concern small { display: block; color: var(--bwo-muted); margin-top: 4px; line-height: 1.45; }
.bwo-concern { min-height: 82px; align-items: flex-start; padding-top: 18px; padding-bottom: 18px; }
.bwo-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 30px; }
.bwo-actions-end { justify-content: flex-end; }
.bwo-btn {
  appearance: none;
  border: 0;
  border-radius: 9px;
  min-height: 52px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
}
.bwo-btn:hover { transform: translateY(-1px); }
.bwo-btn:disabled { opacity: .65; cursor: wait; transform: none; }
.bwo-btn-primary { background: var(--bwo-primary); color: #fff; box-shadow: 0 9px 22px rgba(228,111,42,.2); }
.bwo-btn-primary:hover { filter: brightness(.95); }
.bwo-btn-dark { background: var(--bwo-dark); color: #fff; }
.bwo-btn-ghost { background: #fff; color: var(--bwo-dark); border: 1.5px solid var(--bwo-border); }
.bwo-well-note,
.bwo-submit-note,
.bwo-alert,
.bwo-selection-status {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14px;
}
.bwo-well-note,
.bwo-alert-well { background: #FFF7E6; border: 1px solid #F0D18B; color: #6A4A04; }
.bwo-submit-note { background: var(--bwo-surface); color: var(--bwo-muted); }
.bwo-submit-note strong { color: var(--bwo-dark); }
.bwo-alert-error { background: #FFF1F1; border: 1px solid #E8B7B7; color: #7A2323; }
.bwo-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Results */
.bwo-summary-card { display: grid; grid-template-columns: .9fr 1.4fr; overflow: hidden; margin-bottom: 18px; }
.bwo-summary-primary { padding: 28px; background: var(--bwo-surface); border-right: 1px solid var(--bwo-border); }
.bwo-summary-primary h2 { margin: 0 0 10px; font-size: 28px; line-height: 1.08; color: var(--bwo-dark); }
.bwo-results-title > span { display: block; margin-top: 5px; color: var(--bwo-muted); font-size: .58em; line-height: 1.25; font-weight: 700; letter-spacing: 0; }
.bwo-summary-primary p { margin: 3px 0; color: var(--bwo-muted); font-size: 14px; }
.bwo-summary-primary small { display: block; margin-top: 12px; color: var(--bwo-dark); font-weight: 700; }
.bwo-summary-print { display: inline-flex; margin-top: 14px; }
.bwo-home-details { min-width: 0; }
.bwo-home-details > summary { display: none; }
.bwo-home-details > .bwo-summary-grid { display: grid; }
.bwo-summary-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.bwo-summary-grid div { padding: 22px; border-right: 1px solid var(--bwo-border); border-bottom: 1px solid var(--bwo-border); }
.bwo-summary-grid div:nth-child(3n) { border-right: 0; }
.bwo-summary-grid div:nth-last-child(-n+3) { border-bottom: 0; }
.bwo-summary-grid span { display: block; color: var(--bwo-muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; font-weight: 800; }
.bwo-summary-grid strong { display: block; margin-top: 5px; color: var(--bwo-dark); font-size: 15px; }
.bwo-concerns-summary { padding: 22px 26px; margin-bottom: 18px; }
.bwo-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.bwo-chip { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; background: var(--bwo-surface); border: 1px solid var(--bwo-border); color: var(--bwo-dark); font-size: 12px; font-weight: 700; }
.bwo-package-intro { padding: 28px 30px; margin: 26px 0 18px; box-shadow: none; }
.bwo-package-intro h2 { margin-top: 5px; }
.bwo-package-intro p { margin: 8px 0 0; color: var(--bwo-muted); }
.bwo-packages { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; align-items: stretch; }
.bwo-package {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--bwo-border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18,31,37,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bwo-package:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(18,31,37,.09); }
.bwo-package.is-featured { border-color: rgba(228,111,42,.7); box-shadow: 0 18px 45px rgba(228,111,42,.12); }
.bwo-package.is-selected { border-color: var(--bwo-primary); box-shadow: 0 0 0 4px rgba(228,111,42,.12), 0 18px 42px rgba(18,31,37,.09); }
.bwo-tier-badge {
  display: inline-flex;
  min-width: 112px;
  justify-content: center;
  padding: 12px 22px 12px 18px;
  background: var(--bwo-dark);
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}
.bwo-package-better .bwo-tier-badge { background: #53636B; }
.bwo-package-best .bwo-tier-badge { background: var(--bwo-primary); }
.bwo-popular { position: absolute; right: 16px; top: 13px; color: var(--bwo-primary); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; font-weight: 900; }
.bwo-package-body { padding: 24px; display: flex; flex-direction: column; min-height: calc(100% - 44px); }
.bwo-package h3 { margin: 0; color: var(--bwo-dark); font-size: 25px; line-height: 1.12; letter-spacing: -.025em; }
.bwo-package-subtitle { min-height: 50px; margin: 8px 0 18px; color: var(--bwo-muted); font-size: 14px; }
.bwo-price { padding: 15px 0; border-top: 1px solid var(--bwo-border); border-bottom: 1px solid var(--bwo-border); }
.bwo-price span,
.bwo-products > span { display: block; color: var(--bwo-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; }
.bwo-price strong { display: block; margin-top: 2px; color: var(--bwo-dark); font-size: 26px; }
.bwo-products { padding: 16px 0 12px; }
.bwo-products strong { display: block; margin-top: 5px; color: var(--bwo-dark); font-size: 14px; }
.bwo-feature-list { list-style: none; padding: 0; margin: 4px 0 24px; }
.bwo-feature-list li { position: relative; margin: 9px 0; padding-left: 25px; color: #435158; font-size: 13px; }
.bwo-feature-list li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--bwo-primary); font-weight: 900; }
.bwo-select-package { width: 100%; margin-top: auto; }
.bwo-selection-status { display: flex; gap: 8px; align-items: center; margin-top: 18px; background: #EDF8F1; border: 1px solid #A8D6B8; color: #27643C; }
.bwo-selection-status[hidden] { display: none; }
.bwo-disclaimer { margin: 24px 4px 0; color: #7B858A; font-size: 11px; line-height: 1.55; }

@media (max-width: 900px) {
  .bwo-packages { grid-template-columns: 1fr; }
  .bwo-package-subtitle { min-height: 0; }
  .bwo-summary-card { grid-template-columns: 1fr; }
  .bwo-summary-primary { border-right: 0; border-bottom: 1px solid var(--bwo-border); }
  .bwo-summary-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bwo-summary-grid div:nth-child(3n) { border-right: 1px solid var(--bwo-border); }
  .bwo-summary-grid div:nth-child(2n) { border-right: 0; }
  .bwo-summary-grid div:nth-last-child(-n+3) { border-bottom: 1px solid var(--bwo-border); }
  .bwo-summary-grid div:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 700px) {
  .bwo-hero { padding: 30px 24px; border-radius: 14px; }
  .bwo-step { padding: 28px 20px; }
  .bwo-step-head { display: block; }
  .bwo-step-head p { margin-top: 9px; }
  .bwo-grid-2 { grid-template-columns: 1fr; }
  .bwo-span-2 { grid-column: auto; }
  .bwo-actions { align-items: stretch; }
  .bwo-actions .bwo-btn { flex: 1; min-height: 48px; }
  .bwo-progress { padding: 0; }
  .bwo-progress-item { min-width: 64px; }
  .bwo-progress-line { margin-left: 4px; margin-right: 4px; }

  /* Results: keep contact info visible, collapse home situation by default. */
  .bwo-summary-card { display: block; border-radius: 14px; }
  .bwo-summary-primary { padding: 22px 20px; }
  .bwo-summary-primary h2 { font-size: 26px; }
  .bwo-results-title > span { margin-top: 6px; font-size: .62em; }
  .bwo-summary-primary p { overflow-wrap: anywhere; }
  .bwo-summary-print { width: 100%; justify-content: center; min-height: 48px; margin-top: 16px; }

  .bwo-home-details { border-top: 1px solid var(--bwo-border); }
  .bwo-home-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    color: var(--bwo-dark);
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }
  .bwo-home-details > summary::-webkit-details-marker { display: none; }
  .bwo-home-details > summary::marker { display: none; content: ""; }
  .bwo-home-details > summary small {
    display: block;
    margin: 0 0 2px;
    color: var(--bwo-muted);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
  }
  .bwo-home-details > summary strong { display: block; font-size: 16px; line-height: 1.25; }
  .bwo-accordion-icon {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--bwo-border);
    border-radius: 50%;
    background: var(--bwo-surface);
  }
  .bwo-accordion-icon::before,
  .bwo-accordion-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--bwo-dark);
    transform: translate(-50%, -50%);
    transition: transform .18s ease;
  }
  .bwo-accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  .bwo-home-details[open] .bwo-accordion-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

  .bwo-home-details > .bwo-summary-grid { display: none; grid-template-columns: 1fr; border-top: 1px solid var(--bwo-border); }
  .bwo-home-details[open] > .bwo-summary-grid { display: grid; }
  .bwo-summary-grid div,
  .bwo-summary-grid div:nth-child(3n),
  .bwo-summary-grid div:nth-child(2n),
  .bwo-summary-grid div:nth-last-child(-n+3),
  .bwo-summary-grid div:nth-last-child(-n+2) {
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--bwo-border);
  }
  .bwo-summary-grid div:last-child { border-bottom: 0; }

  .bwo-concerns-summary,
  .bwo-package-intro { padding: 20px; border-radius: 14px; }
  .bwo-package-intro { margin-top: 18px; }
  .bwo-package-intro h2 { font-size: 23px; line-height: 1.15; }
  .bwo-packages { gap: 14px; }
  .bwo-package { border-radius: 14px; }
  .bwo-package-body { padding: 20px; }
  .bwo-package h3 { font-size: 23px; }
  .bwo-select-package { min-height: 50px; }
}
@media print {
  body * { visibility: hidden !important; }
  .bwo-results,
  .bwo-results * { visibility: visible !important; }
  .bwo-results { position: absolute; left: 0; top: 0; width: 100%; max-width: none; }
  .bwo-print,
  .bwo-select-package,
  .bwo-selection-status { display: none !important; }
  .bwo-home-details > summary { display: none !important; }
  .bwo-home-details > .bwo-summary-grid { display: grid !important; }
  .bwo-summary-card,
  .bwo-concerns-summary,
  .bwo-package-intro,
  .bwo-package { box-shadow: none !important; break-inside: avoid; }
  .bwo-packages { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .bwo-package-body { padding: 14px; }
  .bwo-package h3 { font-size: 18px; }
  .bwo-price strong { font-size: 20px; }
}
