/* Shared page system for refreshed BEHUB flow + marketing pages */

:root {
  --bh-red: #E11D1D;
  --bh-red-hover: #C91414;
  --bh-dark: #111111;
  --bh-text: #171717;
  --bh-muted: #6B6B6B;
  --bh-border: #E5E5E5;
  --bh-border-strong: #D6D6D6;
  --bh-surface: #FFFFFF;
  --bh-bg: #F7F8FA;
  --bh-bg-soft: #FAFAFA;
  --bh-shadow-sm: 0 10px 24px rgba(17, 17, 17, 0.06);
  --bh-shadow-md: 0 18px 44px rgba(17, 17, 17, 0.08);
  --bh-shadow-lg: 0 28px 70px rgba(17, 17, 17, 0.12);
  --bh-radius-sm: 12px;
  --bh-radius-md: 18px;
  --bh-radius-lg: 28px;
  --bh-shell: 1240px;
}

body.bh-flow-page {
  background:
    radial-gradient(circle at top left, rgba(225, 29, 29, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(225, 29, 29, 0.08), transparent 24%),
    var(--bh-bg);
  color: var(--bh-text);
}

.bh-flow-shell {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 32px 24px 56px;
}

.bh-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.bh-flow-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

a.bh-flow-brand-mark { text-decoration: none; cursor: pointer; }
a.bh-flow-brand-mark:hover { opacity: 0.85; }

.bh-flow-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bh-dark), #2a2a2a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--bh-shadow-sm);
}

.bh-flow-brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.bh-flow-brand-copy h1,
.bh-flow-brand-copy h2 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--bh-dark);
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}

.bh-flow-brand-copy p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 14px;
}

.bh-flow-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--bh-border);
  border-radius: 999px;
  color: var(--bh-text);
  background: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.bh-flow-back:hover {
  border-color: var(--bh-red);
  color: var(--bh-red);
  background: #fff;
}

.bh-flow-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
}

.bh-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--bh-radius-lg);
  box-shadow: var(--bh-shadow-md);
  backdrop-filter: blur(12px);
}

.bh-flow-sidebar {
  padding: 28px;
  position: sticky;
  top: 24px;
  align-self: start;
}

.bh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bh-red);
}

.bh-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--bh-red);
}

.bh-flow-sidebar h2 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--bh-dark);
}

.bh-flow-sidebar p {
  margin: 0;
  font-size: 15px;
  color: var(--bh-muted);
  line-height: 1.8;
}

.bh-step-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.bh-step-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.bh-step-item.is-complete .bh-step-index {
  background: #e8f7ec;
  color: #166534;
  border-color: #cdeed6;
}

.bh-step-item.is-active .bh-step-index {
  background: var(--bh-red);
  color: #fff;
  border-color: var(--bh-red);
  box-shadow: 0 12px 22px rgba(225, 29, 29, 0.25);
}

.bh-step-index {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bh-border);
  color: var(--bh-muted);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.bh-step-body strong {
  display: block;
  font-size: 14px;
  color: var(--bh-dark);
  margin-bottom: 4px;
}

.bh-step-body span {
  display: block;
  color: var(--bh-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bh-progress {
  margin-top: 26px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.92));
  color: #fff;
}

.bh-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bh-progress-top span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.bh-progress strong {
  font-size: 13px;
  color: #fff;
}

.bh-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.bh-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bh-red), #ff6258);
}

.bh-flow-card {
  padding: 32px;
}

.bh-flow-card .form-header,
.bh-flow-card .quiz-intro,
.bh-flow-card .progress-section {
  box-shadow: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.bh-card-header {
  margin-bottom: 26px;
}

.bh-card-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--bh-dark);
  margin: 0 0 12px;
}

.bh-card-header p {
  margin: 0;
  max-width: 660px;
  font-size: 16px;
  color: var(--bh-muted);
  line-height: 1.75;
}

.bh-section-card {
  border: 1px solid var(--bh-border);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--bh-shadow-sm);
}

.bh-section-card + .bh-section-card {
  margin-top: 18px;
}

.bh-section-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-subtle-text {
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.75;
}

