/*
 * LBF Theme — register-page.css  v25.47
 * Scoped to .lbf-reg-page — zero leakage.
 * Pixel-perfect translation of register_page_polish_pass__1_.jsx
 * Fonts: Outfit + Plus Jakarta Sans via enqueue.
 *
 * Brand tokens (from mockup BRAND object):
 *   blue:      #0f46c8   blue-dark: #0a3497
 *   gold:      #f3c303   text:      #0b1736
 *   text2:     #42506b   text3:     #6f7b91
 *   bg:        #f3f6fc   border:    #d8e1f2
 *   berry:     #5f4bb6   berrySoft: #8a7ae0
 *   berryMist: rgba(95,75,182,.10)
 */

/* ─── PAGE SHELL ─── */
.lbf-reg-page {
  background: #f8faff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #0b1736;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
/* Subtle page-level bg glow (matches mockup absolute inset div) */
.lbf-reg-page::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(95,75,182,.05), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(15,70,200,.04), transparent 20%),
    linear-gradient(180deg, #f8faff 0%, #f5f8ff 40%, #f8faff 100%);
}
/* Dot pattern overlay */
.lbf-reg-page::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(95,75,182,.18) 1px, transparent 1.3px);
  background-size: 24px 24px;
  opacity: .12;
}

/* ─── CANVAS + OUTER SHELL ─── */
/* Matches contact page: floats under floating header */
.lbf-reg-canvas {
  max-width: 1480px;
  margin: 0 auto;
  padding: calc(var(--header-h, 82px) + 1.5rem) clamp(1rem, 2vw, 2rem) 3rem;
}
@media (min-width: 768px)  { .lbf-reg-canvas { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1280px) { .lbf-reg-canvas { padding-left: 2rem; padding-right: 2rem; } }

/* Thin gradient divider above shell (mockup: pointer-events-none mb-5 h-px) */
.lbf-reg-canvas::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: 1.25rem;
  background: linear-gradient(to right, transparent, #dbe4f6, transparent);
}

/* Outer shell: rounded border, shadow — matches mockup's hero wrapper */
.lbf-reg-outer-shell {
  border-radius: 30px;
  border: 1px solid #d8e1f2;
  box-shadow: 0 18px 46px rgba(8,29,84,.10);
  overflow: hidden;
  background: #f8faff;
}

/* ════════════════════════════════════════════════════════════
   §1 HERO
════════════════════════════════════════════════════════════ */
.lbf-reg-hero-img-shell {
  position: relative;
  overflow: hidden;
}
.lbf-reg-hero-img {
  display: block;
  width: 100%; height: 470px;
  object-fit: cover;
  transition: transform 1400ms ease;
}
@media (min-width: 768px) { .lbf-reg-hero-img { height: 560px; } }
.lbf-reg-hero-img-shell:hover .lbf-reg-hero-img { transform: scale(1.03); }

.lbf-reg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,37,99,.78) 0%, rgba(10,37,99,.50) 38%, rgba(15,70,200,.22) 70%, rgba(15,70,200,.10) 100%);
}
.lbf-reg-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.22) 1px, transparent 1.2px);
  background-size: 22px 22px; opacity: .16;
}
.lbf-reg-hero-orb-a {
  position: absolute; left: 8%; top: 12%; width: 12rem; height: 12rem;
  border-radius: 50%; background: rgba(138,122,224,.10); filter: blur(3rem); pointer-events: none;
}
.lbf-reg-hero-orb-b {
  position: absolute; right: 10%; top: 18%; width: 10rem; height: 10rem;
  border-radius: 50%; background: rgba(95,75,182,.10); filter: blur(3rem); pointer-events: none;
}

/* Hero copy */
.lbf-reg-hero-copy {
  position: absolute; left: 3%; top: 8%;
  max-width: 620px; z-index: 2;
}
@media (min-width: 768px) { .lbf-reg-hero-copy { left: 3.5%; top: 8%; } }

.lbf-reg-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.20); background: rgba(255,255,255,.10);
  border-radius: 999px; padding: .375rem .875rem;
  font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255,255,255,.88); backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(7,22,59,.14); margin-bottom: .75rem;
}
.lbf-reg-hero-badge svg { width: .875rem; height: .875rem; flex-shrink: 0; }

