@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Raleway:wght@700;800;900&display=swap");
:root {
  --ink: #111111;
  --muted: #5f6368;
  --line: #e5e7eb;
  --soft: #f6f6f6;
  --brand: #e30613;
  --brand-dark: #b0000a;
  --accent: #111111;
  --danger: #b42318;
  --warning: #b54708;
  --success: #067647;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.10);
  --radius: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef5fb 0%, #ffffff 42%, #f8fafc 100%);
  min-height: 100vh;
}
a { color: var(--brand); }
.site-header {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
}
.nav-links a:hover, .nav-links a.active { background: var(--soft); color: var(--brand-dark); }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 70px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  gap: 28px;
  align-items: start;
}
.form-shell {
  max-width: 820px;
  margin: 0 auto;
}
.form-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}
.hero-copy {
  padding: 28px 6px 0;
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--brand-dark);
  background: #e9f5fb;
  border: 1px solid #cfe8f5;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
}
h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  margin: 18px 0 16px;
  letter-spacing: -0.05em;
}
.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  max-width: 680px;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-card { padding: 28px; }
.hero.booking-only { display: block; max-width: 760px; margin: 0 auto; }
.form-title { font-size: clamp(30px, 4vw, 46px); line-height: 1.05; margin: 0 0 22px; letter-spacing: -0.045em; }
.section-title {
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: -0.025em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.is-hidden { display: none !important; }
label { font-size: 13px; font-weight: 750; color: #334155; }
select, input, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
}
textarea { min-height: 92px; resize: vertical; }
select:disabled, input:disabled { background: #f8fafc; color: #94a3b8; }
select:focus, input:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(31, 111, 158, 0.12); }
.price-box {
  margin: 18px 0;
  background: #0f172a;
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-label { font-size: 13px; color: #cbd5e1; font-weight: 700; }
.price-value { font-size: 32px; font-weight: 850; letter-spacing: -0.035em; }
.price-help { color: #cbd5e1; font-size: 13px; max-width: 220px; line-height: 1.4; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 24px; }
button, .button-link {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
button:hover, .button-link:hover { background: var(--brand-dark); color: #fff; }
button.secondary, .button-link.secondary { background: #e2e8f0; color: var(--ink); }
button.secondary:hover, .button-link.secondary:hover { background: #cbd5e1; }
button.danger { background: var(--danger); }
button:disabled { opacity: 0.55; cursor: not-allowed; }
.status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  display: none;
  line-height: 1.45;
}
.status.show { display: block; }
.status.ok { background: #ecfdf3; border: 1px solid #abefc6; color: var(--success); }
.status.bad { background: #fef3f2; border: 1px solid #fecdca; color: var(--danger); }
.status.info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }
.steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.step {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.step strong { display: block; margin-bottom: 5px; }
.step p { margin: 0; color: var(--muted); line-height: 1.45; }
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.toolbar-left, .toolbar-right { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.search-input { min-width: min(420px, 100%); }
.table-wrap {
  overflow: auto;
  max-height: 72vh;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
th, td { border-bottom: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; padding: 9px 10px; white-space: nowrap; }
th:last-child, td:last-child { border-right: 0; }
th {
  background: #f8fafc;
  position: sticky;
  top: 0;
  z-index: 3;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
}
td[contenteditable="true"] { min-width: 130px; background: #fff; }
td[contenteditable="true"]:focus { outline: 2px solid rgba(31,111,158,0.3); outline-offset: -2px; background: #f0f9ff; }
tr.inactive td { color: #94a3b8; background: #f8fafc; }
.audit-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 22px;
}
.audit-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  line-height: 1.4;
}
.audit-item.error { border-color: #fecdca; background: #fef3f2; color: var(--danger); }
.audit-item.warning { border-color: #fedf89; background: #fffaeb; color: var(--warning); }
.small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.stat {
  flex: 1 1 150px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}
.stat .num { font-size: 28px; font-weight: 850; letter-spacing: -0.04em; }
.stat .label { color: var(--muted); font-size: 13px; margin-top: 4px; }
.footer-note { margin-top: 28px; color: var(--muted); font-size: 13px; }

.booking-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.form-title {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.buy-row {
  margin-top: 28px;
  padding-top: 8px;
}
.buy-row button {
  min-width: 150px;
  justify-content: center;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .price-box { align-items: flex-start; flex-direction: column; }
}

.config-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(22, 33, 62, 0.06);
  padding: 20px;
  margin: 20px 0 22px;
}
.config-card-heading {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.config-card h2 {
  margin: 0 0 5px;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.config-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.config-ok,
.config-alert {
  border-radius: 14px;
  padding: 13px 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.config-ok {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: var(--success);
}
.config-alert {
  background: #fffaeb;
  border: 1px solid #fedf89;
  color: var(--warning);
}
.summary-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: auto;
  max-height: 360px;
}
.summary-table {
  min-width: 960px;
  font-size: 13px;
}
.summary-table td {
  white-space: normal;
  vertical-align: top;
  line-height: 1.4;
  max-width: 260px;
}
.locked-cell {
  background: #f8fafc;
  color: #475569;
}
.price-cell {
  background: #fff;
  min-width: 130px;
}
.price-cell.price-error {
  background: #fff1f0;
}
.price-input {
  min-height: 36px;
  height: 36px;
  border-radius: 9px;
  padding: 6px 9px;
  font-size: 14px;
  font-weight: 700;
}
.price-cell.price-error .price-input {
  border-color: #f04438;
  background: #fffafa;
}
.muted-inline {
  color: var(--muted);
  font-size: 12px;
}
.audit-heading {
  margin: 8px 0 4px;
  font-weight: 800;
  color: #334155;
}
@media (max-width: 720px) {
  .config-card-heading { flex-direction: column; }
  .config-card-heading button { width: 100%; justify-content: center; }
}

/* Pricing matrix audit + locked spreadsheet view */
.audit-summary-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 20px 0 22px;
}
.audit-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.audit-heading h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.audit-heading p { margin: 0; }
.audit-good {
  border: 1px solid #abefc6;
  background: #ecfdf3;
  color: var(--success);
  border-radius: 14px;
  padding: 14px 16px;
  line-height: 1.45;
}
.summary-table-wrap {
  overflow: auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}
.issue-table th,
.issue-table td {
  vertical-align: top;
  white-space: normal;
}
.issue-table td:nth-child(1) { width: 80px; }
.issue-table td:nth-child(2) { width: 240px; }
.problem-pill {
  display: inline-flex;
  align-items: center;
  margin: 3px 5px 3px 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: var(--danger);
  font-size: 12px;
  font-weight: 750;
}
.audit-details {
  margin-top: 12px;
  color: var(--muted);
}
.audit-details summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--ink);
}
.audit-list.compact {
  margin-top: 12px;
}
td.readonly-cell {
  min-width: 120px;
  background: #f8fafc;
  color: #475569;
}
td.price-cell {
  min-width: 110px;
  background: #fffdf5;
  color: var(--ink);
  font-weight: 750;
}
td.price-cell:focus {
  outline: 2px solid rgba(243, 179, 61, 0.5);
  outline-offset: -2px;
  background: #fffbeb;
}
@media (max-width: 860px) {
  .audit-heading { flex-direction: column; }
}


/* MBE branded full-screen updates */
body {
  background: #f5f5f5;
}
.site-header {
  background: #ffffff;
  border-bottom: 4px solid var(--brand);
}
.nav {
  max-width: none;
  padding: 12px clamp(16px, 3vw, 42px);
}
.logo {
  min-width: 0;
}
.logo-text {
  font-size: 15px;
  color: #111;
  white-space: nowrap;
}
.nav-logo-img {
  width: 164px;
  height: auto;
  display: block;
}
.logo-mark { display: none; }
.nav-links a:hover, .nav-links a.active {
  background: #111111;
  color: #ffffff;
}
.nav-links a.active {
  box-shadow: inset 0 -3px 0 var(--brand);
}
.fullscreen-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: calc(100vh - 76px);
}
.booking-fullscreen {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(320px, 38vw) minmax(0, 1fr);
}
.brand-panel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 12%, rgba(227, 6, 19, 0.42), transparent 32%),
    linear-gradient(145deg, #111111 0%, #242424 58%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vw, 70px);
}
.brand-panel::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 12%;
  width: 120%;
  height: 22px;
  background: var(--brand);
  transform: rotate(-4deg);
  opacity: 0.95;
}
.brand-card {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.brand-logo-large {
  width: min(380px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  margin-bottom: 34px;
}
.brand-card h1 {
  color: #ffffff;
  margin: 0 0 18px;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.brand-card p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  margin: 0;
}
.brand-line {
  width: 160px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 28px;
}
.form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 60px);
  background:
    linear-gradient(180deg, rgba(227,6,19,0.055), transparent 34%),
    #f5f5f5;
}
.booking-card-full {
  width: min(100%, 980px);
  border-top: 8px solid var(--brand);
  padding: clamp(24px, 3vw, 44px);
}
.mobile-brand-heading { display: none; }
.form-title {
  color: #111111;
  font-size: clamp(28px, 3vw, 44px);
}
.selection-grid,
.customer-grid {
  gap: 18px;
}
select:focus, input:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}
.price-box {
  background: #111111;
  border-bottom: 5px solid var(--brand);
}
button, .button-link {
  background: var(--brand);
}
button:hover, .button-link:hover {
  background: var(--brand-dark);
}
button.secondary, .button-link.secondary {
  background: #111111;
  color: #ffffff;
}
button.secondary:hover, .button-link.secondary:hover {
  background: #333333;
  color: #ffffff;
}
.buy-row {
  margin-top: 36px;
  padding-top: 14px;
}
.buy-row button {
  min-width: 190px;
  min-height: 52px;
  font-size: 17px;
}
.wide-container {
  max-width: none;
  width: 100%;
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}
th {
  background: #111111;
  color: #ffffff;
}
td.price-cell:focus {
  outline-color: rgba(227, 6, 19, 0.45);
  background: #fff5f5;
}
.kicker {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}
@media (max-width: 980px) {
  .booking-fullscreen {
    grid-template-columns: 1fr;
  }
  .brand-panel {
    display: none;
  }
  .form-panel {
    min-height: calc(100vh - 120px);
    align-items: flex-start;
  }
  .booking-card-full {
    width: 100%;
  }
  .mobile-brand-heading {
    display: block;
    margin-bottom: 22px;
  }
  .mobile-brand-heading img {
    width: min(280px, 90%);
    height: auto;
    display: block;
    margin-bottom: 18px;
  }
  .mobile-brand-heading h1 {
    margin: 0;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1;
  }
}
@media (max-width: 860px) {
  .nav-logo-img { width: 142px; }
  .logo-text { display: none; }
}

/* Compact desktop form + full-width pricing text/table wrapping */
@media (min-width: 1180px) {
  .site-header {
    border-bottom-width: 3px;
  }
  .nav {
    min-height: 56px;
    padding: 8px clamp(14px, 2vw, 32px);
  }
  .nav-logo-img {
    width: 124px;
  }
  .logo-text {
    font-size: 14px;
  }
  .nav-links a {
    padding: 7px 10px;
    font-size: 14px;
  }
  .fullscreen-container,
  .booking-fullscreen {
    min-height: calc(100vh - 59px);
  }
  .booking-fullscreen {
    grid-template-columns: minmax(260px, 30vw) minmax(0, 1fr);
  }
  .brand-panel {
    padding: clamp(18px, 2.5vw, 40px);
  }
  .brand-logo-large {
    width: min(260px, 82%);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 18px;
  }
  .brand-card h1 {
    font-size: clamp(32px, 3vw, 48px);
    margin-bottom: 10px;
  }
  .brand-card p {
    font-size: 15px;
    line-height: 1.35;
  }
  .brand-line {
    height: 6px;
    margin-top: 18px;
  }
  .form-panel {
    align-items: flex-start;
    padding: 14px clamp(18px, 2vw, 36px);
  }
  .booking-card-full {
    width: min(100%, 1080px);
    border-top-width: 6px;
    border-radius: 14px;
    padding: 20px 24px;
  }
  .booking-card-full .form-title {
    font-size: 30px;
    margin-bottom: 14px;
  }
  #bookingForm {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 18px;
    row-gap: 0;
    align-items: start;
  }
  #bookingForm .selection-grid {
    grid-column: 1;
    grid-row: 1;
    gap: 10px 12px;
  }
  #bookingForm .price-box {
    grid-column: 1;
    grid-row: 2;
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    border-bottom-width: 4px;
  }
  #bookingForm .customer-grid {
    grid-column: 2;
    grid-row: 1 / span 2;
    gap: 10px 12px;
  }
  #bookingForm .buy-row {
    grid-column: 2;
    grid-row: 3;
    margin-top: 12px;
    padding-top: 4px;
  }
  #bookingForm #formStatus {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
  .field {
    gap: 4px;
  }
  label {
    font-size: 12px;
  }
  select,
  input,
  textarea {
    min-height: 38px;
    border-radius: 10px;
    padding: 7px 10px;
    font-size: 14px;
  }
  textarea {
    min-height: 66px;
    max-height: 86px;
  }
  .price-label,
  .price-help {
    font-size: 12px;
  }
  .price-value {
    font-size: 26px;
  }
  .price-help {
    max-width: 260px;
  }
  .buy-row button {
    min-width: 150px;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 15px;
  }
}

@media (min-width: 1180px) and (max-height: 900px) {
  .brand-card p {
    display: none;
  }
  .brand-line {
    margin-top: 14px;
  }
  .booking-card-full {
    padding: 16px 20px;
  }
  .booking-card-full .form-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  #bookingForm .selection-grid,
  #bookingForm .customer-grid {
    gap: 8px 10px;
  }
  textarea {
    min-height: 58px;
    max-height: 72px;
  }
}

.wide-container .lead {
  max-width: none;
  width: 100%;
  font-size: 16px;
  line-height: 1.45;
}
.wide-container .table-wrap {
  max-height: calc(100vh - 360px);
}
#pricingTable th,
#pricingTable td {
  white-space: normal;
  vertical-align: top;
  overflow-wrap: anywhere;
  padding: 8px 9px;
}
#pricingTable td.price-cell {
  white-space: nowrap;
  overflow-wrap: normal;
  min-width: 100px;
}
#pricingTable td.readonly-cell {
  min-width: 84px;
  max-width: 260px;
}
#pricingTable th:nth-child(2),
#pricingTable td:nth-child(2) {
  min-width: 150px;
  max-width: 240px;
}
#pricingTable th:nth-child(9),
#pricingTable td:nth-child(9),
#pricingTable th:nth-child(10),
#pricingTable td:nth-child(10) {
  min-width: 150px;
  max-width: 320px;
}


