/* dt5 — Comparison First | prefix: bz- */

/* ─── Header ─────────────────────────────────────────── */
.bz-hd {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}
.bz-hd__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.bz-hd__logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
}
.bz-hd__nav {
  display: flex;
  gap: 1.25rem;
}
.bz-hd__nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.bz-hd__nav a:hover { color: #fff; }

/* ─── Buttons ─────────────────────────────────────────── */
.bz-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.bz-btn:hover { opacity: 0.88; }
.bz-btn--lg {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
}
.bz-btn--inv {
  background: #fff;
  color: var(--primary);
}
.bz-btn--inv:hover { opacity: 0.92; }

/* ─── Comparison Section ──────────────────────────────── */
.bz-compare {
  padding: 3rem 0 2.5rem;
  background: var(--bg);
}
.bz-compare__heading {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.bz-compare__intro {
  color: var(--ink);
  opacity: 0.75;
  max-width: 680px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.bz-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bz-compare__note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.65;
}

/* ─── Comparison Table ────────────────────────────────── */
.bz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 560px;
}
.bz-table thead tr {
  background: var(--primary);
  color: #fff;
}
.bz-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  position: relative;
}
.bz-table thead th:first-child {
  width: 160px;
}
.bz-table__best {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-left: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
}
.bz-table thead .bz-table__best {
  background: var(--accent);
  color: #fff;
}
.bz-table__badge {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.1em 0.45em;
  border-radius: 20px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.bz-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bz-table tbody tr:last-child {
  border-bottom: none;
}
.bz-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.025);
}
.bz-table td {
  padding: 0.65rem 1rem;
  color: var(--ink);
  vertical-align: top;
}
.bz-table__label {
  font-weight: 600;
  white-space: nowrap;
}

/* ─── CTA Strip ───────────────────────────────────────── */
.bz-cta-strip {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}
.bz-cta-strip__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bz-cta-strip__text {
  flex: 1;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 500;
}
.bz-cta-strip__price {
  font-size: 2rem;
  font-weight: 800;
  white-space: nowrap;
}

/* ─── Counties Section ────────────────────────────────── */
.bz-counties {
  padding: 2.5rem 0 3rem;
  background: var(--bg);
}
.bz-counties__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

/* County list injected by content generator */
.bz-counties .bz-county-list,
.bz-counties ul {
  columns: 3;
  column-gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bz-counties .bz-county-list li,
.bz-counties ul li {
  break-inside: avoid;
  margin-bottom: 0.3rem;
}
.bz-counties .bz-county-list a,
.bz-counties ul a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.92rem;
}
.bz-counties .bz-county-list a:hover,
.bz-counties ul a:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* ─── Checkout ────────────────────────────────────────── */
.bz-checkout {
  padding: 3rem 0;
  background: var(--bg);
}
.bz-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.bz-checkout__form-area h1 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.bz-checkout__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bz-checkout__form input,
.bz-checkout__form select {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.bz-checkout__form input:focus,
.bz-checkout__form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}
.bz-checkout__note {
  font-size: 0.82rem;
  color: var(--ink);
  opacity: 0.6;
  margin: 0.25rem 0 0;
}
.bz-checkout__ok {
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1.5px solid var(--accent);
  border-radius: 6px;
}
.bz-checkout__summary {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 6px;
  padding: 1.5rem;
}
.bz-checkout__summary h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.bz-checkout__summary ul {
  padding: 0.5rem 0 0.5rem 1.1rem;
  margin: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.8;
}
.bz-checkout__line,
.bz-checkout__total {
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bz-checkout__total {
  font-weight: 700;
  border-bottom: none;
  margin-top: 0.25rem;
}

/* ─── Content Pages ───────────────────────────────────── */
.bz-body {
  padding: 2.5rem 0 3rem;
  background: var(--bg);
}
.bz-body h1 { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin-bottom: 1rem; }
.bz-body h2 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-top: 2rem; margin-bottom: 0.5rem; }
.bz-body p  { color: var(--ink); line-height: 1.7; margin-bottom: 1rem; }
.bz-body a  { color: var(--primary); }

/* ─── Footer ──────────────────────────────────────────── */
.bz-ft {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
}
.bz-ft__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  margin-bottom: 1rem;
}
.bz-ft__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.bz-ft__links a:hover { color: #fff; text-decoration: underline; }
.bz-ft__addr,
.bz-ft__legal,
.bz-ft__copy {
  margin: 0.35rem 0;
  line-height: 1.5;
}
.bz-ft__copy { color: rgba(255,255,255,0.45); }

/* ─── Breakpoint 820px ────────────────────────────────── */
@media (max-width: 820px) {
  .bz-hd__nav { display: none; }

  .bz-compare__heading { font-size: 1.3rem; }

  .bz-cta-strip__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .bz-cta-strip__text { flex: none; }

  .bz-counties .bz-county-list,
  .bz-counties ul {
    columns: 2;
  }

  .bz-checkout__grid {
    grid-template-columns: 1fr;
  }
  .bz-checkout__summary {
    order: -1;
  }
}

@media (max-width: 480px) {
  .bz-counties .bz-county-list,
  .bz-counties ul {
    columns: 1;
  }
}