.lbf-reg-hero-h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2.5rem);
  font-weight: 900; line-height: 1; letter-spacing: -.035em; color: #fff; margin: 0;
}

.lbf-reg-hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .625rem;
  margin-top: 1rem;
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: rgba(255,255,255,.82);
}
@media (min-width: 768px) { .lbf-reg-hero-meta { font-size: .6875rem; } }
.lbf-reg-hero-dot { color: rgba(255,255,255,.35); }

.lbf-reg-hero-rule {
  display: flex; align-items: center; gap: .75rem; margin-top: 1rem;
}
.lbf-reg-hero-rule-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: #8a7ae0; box-shadow: 0 0 0 6px rgba(138,122,224,.12); flex-shrink: 0;
}
.lbf-reg-hero-rule-bar {
  height: 3px; width: 5rem; border-radius: 999px;
  background: #f3c303; box-shadow: 0 0 18px rgba(243,195,3,.28); flex-shrink: 0;
}
.lbf-reg-hero-rule-label {
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: rgba(255,255,255,.58);
}

.lbf-reg-hero-sub {
  margin-top: 1.25rem; max-width: 560px;
  font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.82);
}
@media (min-width: 768px) { .lbf-reg-hero-sub { font-size: 1rem; line-height: 2; } }

.lbf-reg-hero-btns {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem;
}

/* Feature tiles grid (below hero photo) */
.lbf-reg-feature-tiles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding: 1rem;
}
@media (min-width: 768px)  { .lbf-reg-feature-tiles { grid-template-columns: repeat(4, 1fr); padding: 1rem 1.5rem; } }
@media (min-width: 1024px) { .lbf-reg-feature-tiles { padding: 1rem 1.5rem; } }