/* Fit + full-width text update - 2026-06-29 */
body .container.wide-container {
  max-width: none !important;
  width: 100% !important;
  padding-left: clamp(14px, 2.4vw, 34px) !important;
  padding-right: clamp(14px, 2.4vw, 34px) !important;
}
body .container.wide-container .lead.pricing-lead {
  max-width: none !important;
  width: 100% !important;
  display: block !important;
  margin-right: 0 !important;
  white-space: normal !important;
}
body .container.wide-container .audit-heading > div,
body .container.wide-container .audit-heading p,
body .container.wide-container .small {
  max-width: none !important;
}
body .container.wide-container .audit-heading > div {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 1180px) {
  .site-header {
    position: sticky;
  }
  .fullscreen-container,
  .booking-fullscreen {
    min-height: calc(100dvh - 58px);
    height: calc(100dvh - 58px);
  }
  .booking-fullscreen {
    grid-template-columns: minmax(230px, 24vw) minmax(0, 1fr);
    overflow: hidden;
  }
  .brand-panel {
    padding: 18px clamp(18px, 2vw, 34px);
  }
  .brand-logo-large {
    width: min(230px, 74%);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 14px;
  }
  .brand-card h1 {
    font-size: clamp(28px, 2.7vw, 44px);
    margin-bottom: 8px;
  }
  .brand-card p {
    font-size: 14px;
    line-height: 1.35;
  }
  .brand-line {
    height: 5px;
    margin-top: 14px;
  }
  .form-panel {
    align-items: flex-start;
    justify-content: center;
    padding: 10px clamp(14px, 1.6vw, 28px);
    overflow: auto;
  }
  .booking-card-full {
    width: min(100%, 1320px);
    border-top-width: 5px;
    border-radius: 12px;
    padding: 14px 18px;
  }
  .booking-card-full .form-title {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 10px;
  }
  #bookingForm {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    grid-auto-rows: auto;
    column-gap: 14px;
    row-gap: 9px;
    align-items: start;
  }
  #bookingForm .selection-grid {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px 10px;
  }
  #bookingForm #optionalField {
    grid-column: 1 / -1;
  }
  #bookingForm .price-box {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    padding: 10px 12px;
    border-radius: 11px;
    border-bottom-width: 4px;
    min-height: 0;
  }
  #bookingForm .customer-grid {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 10px;
  }
  #bookingForm .customer-grid .field.full {
    grid-column: 1 / -1;
  }
  #bookingForm .customer-grid .phone-field {
    grid-column: auto;
  }
  #bookingForm .buy-row {
    grid-column: 2;
    grid-row: 3;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
  }
  #bookingForm #formStatus {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 0;
  }
  .field {
    gap: 3px;
  }
  label {
    font-size: 12px;
  }
  select,
  input,
  textarea {
    min-height: 36px;
    border-radius: 9px;
    padding: 6px 9px;
    font-size: 14px;
    line-height: 1.2;
  }
  textarea {
    min-height: 54px;
    max-height: 70px;
  }
  .price-label,
  .price-help {
    font-size: 12px;
  }
  .price-value {
    font-size: 24px;
  }
  .price-help {
    max-width: 260px;
  }
  .buy-row button {
    min-width: 150px;
    min-height: 38px;
    padding: 8px 16px;
    font-size: 15px;
  }
}

