/* ============================================================
   TheBlackCensusBC — Public CSS
   Design System: Trust & Authority | Black + Gold + Cream
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bc-black:       #101112;
  --bc-black-80:    rgba(16,17,18,0.8);
  --bc-black-95:    rgba(16,17,18,0.95);
  --bc-red:         #b00100;
  --bc-red-dark:    #8c0100;
  --bc-red-light:   #e84040;
  --bc-brown:       #643300;
  --bc-brown-dark:  #4a2600;
  --bc-brown-light: #8c5200;
  --bc-green:       #1a5c1a;
  --bc-green-dark:  #124012;
  --bc-green-light: #2e8b2e;
  /* aliases for backward compat */
  --bc-gold:        #b00100;
  --bc-gold-dark:   #8c0100;
  --bc-gold-light:  #e84040;
  --bc-bronze:      #643300;
  --bc-cream:       #f9f2ee;
  --bc-cream-dark:  #e8d8d0;
  --bc-white:       #FFFFFF;
  --bc-gray-100:    #F9FAFB;
  --bc-gray-200:    #E5E7EB;
  --bc-gray-500:    #6B7280;
  --bc-gray-700:    #374151;
  --bc-gray-900:    #111827;
  --bc-radius:      12px;
  --bc-radius-lg:   20px;
  --bc-radius-sm:   8px;
  --bc-shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --bc-shadow:      0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --bc-shadow-lg:   0 10px 40px rgba(0,0,0,.16), 0 4px 8px rgba(0,0,0,.08);
  --bc-transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --bc-font-head:   'Satoshi', 'Inter', system-ui, sans-serif;
  --bc-font-body:   'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body.bc-public {
  font-family: var(--bc-font-body);
  color: var(--bc-gray-900);
  background: var(--bc-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Navigation ───────────────────────────────────────────── */
.bc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--bc-transition);
}

.bc-nav.scrolled {
  background: var(--bc-black-95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: var(--bc-shadow);
}

.bc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bc-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bc-white);
}

.bc-nav-logo {
  height: 64px;
  width: auto;
  max-width: 600px;
  object-fit: contain;
  display: block;
}

.bc-nav-actions { display: flex; align-items: center; gap: 12px; }

.bc-nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: transparent; border: none; padding: 4px; cursor: pointer;
}
.bc-nav-toggle span { width: 22px; height: 2px; background: var(--bc-white); border-radius: 2px; display: block; transition: var(--bc-transition); }

/* ── Buttons ─────────────────────────────────────────────── */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--bc-radius-sm);
  font-family: var(--bc-font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--bc-transition);
  white-space: nowrap;
  line-height: 1;
}

.bc-btn:focus-visible { outline: 3px solid var(--bc-gold); outline-offset: 3px; }

.bc-btn-gold {
  background: var(--bc-red);
  color: var(--bc-white);
  border-color: var(--bc-red);
}
.bc-btn-gold:hover {
  background: var(--bc-red-dark);
  border-color: var(--bc-red-dark);
  color: var(--bc-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(176,1,0,0.4);
}

.bc-btn-green {
  background: var(--bc-green);
  color: var(--bc-white);
  border-color: var(--bc-green);
}
.bc-btn-green:hover {
  background: var(--bc-green-dark);
  border-color: var(--bc-green-dark);
  color: var(--bc-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,92,26,0.4);
}

.bc-btn-brown {
  background: var(--bc-brown);
  color: var(--bc-white);
  border-color: var(--bc-brown);
}
.bc-btn-brown:hover {
  background: var(--bc-brown-dark);
  border-color: var(--bc-brown-dark);
  color: var(--bc-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(100,51,0,0.4);
}

.bc-btn-dark {
  background: var(--bc-black);
  color: var(--bc-white);
  border-color: var(--bc-black);
}
.bc-btn-dark:hover {
  background: #1e1e20;
  color: var(--bc-white);
  transform: translateY(-1px);
}

.bc-btn-outline-light {
  background: transparent;
  color: var(--bc-white);
  border-color: rgba(255,255,255,0.5);
}
.bc-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--bc-white);
  color: var(--bc-white);
}

.bc-btn-outline-dark {
  background: transparent;
  color: var(--bc-black);
  border-color: var(--bc-black);
}
.bc-btn-outline-dark:hover { background: var(--bc-black); color: var(--bc-white); }

.bc-btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--bc-radius-sm); }
.bc-btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Hero ─────────────────────────────────────────────────── */
.bc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bc-black);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(176,1,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,92,26,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100,51,0,0.08) 0%, transparent 50%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.bc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,17,18,0.3) 0%, rgba(16,17,18,0.1) 50%, rgba(16,17,18,0.6) 100%);
}