.lbf-reg-tile {
  position: relative; overflow: hidden;
  border-radius: 20px; border: 1px solid #d8e1f2;
  background: rgba(255,255,255,.92); padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(8,29,84,.06);
  transition: transform .3s, box-shadow .3s;
}
.lbf-reg-tile:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(8,29,84,.10); }
.lbf-reg-tile__tint {
  position: absolute; inset-x: 0; top: 0; height: 4rem; pointer-events: none;
  background: linear-gradient(180deg, var(--tile-tint) 0%, transparent 100%); opacity: .9;
}
.lbf-reg-tile__orb {
  position: absolute; right: -1.5rem; top: -1.5rem; width: 4rem; height: 4rem;
  border-radius: 50%; background: var(--tile-color); opacity: .13; filter: blur(1.5rem); pointer-events: none;
  transition: transform .3s;
}
.lbf-reg-tile:hover .lbf-reg-tile__orb { transform: scale(1.1); }
.lbf-reg-tile__header { position: relative; display: flex; align-items: center; gap: .75rem; }
.lbf-reg-tile__icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 12px; flex-shrink: 0;
  background: color-mix(in srgb, var(--tile-color) 18%, transparent);
  color: var(--tile-color);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tile-color) 22%, transparent), 0 8px 18px color-mix(in srgb, var(--tile-color) 18%, transparent);
  transition: transform .3s;
}
.lbf-reg-tile:hover .lbf-reg-tile__icon-wrap { transform: translateY(-2px) scale(1.05); }
.lbf-reg-tile__icon-wrap svg { width: 1rem; height: 1rem; transition: transform .3s; }
.lbf-reg-tile:hover .lbf-reg-tile__icon-wrap svg { transform: scale(1.1) rotate(-6deg); }
.lbf-reg-tile__title {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em;
  color: var(--tile-color); transition: letter-spacing .3s;
}
.lbf-reg-tile:hover .lbf-reg-tile__title { letter-spacing: .24em; }
.lbf-reg-tile__body {
  position: relative; margin-top: .75rem;
  font-size: .9375rem; line-height: 1.75; color: #42506b;
  transition: color .3s;
}
.lbf-reg-tile:hover .lbf-reg-tile__body { color: #33415c; }
.lbf-reg-tile__rule {
  margin-top: 1rem; height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
  opacity: .7; transition: opacity .3s;
}
.lbf-reg-tile:hover .lbf-reg-tile__rule { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   §2 FILTER BAR + SEARCH
════════════════════════════════════════════════════════════ */
.lbf-reg-forms-section { padding: 1.25rem 1rem 1.25rem; }
@media (min-width: 768px) { .lbf-reg-forms-section { padding: 1.5rem; } }

.lbf-reg-topbar {
  position: relative; display: flex; flex-direction: column; gap: 1rem;
  border-radius: 28px; border: 1px solid #d8e1f2;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(14,30,84,.08), inset 0 0 0 1px rgba(95,75,182,.10);
  margin-bottom: 2.25rem;
}
@media (min-width: 1024px) { .lbf-reg-topbar { flex-direction: row; align-items: center; padding: 1.25rem; } }

/* Top ornament */
.lbf-reg-topbar::before {
  content: ''; position: absolute; right: 1.5rem; top: 1.25rem;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  border: 1px solid rgba(216,225,242,.70); opacity: .5; pointer-events: none;
}
.lbf-reg-topbar::after {
  content: ''; position: absolute; inset-x: 0; top: 0; height: 1.25rem;
  background: linear-gradient(180deg, rgba(95,75,182,.08), transparent);
  pointer-events: none; border-radius: 28px 28px 0 0;
}

.lbf-reg-search-wrap {
  display: flex; align-items: center; gap: .75rem; flex: 1;
  border-radius: 20px; border: 1px solid #d8e1f2;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: .875rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  transition: box-shadow .2s;
}
.lbf-reg-search-wrap:focus-within { box-shadow: 0 0 0 2px rgba(15,70,200,.15); }

.lbf-reg-search-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 14px; flex-shrink: 0;
  background: #f7f9fe; color: #0f46c8;
  box-shadow: inset 0 0 0 1px rgba(95,75,182,.10);
}
.lbf-reg-search-icon svg { width: 1rem; height: 1rem; }

.lbf-reg-search-label {
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: #6f7b91; margin-bottom: .25rem;
}
.lbf-reg-search-input {
  display: block; width: 100%; border: none; background: transparent; outline: none;
  font-size: .875rem; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: #0b1736;
  padding: 0; box-shadow: none;
}
.lbf-reg-search-input::placeholder { color: #94a3b8; }
.lbf-reg-search-input:focus { box-shadow: none; }

.lbf-reg-filters {
  display: flex; flex-wrap: wrap; gap: .625rem;
}

.lbf-reg-filter-btn {
  border-radius: 999px; padding: .5rem 1rem;
  font-size: .875rem; font-weight: 700; cursor: pointer; border: none;
  background: linear-gradient(180deg, #fff 0%, #f6f8fd 100%);
  color: #0b1736;
  box-shadow: 0 8px 18px rgba(14,30,84,.04), inset 0 0 0 1px rgba(95,75,182,.10);
  transition: transform .3s, box-shadow .3s, background .2s, color .2s;
}
.lbf-reg-filter-btn:hover { transform: translateY(-2px) scale(1.01); }
.lbf-reg-filter-btn:active { transform: scale(.98); }
.lbf-reg-filter-btn--on {
  background: linear-gradient(180deg, #0f46c8 0%, #0a3497 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15,70,200,.18);
}

/* ════════════════════════════════════════════════════════════
   §2 CARDS GRID
════════════════════════════════════════════════════════════ */
.lbf-reg-cards-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .lbf-reg-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lbf-reg-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1280px) { .lbf-reg-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1536px) { .lbf-reg-cards-grid { grid-template-columns: repeat(5, 1fr); gap: .875rem; } }

.lbf-reg-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: 22px; border: 1px solid #d8e1f2;
  background: rgba(255,255,255,.90); overflow: hidden;
  box-shadow: 0 12px 28px rgba(8,29,84,.08);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.lbf-reg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0,55,167,.16);
  border-color: #c0cef0;
}

.lbf-reg-card__photo-wrap {
  position: relative; height: 9rem; overflow: hidden; flex-shrink: 0;
}
.lbf-reg-card__photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.lbf-reg-card:hover .lbf-reg-card__photo { transform: scale(1.06); }
.lbf-reg-card__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,.78) 0%, rgba(2,6,23,.16) 55%, transparent 100%);
}
.lbf-reg-card__group-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(255,255,255,.92); border-radius: 999px;
  padding: .25rem .75rem;
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: #0f172a;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.lbf-reg-card__photo-footer {
  position: absolute; bottom: .75rem; left: .75rem; right: .75rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem;
}
.lbf-reg-card__eyebrow {
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: rgba(255,255,255,.72); margin-bottom: .25rem;
}
.lbf-reg-card__title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.15rem; font-weight: 600; line-height: 1.2; color: #fff; margin: 0;
}
.lbf-reg-card__icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,255,255,.18); color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(7,22,59,.18);
  transition: transform .3s, background .3s, box-shadow .3s;
}
.lbf-reg-card:hover .lbf-reg-card__icon-wrap {
  transform: scale(1.1);
  background: rgba(255,255,255,.24);
  box-shadow: 0 12px 24px rgba(95,75,182,.24);
}
.lbf-reg-card__icon-wrap svg { width: 1.25rem; height: 1.25rem; transition: transform .3s color .3s; }
.lbf-reg-card:hover .lbf-reg-card__icon-wrap svg { transform: scale(1.1); color: #f3c303; }

.lbf-reg-card__body {
  display: flex; flex-direction: column; flex: 1; padding: 1rem;
}
.lbf-reg-card__copy {
  font-size: .8125rem; line-height: 1.6; color: #42506b; margin: 0 0 .75rem;
}
.lbf-reg-card__meta-box {
  display: grid; gap: .375rem; border-radius: 14px; border: 1px solid #d8e1f2;
  background: #f8faff; padding: .75rem; margin-bottom: .75rem;
}
.lbf-reg-card__meta-row {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8125rem; color: #42506b;
}
.lbf-reg-card__meta-icon { flex-shrink: 0; color: #0f46c8; }
.lbf-reg-card__meta-icon svg { width: 1rem; height: 1rem; margin-top: 1px; }

.lbf-reg-card__pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem;
}
.lbf-reg-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; border: 1px solid rgba(95,75,182,.18);
  background: linear-gradient(180deg, #f7f9fe 0%, #fbfcff 100%);
  padding: .375rem .75rem;
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: #0f46c8;
}
.lbf-reg-pill__dot {
  width: .375rem; height: .375rem; border-radius: 50%; background: #5f4bb6; flex-shrink: 0;
}

.lbf-reg-card__actions {
  display: flex; gap: .5rem; margin-top: auto; padding-top: 1rem;
}

/* ════════════════════════════════════════════════════════════
   COMPACT CARD — kicks in when cards get narrow (4-up / 5-up).
   Shorter photo, smaller type, copy clamped to 2 lines, tighter
   meta + pills, stacked smaller buttons, so 5 fit cleanly per row.
════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .lbf-reg-card { border-radius: 18px; }
  .lbf-reg-card__photo-wrap { height: 7rem; }
  .lbf-reg-card__title { font-size: .98rem; }
  .lbf-reg-card__eyebrow { font-size: .56rem; letter-spacing: .12em; }
  .lbf-reg-card__icon-wrap { width: 2.1rem; height: 2.1rem; border-radius: 12px; }
  .lbf-reg-card__icon-wrap svg { width: 1.05rem; height: 1.05rem; }
  .lbf-reg-card__body { padding: .8rem; }
  .lbf-reg-card__copy {
    font-size: .75rem; line-height: 1.45; margin: 0 0 .6rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lbf-reg-card__meta-box { gap: .25rem; padding: .55rem; border-radius: 11px; margin-bottom: .6rem; }
  .lbf-reg-card__meta-row { font-size: .72rem; gap: .4rem; }
  .lbf-reg-card__meta-icon svg { width: .85rem; height: .85rem; }
  .lbf-reg-card__pills { gap: .35rem; margin-bottom: .6rem; }
  .lbf-reg-pill { padding: .26rem .55rem; font-size: .55rem; letter-spacing: .1em; gap: .35rem; }
  .lbf-reg-card__actions { flex-direction: column; gap: .4rem; padding-top: .7rem; }
  .lbf-reg-card__actions .lbf-reg-btn { width: 100%; padding: .5rem .75rem; font-size: .72rem; }
}
@media (min-width: 1536px) {
  .lbf-reg-card__photo-wrap { height: 6.5rem; }
  .lbf-reg-card__title { font-size: .92rem; }
  .lbf-reg-card__body { padding: .7rem; }
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.lbf-reg-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: 999px; border: none;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .3s, box-shadow .3s, filter .3s;
}
.lbf-reg-btn:hover { transform: translateY(-2px); }
.lbf-reg-btn:active { transform: scale(.98); }
.lbf-reg-btn-label { position: relative; z-index: 1; }

/* Shimmer sweep */
.lbf-reg-shimmer {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.30), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
  pointer-events: none;
}
.lbf-reg-btn:hover .lbf-reg-shimmer { transform: translateX(100%); }