@media (min-width: 1180px) and (max-height: 900px) {
  .nav {
    min-height: 48px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .nav-logo-img {
    width: 108px;
  }
  .nav-links a {
    padding: 6px 9px;
    font-size: 13px;
  }
  .fullscreen-container,
  .booking-fullscreen {
    height: calc(100dvh - 52px);
    min-height: calc(100dvh - 52px);
  }
  .brand-card p,
  .brand-line {
    display: none;
  }
  .brand-logo-large {
    width: min(200px, 70%);
    margin-bottom: 10px;
  }
  .brand-card h1 {
    font-size: clamp(26px, 2.4vw, 38px);
  }
  .form-panel {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .booking-card-full {
    padding: 12px 16px;
  }
  .booking-card-full .form-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  #bookingForm {
    row-gap: 7px;
  }
  #bookingForm .selection-grid,
  #bookingForm .customer-grid {
    gap: 6px 9px;
  }
  select,
  input,
  textarea {
    min-height: 33px;
    padding: 5px 8px;
    font-size: 13px;
  }
  textarea {
    min-height: 44px;
    max-height: 58px;
  }
  .price-box {
    padding: 8px 10px !important;
  }
  .price-value {
    font-size: 22px;
  }
  .price-help {
    font-size: 11px;
  }
  .buy-row button {
    min-height: 34px;
    padding: 7px 15px;
  }
}