.bc-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Animated particle dots */
.bc-hero-particles::before,
.bc-hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}
.bc-hero-particles::before {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(176,1,0,0.10) 0%, transparent 70%);
  top: 10%; left: 5%;
}
.bc-hero-particles::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,92,26,0.08) 0%, transparent 70%);
  bottom: 5%; right: 5%;
  animation-delay: -4s;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.bc-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26,92,26,0.18);
  border: 1px solid rgba(26,92,26,0.4);
  color: var(--bc-green-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.bc-hero-title {
  font-family: var(--bc-font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.bc-text-gold { color: var(--bc-gold); }

.bc-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px;
}

.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.bc-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.bc-hero-stat { text-align: center; padding: 0 32px; }
.bc-hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.bc-stat-number {
  display: block;
  font-family: var(--bc-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bc-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bc-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bc-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-scroll-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

/* ── Sections ─────────────────────────────────────────────── */
.bc-section { padding: 80px 0; }

.bc-section-light  { background: var(--bc-white); }
.bc-section-dark   { background: var(--bc-black); }
.bc-section-cream  { background: var(--bc-cream); }
.bc-section-form   { background: linear-gradient(135deg, var(--bc-black) 0%, #1a1a0a 60%, #0a1a0a 100%); }

.bc-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bc-gold);
  margin-bottom: 12px;
}
.bc-label-light { color: var(--bc-gold-light); }

.bc-section-title {
  font-family: var(--bc-font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--bc-black);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.bc-title-light { color: var(--bc-white); }

.bc-body     { font-size: 16px; color: var(--bc-gray-700); line-height: 1.7; }
.bc-body-lg  { font-size: 18px; color: var(--bc-gray-700); line-height: 1.7; }
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

/* ── Section Media (Why It Matters) ─────────────────────────── */
.bc-section-media {
  position: relative;
  height: 380px;
}

.bc-media-card {
  position: absolute;
  background: var(--bc-white);
  border-radius: var(--bc-radius);
  padding: 16px 20px;
  box-shadow: var(--bc-shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  animation: cardFloat 6s ease-in-out infinite;
}

.bc-media-card strong { display: block; font-weight: 600; color: var(--bc-black); }
.bc-media-card span   { color: var(--bc-gray-500); font-size: 12px; }

.bc-media-card-1 { top: 15%; left: 0; animation-delay: 0s; }
.bc-media-card-2 { bottom: 15%; right: 0; animation-delay: -3s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.bc-media-icon {
  width: 42px; height: 42px;
  background: rgba(16,17,18,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--bc-black);
  flex-shrink: 0;
}
.bc-icon-gold { background: rgba(176,1,0,0.15); color: var(--bc-gold-dark); }

.bc-graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(176,1,0,0.25);
}
.bc-ring-1 { width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite; }
.bc-ring-2 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite 2s; }

.bc-graphic-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--bc-red) 0%, var(--bc-brown) 50%, var(--bc-green) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--bc-white);
  box-shadow: 0 8px 24px rgba(176,1,0,0.35);
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.4; }
  50%       { transform: translate(-50%,-50%) scale(1.05); opacity: 0.8; }
}

/* ── Impact Cards ─────────────────────────────────────────── */
.bc-impact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--bc-radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--bc-transition);
}
.bc-impact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.bc-impact-icon {
  width: 52px; height: 52px;
  background: rgba(26,92,26,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--bc-green-light);
  margin-bottom: 16px;
}

.bc-impact-title { font-size: 16px; font-weight: 600; color: var(--bc-white); margin-bottom: 8px; }
.bc-impact-body  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* ── Participant Chips ────────────────────────────────────── */
.bc-participant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bc-participant-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-white);
  border: 1px solid var(--bc-gray-200);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bc-gray-700);
  box-shadow: var(--bc-shadow-sm);
  transition: var(--bc-transition);
}
.bc-participant-chip:hover {
  border-color: var(--bc-gold);
  color: var(--bc-black);
  transform: translateY(-2px);
  box-shadow: var(--bc-shadow);
}
.bc-participant-chip i { color: var(--bc-gold); font-size: 15px; }

/* ── Category Cards ────────────────────────────────────────── */
.bc-category-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-gray-200);
  border-radius: var(--bc-radius);
  padding: 24px 20px;
  height: 100%;
  transition: var(--bc-transition);
  position: relative;
  overflow: hidden;
}
.bc-category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bc-red), var(--bc-brown), var(--bc-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.bc-category-card:hover::before { transform: scaleX(1); }
.bc-category-card:hover {
  border-color: var(--bc-gold-light);
  box-shadow: var(--bc-shadow);
  transform: translateY(-3px);
}

.bc-category-num {
  font-family: var(--bc-font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--bc-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.bc-category-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--bc-black);
  margin-bottom: 12px;
}

.bc-category-subs { display: flex; flex-wrap: wrap; gap: 6px; }

.bc-sub-tag {
  display: inline-block;
  background: var(--bc-cream);
  color: var(--bc-gray-700);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--bc-cream-dark);
}