/* Hero primary */
.lbf-reg-btn--hero-primary {
  background: linear-gradient(to right, #3b5bfd, #6f58c9);
  color: #fff; padding: .625rem 1.25rem; font-size: .75rem;
  box-shadow: 0 12px 24px rgba(0,55,167,.35);
}
@media (min-width: 768px) { .lbf-reg-btn--hero-primary { padding: .75rem 1.5rem; font-size: .875rem; } }
.lbf-reg-btn--hero-primary:hover { filter: brightness(1.10); box-shadow: 0 18px 32px rgba(0,55,167,.42); }
/* Hero secondary — matched to primary per request (same gradient + shadow) */
.lbf-reg-btn--hero-secondary {
  background: linear-gradient(to right, #3b5bfd, #6f58c9); color: #fff;
  padding: .625rem 1.25rem; font-size: .75rem;
  box-shadow: 0 12px 24px rgba(0,55,167,.35);
}
@media (min-width: 768px) { .lbf-reg-btn--hero-secondary { padding: .75rem 1.5rem; font-size: .875rem; } }
.lbf-reg-btn--hero-secondary:hover { filter: brightness(1.10); box-shadow: 0 18px 32px rgba(0,55,167,.42); }
/* Card primary */
.lbf-reg-btn--card-primary {
  flex: 1; background: linear-gradient(to right, #2452df, #5e63e8);
  color: #fff; padding: .625rem 1rem; font-size: .875rem;
  box-shadow: 0 12px 22px rgba(36,82,223,.22);
}
.lbf-reg-btn--card-primary:hover { box-shadow: 0 18px 30px rgba(36,82,223,.28); }
/* Card secondary */
.lbf-reg-btn--card-secondary {
  background: #fff; color: #0f172a; padding: .625rem 1rem; font-size: .875rem;
  border: 1px solid #d8e1f2;
}
.lbf-reg-btn--card-secondary:hover { background: #f8faff; box-shadow: 0 10px 20px rgba(14,30,84,.08); }

/* Empty state */
.lbf-reg-empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem;
  color: #6f7b91; font-size: .9375rem;
}

/* ════════════════════════════════════════════════════════════
   §3 BOTTOM GRID: FAQ + HELP PANEL
════════════════════════════════════════════════════════════ */
.lbf-reg-bottom-grid {
  display: grid; gap: 1.5rem;
  padding: 1rem 1rem 1.5rem;
}
@media (min-width: 768px)  { .lbf-reg-bottom-grid { padding: .75rem 1.5rem 1.5rem; } }
@media (min-width: 1280px) { .lbf-reg-bottom-grid { grid-template-columns: .92fr 1.08fr; align-items: start; } }

/* Top divider */
.lbf-reg-bottom-grid::before {
  content: ''; display: block; grid-column: 1 / -1; height: 1px;
  background: linear-gradient(to right, transparent, #dbe4f6, transparent);
}

/* ── FAQ card ── */
.lbf-reg-faq-card {
  position: relative; overflow: hidden;
  border-radius: 28px; border: 1px solid #d8e1f2;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  min-height: 100%;
  box-shadow: 0 16px 36px rgba(8,29,84,.08), inset 0 0 0 1px rgba(95,75,182,.10);
}
.lbf-reg-faq-tint {
  position: absolute; inset-x: 0; top: 0; height: 5rem; pointer-events: none;
  background: linear-gradient(180deg, rgba(95,75,182,.08), transparent);
}
.lbf-reg-faq-inner { position: relative; padding: 1.5rem; }
@media (min-width: 768px) { .lbf-reg-faq-inner { padding: 2rem; } }

.lbf-reg-eyebrow-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; padding: .5rem .875rem; margin-bottom: 1rem;
  font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
  color: #0f46c8; background: #f7f9fe;
  box-shadow: inset 0 0 0 1px rgba(95,75,182,.10);
}
.lbf-reg-eyebrow-pill svg { width: .875rem; height: .875rem; }

.lbf-reg-faq-h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem); font-weight: 600; line-height: 1.25;
  color: #0b1736; margin: 0;
}
.lbf-reg-faq-sub {
  margin: 1rem 0 0; max-width: 40ch;
  font-size: .9375rem; line-height: 2; color: #42506b;
}

.lbf-reg-faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

.lbf-reg-faq-item { overflow: hidden; border-radius: 18px; border: 1px solid #d8e1f2; background: rgba(255,255,255,.92); box-shadow: 0 8px 18px rgba(14,30,84,.05); transition: box-shadow .3s; }
.lbf-reg-faq-item:hover { box-shadow: 0 12px 22px rgba(14,30,84,.08); }

.lbf-reg-faq-q {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .875rem 1rem; text-align: left; cursor: pointer;
  background: transparent; border: none; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: .8125rem; font-weight: 600; line-height: 1.5; color: #0b1736;
  transition: background .2s;
}
.lbf-reg-faq-q:hover { background: #f8faff; }
.lbf-reg-faq-q:active { transform: scale(.995); }
.lbf-reg-faq-chevron { display: flex; flex-shrink: 0; color: #0f46c8; transition: transform .3s; }
.lbf-reg-faq-q--open .lbf-reg-faq-chevron { transform: rotate(180deg); }

.lbf-reg-faq-a {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease;
  color: #42506b;
}
.lbf-reg-faq-a > p { overflow: hidden; font-size: .8125rem; line-height: 1.6; margin: 0; padding: 0 1rem; }
.lbf-reg-faq-a--open { grid-template-rows: 1fr; }
.lbf-reg-faq-a--open > p { padding: 0 1rem 1rem; }

/* ── Help panel ── */
.lbf-reg-help-card {
  position: relative; overflow: hidden;
  border-radius: 28px; border: 1px solid #d8e1f2;
  background: linear-gradient(135deg, rgba(111,88,201,.18), rgba(0,55,167,.16));
  min-height: 100%;
  box-shadow: 0 20px 44px rgba(31,38,135,.12), inset 0 0 0 1px rgba(255,255,255,.18);
}
.lbf-reg-help-tint {
  position: absolute; inset-x: 0; top: 0; height: 6rem; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent);
}
.lbf-reg-help-orb {
  position: absolute; left: 1.5rem; top: 1.5rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); opacity: .4; pointer-events: none;
}
.lbf-reg-help-inner { position: relative; padding: 1.5rem; }
@media (min-width: 768px) { .lbf-reg-help-inner { padding: 2rem; } }

.lbf-reg-help-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
  border-radius: 999px; padding: .5rem .875rem;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em;
  background: linear-gradient(180deg, #eef2ff 0%, #f7f8ff 100%); color: #0f46c8;
  box-shadow: 0 10px 24px rgba(15,70,200,.08), inset 0 0 0 1px rgba(95,75,182,.10);
}
.lbf-reg-help-eyebrow__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: rgba(95,75,182,.10); color: #5f4bb6; gap: .25rem;
}
.lbf-reg-help-eyebrow__dot {
  display: inline-block; width: .375rem; height: .375rem; border-radius: 50%;
  background: #5f4bb6; flex-shrink: 0;
}
.lbf-reg-help-eyebrow svg { width: .75rem; height: .75rem; }

.lbf-reg-help-h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-weight: 600; line-height: 1.04;
  letter-spacing: -.03em; color: #0b1736; margin: 0;
}
.lbf-reg-help-sub {
  margin: 1rem 0 0; max-width: 40ch;
  font-size: .9375rem; line-height: 2; color: #42506b;
}