.bh-form-grid {
  display: grid;
  gap: 18px;
}

.bh-form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bh-form-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bh-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bh-form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bh-muted);
}

.bh-form-label .required {
  color: var(--bh-red);
}

.bh-field,
.bh-textarea,
.bh-select {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--bh-border);
  border-radius: 16px;
  background: var(--bh-bg-soft);
  color: var(--bh-dark);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.18s ease;
}

.bh-field:focus,
.bh-textarea:focus,
.bh-select:focus {
  border-color: var(--bh-red);
  box-shadow: 0 0 0 4px rgba(225, 29, 29, 0.1);
  background: #fff;
}

.bh-textarea {
  min-height: 120px;
  resize: vertical;
}

.bh-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bh-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--bh-border);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bh-choice:hover {
  border-color: rgba(225, 29, 29, 0.35);
  background: #fff8f8;
  transform: translateY(-1px);
}

.bh-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--bh-red);
}

.bh-choice-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--bh-dark);
}

.bh-choice-meta {
  display: block;
  font-size: 13px;
  color: var(--bh-muted);
}

.bh-upload {
  border: 1.5px dashed rgba(225, 29, 29, 0.28);
  border-radius: 24px;
  padding: 30px 26px;
  text-align: center;
  background: linear-gradient(180deg, #fff8f8, #ffffff);
  transition: all 0.2s ease;
}

.bh-upload:hover {
  border-color: var(--bh-red);
  box-shadow: var(--bh-shadow-sm);
}

.bh-upload .file-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.bh-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff5f5;
  border: 1px solid rgba(225, 29, 29, 0.12);
  color: var(--bh-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bh-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bh-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bh-red), var(--bh-red-hover));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 26px rgba(225, 29, 29, 0.24);
  transition: all 0.2s ease;
}

.bh-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(225, 29, 29, 0.28);
}

.bh-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid var(--bh-border);
  border-radius: 16px;
  background: #fff;
  color: var(--bh-dark);
  font-size: 14px;
  font-weight: 700;
}

.bh-note-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(225, 29, 29, 0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, #111111, #1f1f1f);
  color: rgba(255, 255, 255, 0.82);
}

.bh-note-banner strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 14px;
}

.bh-icon-dot {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(225, 29, 29, 0.16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bh-quiz-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.bh-quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.bh-quiz-hero {
  padding: 26px 28px;
  border-radius: var(--bh-radius-lg);
  background: linear-gradient(140deg, #111111 0%, #1b1b1b 72%, #2b1111 100%);
  color: #fff;
  box-shadow: var(--bh-shadow-lg);
  margin-bottom: 20px;
}

.bh-quiz-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.bh-quiz-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.bh-quiz-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bh-quiz-rule {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bh-quiz-rule strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.bh-quiz-rule span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.bh-quiz-panel {
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-lg);
  box-shadow: var(--bh-shadow-md);
  overflow: hidden;
}

.bh-quiz-panel-inner {
  padding: 28px;
}

.bh-login-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.bh-login-card,
.bh-login-info {
  border: 1px solid var(--bh-border);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
}

.bh-login-card h2,
.bh-login-info h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bh-dark);
}

.bh-login-card p,
.bh-login-info p,
.bh-login-info li {
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.75;
}

.bh-login-info ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.bh-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bh-metric-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--bh-bg);
  border: 1px solid var(--bh-border);
  text-align: center;
}

.bh-metric-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--bh-muted);
  font-size: 13px;
}

.bh-public-page {
  background: var(--bh-bg);
}

.bh-public-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 0 72px;
}

.bh-public-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(130deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.88) 48%, rgba(225, 29, 29, 0.82) 100%),
    linear-gradient(45deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  color: #fff;
  box-shadow: var(--bh-shadow-lg);
}

.bh-public-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.12), transparent 28%);
  pointer-events: none;
}

.bh-public-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  padding: 56px;
}

.bh-public-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.bh-public-hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.85;
}

.bh-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bh-public-metrics {
  display: grid;
  gap: 14px;
}

.bh-public-metric {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bh-public-metric strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  font-weight: 800;
}