@media (min-width: 1180px) and (max-height: 760px) {
  .brand-panel {
    display: none;
  }
  .booking-fullscreen {
    grid-template-columns: 1fr;
  }
  .booking-card-full {
    width: min(100%, 1480px);
  }
}

/* Final viewport fit + pricing intro width fixes */
.container.wide-container {
  max-width: none !important;
  width: 100% !important;
}
.container.wide-container .lead,
.container.wide-container p.pricing-lead,
p.pricing-lead {
  max-width: none !important;
  width: 100% !important;
  display: block !important;
  line-height: 1.5;
}
.pricing-lead {
  margin-right: 0 !important;
}

@media (min-width: 900px) {
  .site-header { border-bottom-width: 2px; }
  .nav {
    min-height: 48px;
    padding: 6px clamp(12px, 1.6vw, 28px);
  }
  .nav-logo-img { width: 112px; }
  .logo-text { font-size: 13px; }
  .nav-links a {
    padding: 6px 9px;
    font-size: 13px;
  }
  .fullscreen-container,
  .booking-fullscreen {
    min-height: calc(100vh - 52px);
  }
  .booking-fullscreen {
    grid-template-columns: minmax(220px, 24vw) minmax(0, 1fr);
  }
  .brand-panel {
    padding: clamp(14px, 1.8vw, 30px);
  }
  .brand-panel::after {
    height: 16px;
  }
  .brand-logo-large {
    width: min(220px, 78%);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
  }
  .brand-card h1 {
    font-size: clamp(28px, 2.5vw, 42px);
    margin-bottom: 8px;
  }
  .brand-card p {
    font-size: 14px;
    line-height: 1.32;
  }
  .brand-line {
    height: 5px;
    margin-top: 14px;
  }
  .form-panel {
    align-items: center;
    padding: 10px clamp(12px, 1.6vw, 26px);
    overflow: hidden;
  }
  .booking-card-full {
    width: min(100%, 1180px);
    border-top-width: 5px;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 12px 34px rgba(17,17,17,0.10);
  }
  .booking-card-full .form-title {
    font-size: 25px;
    line-height: 1;
    margin-bottom: 9px;
  }
  #bookingForm {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 10px;
    align-items: end;
  }
  #bookingForm .selection-grid,
  #bookingForm .customer-grid {
    display: contents;
  }
  #bookingForm .field {
    min-width: 0;
    gap: 3px;
  }
  #bookingForm .field.full,
  #bookingForm .optional-field {
    grid-column: span 2;
  }
  label { font-size: 11px; }
  select,
  input,
  textarea {
    min-height: 36px;
    border-radius: 9px;
    padding: 6px 9px;
    font-size: 13.5px;
  }
  textarea {
    min-height: 46px;
    max-height: 54px;
  }
  #bookingForm .price-box {
    grid-column: span 2;
    margin: 0;
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 11px;
    border-bottom-width: 3px;
    align-self: stretch;
  }
  .price-label,
  .price-help { font-size: 11.5px; }
  .price-value { font-size: 22px; }
  .price-help {
    max-width: 280px;
    line-height: 1.25;
  }
  #bookingForm .buy-row {
    grid-column: span 2;
    margin: 0;
    padding: 0;
    align-self: end;
  }
  .buy-row button {
    min-width: 160px;
    min-height: 40px;
    padding: 9px 16px;
    font-size: 14.5px;
    justify-content: center;
  }
  #bookingForm #formStatus {
    grid-column: 1 / -1;
    margin-top: 0;
    padding: 10px 12px;
  }
}