.lbf-reg-help-grid {
  display: grid; gap: .75rem; margin-top: 1.5rem;
}
@media (min-width: 768px) { .lbf-reg-help-grid { grid-template-columns: repeat(2, 1fr); } }

.lbf-reg-help-row {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  border-radius: 18px; border: 1px solid #d8e1f2;
  background: #fff; padding: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(14,30,84,.05), inset 0 0 0 1px rgba(95,75,182,.10);
  transition: background .2s, box-shadow .3s, transform .2s;
}
.lbf-reg-help-row:hover {
  background: #fcfdff;
  box-shadow: 0 16px 28px rgba(14,30,84,.08);
  transform: translateY(-1px);
}
.lbf-reg-help-row:focus { outline: 2px solid rgba(15,70,200,.25); outline-offset: 2px; }
.lbf-reg-help-row > div:first-child {
  min-width: 0; /* allow flex child to shrink */
  flex: 1;
}
.lbf-reg-help-row__label {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: #6f7b91;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lbf-reg-help-row__email {
  margin-top: .2rem; font-size: .78rem; font-weight: 600; color: #0b1736;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lbf-reg-help-row__icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 14px; flex-shrink: 0;
  border: 1px solid rgba(15,70,200,.12); background: #f7f9fe; color: #0f46c8;
  box-shadow: 0 8px 18px rgba(14,30,84,.05);
  transition: transform .3s, box-shadow .3s, background .2s, color .2s;
}
.lbf-reg-help-row:hover .lbf-reg-help-row__icon-wrap {
  transform: scale(1.1);
  background: #fff;
  box-shadow: 0 12px 24px rgba(95,75,182,.20);
  color: #f3c303;
}
.lbf-reg-help-row__icon-wrap svg { width: 1rem; height: 1rem; transition: transform .3s, color .3s; }
.lbf-reg-help-row:hover .lbf-reg-help-row__icon-wrap svg { transform: scale(1.1); }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .lbf-reg-hero-img, .lbf-reg-card__photo, .lbf-reg-card, .lbf-reg-tile,
  .lbf-reg-btn, .lbf-reg-shimmer, .lbf-reg-filter-btn,
  .lbf-reg-faq-chevron, .lbf-reg-faq-a { transition: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   v29.38.18: Registration Manager status states.
   The lbf-content plugin's Registration Manager controls these.
   Closed cards never render; full cards get a banner + disabled
   primary button + optional note.
   ───────────────────────────────────────────────────────────── */

/* Full card: diagonal banner top-right of the photo */
.lbf-reg-card--full {
    position: relative;
    overflow: hidden;
}
.lbf-reg-card--full .lbf-reg-card__full-banner {
    position: absolute;
    top: 28px;
    right: -58px;
    z-index: 10;
    transform: rotate(35deg);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #991b1b 100%);
    color: #fff;
    font-family: 'Barlow Condensed', 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.32em;
    padding: 10px 70px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.55), inset 0 0 0 2px rgba(255,255,255,0.35), 0 0 0 1px rgba(0,0,0,0.15);
    pointer-events: none;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    animation: lbf-full-pulse 2.2s ease-in-out infinite;
    will-change: box-shadow;
}
@keyframes lbf-full-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(220, 38, 38, 0.55), inset 0 0 0 2px rgba(255,255,255,0.35), 0 0 0 1px rgba(0,0,0,0.15); }
    50%      { box-shadow: 0 14px 40px rgba(220, 38, 38, 0.80), inset 0 0 0 2px rgba(255,255,255,0.55), 0 0 0 1px rgba(0,0,0,0.20); }
}
@media (prefers-reduced-motion: reduce) {
    .lbf-reg-card--full .lbf-reg-card__full-banner { animation: none; }
}