.bh-public-metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.bh-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.bh-surface-card {
  padding: 30px;
  border-radius: 28px;
  background: var(--bh-surface);
  border: 1px solid var(--bh-border);
  box-shadow: var(--bh-shadow-sm);
}

.bh-surface-card h2,
.bh-surface-card h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-surface-card p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 15px;
  line-height: 1.8;
}

.bh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bh-feature-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--bh-border);
  box-shadow: var(--bh-shadow-sm);
}

.bh-feature-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-feature-card p {
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.75;
}

.bh-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff4f4;
  border: 1px solid rgba(225, 29, 29, 0.12);
  color: var(--bh-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.bh-stack {
  display: grid;
  gap: 16px;
}

.bh-outcome-list {
  display: grid;
  gap: 14px;
}

.bh-outcome {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--bh-border);
}

.bh-outcome:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bh-outcome-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff4f4;
  color: var(--bh-red);
  border: 1px solid rgba(225, 29, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.bh-outcome h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-outcome p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bh-quote-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #111111, #1c1c1c);
  color: #fff;
  box-shadow: var(--bh-shadow-lg);
}

.bh-quote-card blockquote {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bh-quote-card cite {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 13px;
}

.bh-cta-band {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 56%, #811616 100%);
  color: #fff;
  box-shadow: var(--bh-shadow-lg);
}

.bh-cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.bh-cta-band p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.bh-cta-band .bh-public-actions {
  margin-top: 22px;
}

.bh-footer-space {
  padding-bottom: 42px;
}

.bh-section-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.bh-section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-section-head p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 15px;
  line-height: 1.8;
}

.bh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bh-red);
}

.bh-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--bh-red);
}

.bh-image-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--bh-border);
  box-shadow: var(--bh-shadow-md);
  background: #fff;
}

.bh-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bh-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bh-stat-block {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--bh-border);
  box-shadow: var(--bh-shadow-sm);
}

.bh-stat-block strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bh-dark);
  margin-bottom: 8px;
}

.bh-stat-block span {
  display: block;
  color: var(--bh-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bh-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bh-tier-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--bh-border);
  box-shadow: var(--bh-shadow-sm);
}

.bh-tier-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--bh-dark);
}

.bh-tier-card p {
  margin: 0;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.75;
}

.bh-tier-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--bh-border);
  color: var(--bh-muted);
  font-size: 13px;
  line-height: 1.8;
}

.bh-check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bh-check-list li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  color: var(--bh-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bh-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff4f4;
  border: 1px solid rgba(225, 29, 29, 0.18);
  box-shadow: inset 0 0 0 3px var(--bh-red);
}

.bh-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.bh-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bh-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff4f4;
  border: 1px solid rgba(225, 29, 29, 0.12);
  color: var(--bh-red);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .bh-flow-layout,
  .bh-public-hero-inner,
  .bh-split-section,
  .bh-login-grid {
    grid-template-columns: 1fr;
  }

  .bh-flow-sidebar {
    position: static;
  }

  .bh-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bh-stat-strip,
  .bh-tier-grid,
  .bh-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .bh-flow-shell,
  .bh-quiz-shell {
    padding: 20px 16px 40px;
  }

  .bh-flow-top,
  .bh-quiz-header,
  .bh-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bh-form-grid.two-col,
  .bh-form-grid.three-col,
  .bh-chip-grid,
  .bh-feature-grid,
  .bh-results-grid,
  .bh-quiz-rule-grid,
  .bh-stat-strip,
  .bh-tier-grid,
  .bh-story-grid,
  .bh-mosaic {
    grid-template-columns: 1fr;
  }

  .bh-flow-sidebar,
  .bh-flow-card,
  .bh-public-hero-inner,
  .bh-surface-card,
  .bh-cta-band,
  .bh-quiz-panel-inner {
    padding: 22px;
  }

  .bh-card-header h2,
  .bh-public-hero h1 {
    font-size: 34px;
  }

  .bh-public-main {
    padding: 18px 0 52px;
  }

  .bh-public-hero {
    border-radius: 26px;
  }

  .container {
    padding: 0 18px;
  }
}