/* ── Steps ────────────────────────────────────────────────── */
.bc-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--bc-radius-lg);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: var(--bc-transition);
}
.bc-step-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.bc-step-card-gold { border-color: rgba(100,51,0,0.3); background: rgba(100,51,0,0.05); }

.bc-step-num {
  font-family: var(--bc-font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(176,1,0,0.25);
  line-height: 1;
  margin-bottom: 8px;
}
.bc-step-card-gold .bc-step-num { color: rgba(176,1,0,0.5); }

.bc-step-icon {
  font-size: 36px;
  color: var(--bc-gold);
  margin-bottom: 20px;
}

.bc-step-title { font-family: var(--bc-font-head); font-size: 20px; color: var(--bc-white); margin-bottom: 12px; }
.bc-step-body  { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }

/* ── Trust Block ──────────────────────────────────────────── */
.bc-trust-block {
  background: linear-gradient(135deg, var(--bc-cream) 0%, var(--bc-white) 100%);
  border: 1px solid var(--bc-cream-dark);
  border-radius: var(--bc-radius-lg);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  box-shadow: var(--bc-shadow);
}

.bc-trust-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--bc-white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,92,26,0.35);
}

.bc-trust-title { font-family: var(--bc-font-head); font-size: 22px; color: var(--bc-black); margin-bottom: 12px; }
.bc-trust-body  { color: var(--bc-gray-700); line-height: 1.65; margin-bottom: 20px; }

.bc-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bc-trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26,92,26,0.10);
  border: 1px solid rgba(26,92,26,0.25);
  color: var(--bc-black);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}
.bc-trust-badge i { color: var(--bc-green); }

/* ── Census Form ────────────────────────────────────────────── */
.bc-form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  gap: 0;
}

.bc-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.bc-progress-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--bc-transition);
}

.bc-progress-step.active .bc-progress-dot {
  background: var(--bc-gold);
  border-color: var(--bc-gold);
  box-shadow: 0 0 0 4px rgba(176,1,0,0.25);
}

.bc-progress-step.completed .bc-progress-dot {
  background: var(--bc-gold-dark);
  border-color: var(--bc-gold-dark);
}

.bc-progress-step span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.bc-progress-step.active span { color: var(--bc-gold-light); font-weight: 600; }

.bc-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 8px;
  margin-bottom: 22px;
  min-width: 32px;
}

/* Form steps */
.bc-form-step { display: none; }
.bc-form-step.active { display: block; animation: fadeInUp 0.35s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bc-form-card {
  background: var(--bc-white);
  border-radius: var(--bc-radius-lg);
  box-shadow: var(--bc-shadow-lg);
  overflow: hidden;
}

.bc-form-card-header {
  background: var(--bc-cream);
  padding: 24px 32px;
  border-bottom: 1px solid var(--bc-cream-dark);
}

.bc-form-step-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bc-gold-dark);
  display: block;
  margin-bottom: 4px;
}

.bc-form-card-header h4 {
  font-family: var(--bc-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-black);
  margin: 0;
}

.bc-form-card-body { padding: 32px; }