@media (min-width: 900px) and (max-height: 820px) {
  .brand-card p,
  .brand-line {
    display: none;
  }
  .brand-logo-large {
    width: min(190px, 72%);
    margin-bottom: 10px;
  }
  .brand-card h1 {
    font-size: clamp(26px, 2.2vw, 36px);
  }
  .form-panel {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .booking-card-full {
    padding: 12px 16px;
  }
  .booking-card-full .form-title {
    font-size: 22px;
    margin-bottom: 7px;
  }
  #bookingForm { gap: 6px 8px; }
  label { font-size: 10.5px; }
  select,
  input,
  textarea {
    min-height: 32px;
    padding: 5px 8px;
    font-size: 13px;
  }
  textarea {
    min-height: 38px;
    max-height: 44px;
  }
  #bookingForm .price-box {
    min-height: 50px;
    padding: 8px 10px;
  }
  .price-value { font-size: 20px; }
  .price-help { font-size: 11px; }
  .buy-row button {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (min-width: 900px) and (max-height: 680px) {
  .brand-panel { display: none; }
  .booking-fullscreen { grid-template-columns: 1fr; }
  .form-panel { padding: 6px 10px; }
  .booking-card-full { padding: 10px 14px; }
  .booking-card-full .form-title { font-size: 20px; }
}


/* Final 1920x1080 cut-off fix: single-screen desktop booking form */
html body main.container.wide-container > p.lead.pricing-lead {
  max-width: calc(100vw - 80px) !important;
  width: 100% !important;
  display: block !important;
  white-space: normal !important;
}
html body main.container.wide-container {
  max-width: none !important;
  width: 100vw !important;
}

@media (min-width: 1400px) {
  .fullscreen-container,
  .booking-fullscreen {
    height: calc(100dvh - 52px) !important;
    min-height: calc(100dvh - 52px) !important;
    overflow: hidden !important;
  }
  .booking-fullscreen {
    grid-template-columns: minmax(210px, 20vw) minmax(0, 1fr) !important;
  }
  .brand-panel {
    padding: 16px 24px !important;
  }
  .brand-logo-large {
    width: min(200px, 68%) !important;
    padding: 9px !important;
    margin-bottom: 10px !important;
  }
  .brand-card h1 {
    font-size: clamp(26px, 2.2vw, 38px) !important;
    margin-bottom: 7px !important;
  }
  .brand-card p {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }
  .brand-line {
    height: 4px !important;
    margin-top: 10px !important;
  }
  .form-panel {
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 8px 16px !important;
    overflow: auto !important;
  }
  .booking-card-full {
    width: min(100%, 1420px) !important;
    padding: 10px 14px !important;
    border-top-width: 4px !important;
    border-radius: 12px !important;
  }
  .booking-card-full .form-title {
    font-size: 22px !important;
    line-height: 1 !important;
    margin: 0 0 7px !important;
  }
  #bookingForm {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    gap: 6px 8px !important;
    align-items: end !important;
  }
  #bookingForm .selection-grid,
  #bookingForm .customer-grid {
    display: contents !important;
  }
  #bookingForm .field {
    min-width: 0 !important;
    gap: 2px !important;
  }
  #bookingForm .selection-grid .optional-field {
    grid-column: auto !important;
  }
  #bookingForm .customer-grid .phone-field {
    grid-column: auto !important;
  }
  #bookingForm .customer-grid .field.full {
    grid-column: span 4 !important;
  }
  #bookingForm .price-box {
    grid-column: span 2 !important;
    grid-row: auto !important;
    margin: 0 !important;
    min-height: 48px !important;
    padding: 7px 10px !important;
    border-radius: 10px !important;
    border-bottom-width: 3px !important;
    align-self: stretch !important;
  }
  #bookingForm .buy-row {
    grid-column: span 1 !important;
    grid-row: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: end !important;
    justify-content: stretch !important;
  }
  #bookingForm .buy-row button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 7px 12px !important;
    font-size: 14px !important;
    justify-content: center !important;
  }
  #bookingForm #formStatus {
    grid-column: 1 / -1 !important;
    margin-top: 0 !important;
    padding: 8px 10px !important;
  }
  label {
    font-size: 10.5px !important;
    line-height: 1.15 !important;
  }
  select,
  input,
  textarea {
    min-height: 32px !important;
    border-radius: 8px !important;
    padding: 5px 8px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }
  textarea {
    min-height: 38px !important;
    max-height: 46px !important;
  }
  .price-label,
  .price-help {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }
  .price-value {
    font-size: 20px !important;
    line-height: 1 !important;
  }
  .price-help {
    max-width: 300px !important;
  }
}