/* Slightly desaturate the photo on full cards so the banner reads */
.lbf-reg-card--full .lbf-reg-card__photo {
    filter: saturate(0.6) brightness(0.85);
}

/* The optional note line under the meta block */
.lbf-reg-card__full-note {
    margin-top: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border: 1px solid #fdba74;
    border-left: 4px solid #f3c303;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #7c2d12;
    font-weight: 600;
}

/* Disabled buttons on full cards — applies to BOTH primary and secondary */
.lbf-reg-btn--disabled {
    cursor: not-allowed !important;
    opacity: 0.55 !important;
    pointer-events: none !important;
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%) !important;
    color: #fff !important;
    box-shadow: none !important;
    border-color: #64748b !important;
}
.lbf-reg-btn--disabled .lbf-reg-btn-label {
    color: #fff !important;
}
/* Secondary disabled keeps the same grey treatment as primary for consistency */
.lbf-reg-btn--card-secondary.lbf-reg-btn--disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}

/* v30.0.0: All-forms-Closed empty state */
.lbf-reg-all-closed {
    grid-column: 1 / -1;
    padding: 56px 32px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 24px;
}
.lbf-reg-all-closed__icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.lbf-reg-all-closed__h {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #1e1b4b;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.lbf-reg-all-closed__p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #5f6b7a;
    max-width: 480px;
    margin: 0 auto;
}