/* Labels & inputs */
.bc-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-gray-700);
  margin-bottom: 6px;
}
.bc-required { color: #e53e3e; }
.bc-optional  { font-weight: 400; color: var(--bc-gray-500); font-size: 13px; }

.bc-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bc-gray-200);
  border-radius: var(--bc-radius-sm);
  font-family: var(--bc-font-body);
  font-size: 15px;
  color: var(--bc-gray-900);
  background: var(--bc-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.bc-input:focus {
  outline: none;
  border-color: var(--bc-gold);
  box-shadow: 0 0 0 3px rgba(176,1,0,0.15);
}

.bc-input:hover:not(:focus) { border-color: var(--bc-gray-700); }

.bc-input-sm { padding: 9px 12px; font-size: 14px; }

.bc-textarea { resize: vertical; min-height: 100px; }

.bc-helper {
  font-size: 12px;
  color: var(--bc-gray-500);
  margin-top: 5px;
  line-height: 1.5;
}
.bc-helper-lead { font-size: 15px; color: var(--bc-gray-700); margin-bottom: 4px; }

/* Radio cards */
.bc-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bc-radio-card {
  position: relative;
  cursor: pointer;
}
.bc-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.bc-radio-label {
  display: block;
  padding: 10px 20px;
  border: 1.5px solid var(--bc-gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bc-gray-700);
  cursor: pointer;
  transition: var(--bc-transition);
}
.bc-radio-card input:checked + .bc-radio-label {
  background: var(--bc-black);
  border-color: var(--bc-black);
  color: var(--bc-white);
}
.bc-radio-card:hover .bc-radio-label { border-color: var(--bc-gray-700); }

/* Category checkboxes */
.bc-cat-item {
  border: 1.5px solid var(--bc-gray-200);
  border-radius: var(--bc-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
  margin-bottom: 5px;
}
.bc-cat-item.is-selected { border-color: var(--bc-gold); }

.bc-cat-toggle {
  display: block;
  cursor: pointer;
  padding: 14px 16px;
  background: var(--bc-gray-100);
  margin: 0;
}
.bc-cat-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.bc-cat-toggle input:checked ~ .bc-cat-toggle-inner { color: var(--bc-black); }
.bc-cat-toggle input:checked ~ .bc-cat-toggle-inner .bc-cat-name { font-weight: 700; }

.bc-cat-toggle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bc-cat-name { font-size: 15px; font-weight: 500; color: var(--bc-gray-900); }
.bc-cat-chevron { font-size: 14px; color: var(--bc-gray-500); transition: transform 0.25s; }

.bc-cat-details { display: none; }
.bc-cat-details.open { display: block; }
.bc-cat-details-inner {
  padding: 20px 16px;
  background: var(--bc-white);
  border-top: 1px solid var(--bc-gray-200);
}

.bc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bc-gray-700);
  cursor: pointer;
  line-height: 1.4;
}
.bc-checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--bc-gold); flex-shrink: 0; }

/* Form navigation */
.bc-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--bc-gray-200);
}

/* Review summary */
.bc-review-summary {
  background: var(--bc-cream);
  border-radius: var(--bc-radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.bc-consent-block {
  background: rgba(176,1,0,0.08);
  border-left: 3px solid var(--bc-gold);
  border-radius: 0 var(--bc-radius-sm) var(--bc-radius-sm) 0;
  padding: 16px 20px;
}
.bc-consent-text { font-size: 13px; color: var(--bc-gray-700); margin-bottom: 8px; }
.bc-consent-text:last-child { margin: 0; }

/* ── CTA Section ─────────────────────────────────────────── */
.bc-cta-section { padding: 100px 0; }

/* ── Footer ─────────────────────────────────────────────── */
.bc-footer {
  background: var(--bc-black);
  color: rgba(255,255,255,0.7);
}

.bc-footer-logo {
  font-family: var(--bc-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--bc-gold);
}

.bc-footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.bc-footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.bc-footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.bc-footer-links li { margin-bottom: 10px; font-size: 14px; }
.bc-footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.bc-footer-links a:hover { color: var(--bc-gold); }

.bc-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 18px;
  transition: var(--bc-transition);
}
.bc-social-link:hover { background: var(--bc-gold); color: var(--bc-black); }

.bc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.bc-footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.bc-footer-bottom a:hover { color: var(--bc-gold); }

/* ── Thank You Page ──────────────────────────────────────── */
.bc-thankyou-page { background: var(--bc-black); min-height: 100vh; display: flex; align-items: center; justify-content: center; margin: 0; padding: 0; }
.bc-thankyou-wrapper { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 100vh; padding: 40px 20px; }

.bc-thankyou-card {
  background: var(--bc-white);
  border-radius: var(--bc-radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--bc-shadow-lg);
}

.bc-thankyou-icon {
  font-size: 64px;
  color: var(--bc-green);
  margin-bottom: 24px;
}

.bc-thankyou-title {
  font-family: var(--bc-font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--bc-black);
  margin-bottom: 16px;
}

.bc-thankyou-body {
  font-size: 16px;
  color: var(--bc-gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.bc-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .bc-nav-logo { height: 36px; max-width: 120px; }
  .bc-section { padding: 60px 0; }
  .bc-hero { min-height: 90vh; padding: 100px 0 60px; }
  .bc-hero-stats { gap: 12px; }
  .bc-hero-stat { padding: 0 16px; }
  .bc-hero-stat-divider { display: none; }
  .bc-trust-block { flex-direction: column; }
  .bc-form-card-body { padding: 20px; }
  .bc-form-card-header { padding: 20px; }
  .bc-section-media { display: none; }
  .bc-media-card { display: none; }
  .bc-graphic-ring, .bc-graphic-center { display: none; }
}

@media (max-width: 480px) {
  .bc-hero-title { font-size: 1.75rem; }
  .bc-thankyou-card { padding: 40px 24px; }
  .bc-progress-step span { display: none; }
}