@media (min-width: 1400px) and (max-height: 900px) {
  .brand-card p,
  .brand-line {
    display: none !important;
  }
  .brand-logo-large {
    width: min(180px, 64%) !important;
    margin-bottom: 8px !important;
  }
  .form-panel {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .booking-card-full {
    padding: 8px 12px !important;
  }
  #bookingForm {
    gap: 5px 7px !important;
  }
  select,
  input,
  textarea {
    min-height: 30px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  textarea {
    min-height: 34px !important;
    max-height: 40px !important;
  }
  #bookingForm .price-box {
    min-height: 44px !important;
    padding: 6px 9px !important;
  }
  #bookingForm .buy-row button {
    min-height: 32px !important;
  }
}


/* Digital + Physical mailbox integration */
#mailbox_type {
  font-weight: 800;
}
@media (min-width: 1400px) {
  #bookingForm {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
  #bookingForm .customer-grid .field.full {
    grid-column: span 5 !important;
  }
  #bookingForm .price-box {
    grid-column: span 3 !important;
  }
  #bookingForm .buy-row {
    grid-column: span 1 !important;
  }
}
@media (min-width: 900px) and (max-width: 1399px) {
  #bookingForm {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  #bookingForm .field.full,
  #bookingForm .optional-field,
  #bookingForm .price-box,
  #bookingForm .buy-row {
    grid-column: span 3 !important;
  }
}
html body main.container.wide-container > p.lead.pricing-lead,
body .container.wide-container .lead.pricing-lead,
p.lead.pricing-lead {
  max-width: none !important;
  width: 100% !important;
  display: block !important;
  white-space: normal !important;
}
#pricingTable th:nth-child(12),
#pricingTable td:nth-child(12) {
  min-width: 220px;
  max-width: 360px;
}
#pricingTable td:nth-child(12) a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Store-specific generated booking links */
.location-section {
  margin-top: 28px;
}
.location-section h2 {
  font-size: 24px;
  margin: 0 0 14px;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.location-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.location-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.location-card h3 {
  margin: 0;
  font-size: 17px;
}
.location-value {
  background: #f4f4f4;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.location-actions .button-link {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 13px;
}

/* Wizard booking redesign */
body.wizard-page {
  background: linear-gradient(180deg, #f4f6f8 0%, #ffffff 42%, #f5f7fa 100%);
}
.wizard-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}
.wizard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.wizard-kicker,
.summary-kicker,
.store-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.wizard-hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1;
}
.wizard-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 760px;
}
.wizard-hero-brand {
  display: flex;
  justify-content: flex-end;
}
.wizard-hero-brand img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}
.wizard-main {
  display: grid;
  gap: 16px;
}
.wizard-sidebar {
  min-width: 0;
}
.sticky-card {
  position: sticky;
  top: 86px;
}
.wizard-step {
  padding: 18px;
}
.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.step-heading h2 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.1;
}
.step-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.step-number {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(227, 6, 19, 0.18);
}
.wizard-step.is-locked {
  opacity: 0.68;
}
.wizard-step.is-locked .choice-card,
.wizard-step.is-locked input,
.wizard-step.is-locked textarea,
.wizard-step.is-locked button {
  pointer-events: none;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.store-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.plan-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.choice-card {
  appearance: none;
  border: 1px solid #d9dce3;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.04);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.choice-card.is-compact {
  min-height: 112px;
}
.choice-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
  border-color: rgba(227, 6, 19, 0.35);
  background: #fff;
  color: var(--ink);
}
.choice-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12), 0 14px 28px rgba(227, 6, 19, 0.12);
}
.choice-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.choice-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: #fff5f6;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.choice-text {
  min-width: 0;
}
.choice-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.choice-title {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
}
.choice-subtitle {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
  font-size: 13px;
}
.choice-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f5f7fb;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}
.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #cfd6df;
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
  background: #fbfcfd;
}
.store-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #f0c8cd;
  background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.store-banner-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  margin-top: 6px;
}
.store-banner-subtitle,
.store-banner-right {
  color: var(--muted);
  line-height: 1.45;
}
.selection-summary-card {
  padding: 18px;
}
.summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.selection-summary-card h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.05;
}
.summary-logo {
  width: 92px;
  height: auto;
}
.summary-items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f5;
  font-size: 14px;
}
.summary-item span {
  color: var(--muted);
}
.summary-item strong {
  text-align: right;
  font-weight: 850;
}
.summary-price-box {
  margin-top: 16px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  padding: 18px;
}
.summary-price-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5e1;
  font-weight: 800;
}
.summary-price {
  margin-top: 8px;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.summary-help {
  margin-top: 10px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}
.wizard-form {
  display: grid;
  gap: 14px;
}
.wizard-customer-grid {
  gap: 14px;
}
.wizard-customer-grid textarea {
  min-height: 96px;
}
.wizard-action-row {
  padding-top: 8px;
}
.wizard-action-row button {
  min-width: 180px;
  justify-content: center;
}
@media (max-width: 1100px) {
  .wizard-layout {
    grid-template-columns: 1fr;
  }
  .sticky-card {
    position: static;
    top: auto;
  }
}
@media (max-width: 820px) {
  .wizard-container {
    padding: 12px 10px 36px;
  }
  .wizard-hero {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
  .wizard-hero-brand {
    justify-content: flex-start;
  }
  .wizard-hero-brand img {
    max-width: 180px;
  }
  .wizard-step {
    padding: 14px;
  }
  .step-heading {
    gap: 10px;
    margin-bottom: 12px;
  }
  .step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
  .step-heading h2 {
    font-size: 19px;
  }
  .choice-grid,
  .store-choice-grid,
  .plan-choice-grid {
    grid-template-columns: 1fr;
  }
  .choice-card,
  .choice-card.is-compact {
    min-height: auto;
  }
  .store-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .summary-logo {
    width: 74px;
  }
  .summary-price {
    font-size: 30px;
  }
}

/* Client-requested wizard polish: wider layout, dark MBE header, comparison table, state silhouettes */
body,
select,
input,
textarea,
button,
.button-link {
  font-family: "Open Sans", Arial, sans-serif !important;
}
h1, h2, h3,
.form-title,
.choice-title,
.summary-price,
.store-banner-title {
  font-family: "Raleway", "Open Sans", Arial, sans-serif !important;
}
.site-header {
  background: #0b0b0b !important;
  border-bottom: 4px solid var(--brand) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}
.nav {
  max-width: 1680px !important;
  min-height: 72px;
  padding: 12px clamp(18px, 3vw, 42px) !important;
}
.logo-text {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo-img {
  width: 254px !important;
  max-width: 44vw;
  height: auto;
  display: block;
}
.nav-links a {
  color: #ffffff !important;
  background: transparent;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--brand) !important;
  color: #ffffff !important;
}
body.wizard-page {
  background: linear-gradient(180deg, #f4f5f7 0%, #ffffff 40%, #f6f7f9 100%) !important;
}
.wizard-container {
  max-width: 1680px !important;
  padding: 24px clamp(16px, 2.2vw, 36px) 64px !important;
}
.wizard-hero {
  background: radial-gradient(circle at 80% 10%, rgba(227,6,19,0.42), transparent 38%), linear-gradient(135deg, #080808 0%, #171717 100%) !important;
  color: #ffffff;
  border-color: #1d1d1d !important;
  padding: 28px 34px !important;
  margin-bottom: 20px !important;
}
.wizard-hero h1 {
  color: #ffffff;
  margin: 0 !important;
  font-size: clamp(32px, 4.4vw, 58px) !important;
}
.wizard-hero-brand img {
  max-width: 310px !important;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.36));
}
.comparison-panel {
  padding: 22px;
  margin-bottom: 20px;
}
.comparison-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.comparison-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}
.comparison-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  max-width: 620px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.comparison-card {
  border: 1px solid #e4e7eb;
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(17,17,17,0.05);
}
.comparison-card-digital {
  border-color: rgba(227,6,19,0.35);
  box-shadow: 0 12px 26px rgba(227,6,19,0.08);
}
.comparison-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.comparison-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff2f3;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.comparison-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.comparison-card dl {
  margin: 0;
  display: grid;
  gap: 0;
}
.comparison-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #eef1f4;
}
.comparison-card dt,
.comparison-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}
.comparison-card dt {
  color: #5f6368;
  font-weight: 700;
}
.comparison-card dd {
  color: #111111;
  font-weight: 850;
  text-transform: uppercase;
  text-align: right;
}
.comparison-signup {
  margin-top: 12px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.comparison-card-digital .comparison-signup {
  background: var(--brand);
}
.comparison-footnote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.wizard-layout {
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 24px !important;
}
.wizard-main {
  gap: 16px !important;
}
.wizard-step {
  padding: 20px !important;
}
body.wizard-page .wizard-step.is-locked {
  display: none !important;
}
.step-heading {
  margin-bottom: 14px !important;
}
.step-heading h2 {
  font-size: clamp(22px, 2.2vw, 30px) !important;
  letter-spacing: -0.025em;
}
.step-heading p {
  display: none !important;
}
.type-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.type-choice-grid .choice-card {
  min-height: 170px !important;
}
.choice-card {
  font-size: 16px !important;
}
.choice-title {
  font-size: 20px !important;
}
.choice-subtitle {
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.choice-badge {
  font-size: 12px !important;
}
.state-outline-icon {
  background: transparent !important;
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  border-radius: 0 !important;
}
.state-svg-icon {
  width: 62px;
  height: 62px;
  display: block;
  overflow: visible;
  color: #111111;
  filter: drop-shadow(4px 4px 0 rgba(227,6,19,0.34));
}
.state-svg-icon path {
  fill: currentColor;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linejoin: round;
}
.state-choice-grid .choice-card.is-selected .state-svg-icon {
  color: var(--brand);
  filter: drop-shadow(4px 4px 0 rgba(17,17,17,0.38));
}
.store-banner {
  align-items: flex-start !important;
  padding: 14px 16px !important;
}
.store-banner-right {
  display: none !important;
}
.wizard-customer-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
.wizard-form,
body.wizard-page #bookingForm {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}
.wizard-customer-grid .field.full {
  grid-column: 1 / -1 !important;
}
.wizard-customer-grid label {
  font-size: 14px !important;
}
.wizard-customer-grid input,
.wizard-customer-grid textarea {
  min-height: 52px !important;
  padding: 13px 14px !important;
  font-size: 16px !important;
  border-radius: 14px !important;
}
.wizard-customer-grid textarea {
  min-height: 118px !important;
  max-height: none !important;
}
.wizard-action-row button {
  min-height: 52px !important;
  padding: 14px 26px !important;
  font-size: 16px !important;
}
.selection-summary-card {
  border: 0 !important;
  box-shadow: 0 24px 60px rgba(17,17,17,0.20) !important;
}
.summary-logo {
  width: 150px !important;
  height: auto;
  background: #111111;
  border-radius: 10px;
  padding: 8px;
}
@media (min-width: 1400px) {
  .state-choice-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
  .state-choice-grid .choice-card {
    min-height: 142px !important;
  }
  .wizard-sidebar {
    min-height: 1px;
  }
  .wizard-sidebar .sticky-card {
    position: fixed !important;
    top: 100px !important;
    right: max(22px, calc((100vw - 1680px) / 2 + 36px)) !important;
    width: 380px !important;
    max-height: calc(100vh - 120px) !important;
    overflow: auto;
    z-index: 20;
  }
}
@media (max-width: 1399px) {
  .wizard-layout {
    grid-template-columns: 1fr !important;
  }
  .wizard-sidebar .sticky-card {
    position: static !important;
    width: auto !important;
    max-height: none !important;
  }
}
@media (max-width: 980px) {
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .comparison-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .type-choice-grid,
  .wizard-customer-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 700px) {
  .nav-logo-img {
    width: 190px !important;
    max-width: 64vw;
  }
  .logo-text {
    display: none !important;
  }
  .wizard-container {
    padding: 14px 10px 40px !important;
  }
  .wizard-hero {
    padding: 18px !important;
  }
  .wizard-hero-brand img {
    max-width: 240px !important;
  }
  .comparison-panel,
  .wizard-step {
    padding: 14px !important;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .choice-card-top {
    gap: 12px;
  }
  .state-outline-icon,
  .state-svg-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }
}
@media (min-width: 1400px) {
  body.wizard-page:not(.has-selection) .wizard-sidebar .sticky-card {
    display: none !important;
  }
}
