/* ============================================================
   LBN – Lions Business Network  |  Premium Stylesheet v2.0
   Works as Bootstrap 5 override + custom design system
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --lbn-navy:        #0C2B56;
  --lbn-navy-dark:   #081e3d;
  --lbn-navy-mid:    #123a6e;
  --lbn-navy-light:  #1a4a7a;
  --lbn-gold:        #D4A843;
  --lbn-gold-dark:   #b8922f;
  --lbn-gold-light:  #f0c96a;
  --lbn-gold-pale:   #fdf4e0;
  --lbn-white:       #ffffff;
  --lbn-bg:          #f8fafc;
  --lbn-bg-alt:      #f1f5f9;
  --lbn-text:        #1e293b;
  --lbn-text-muted:  #64748b;
  --lbn-text-light:  #94a3b8;
  --lbn-border:      #e2e8f0;
  --lbn-success:     #22c55e;
  --lbn-error:       #ef4444;

  --shadow-xs: 0 1px 2px rgba(12,43,86,.06);
  --shadow-sm: 0 2px 8px rgba(12,43,86,.08);
  --shadow-md: 0 4px 20px rgba(12,43,86,.12);
  --shadow-lg: 0 8px 40px rgba(12,43,86,.16);
  --shadow-xl: 0 16px 60px rgba(12,43,86,.20);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-btn: 999px;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all .25s ease;
  --header-h: 74px;
  --site-container-max: 1280px;

}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--lbn-text);
  background: var(--lbn-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--lbn-navy);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--lbn-gold-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  color: var(--lbn-navy);
  font-weight: 700;
  line-height:1 ;
}

p { color: var(--lbn-text-muted); }

@media (min-width: 1200px) {
  .container {
    max-width: var(--site-container-max);
  }
}

.section-eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lbn-gold-dark);
  /* background: var(--lbn-gold-pale); */
  /* border: 1px solid rgba(212,168,67,.3);
  border-radius: 100px; */
  padding: 5px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--lbn-navy);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--lbn-text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-lbn-primary,
.btn-lbn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-lbn-gold {
  background: linear-gradient(rgb(230, 196, 99), rgb(199, 154, 63));
  color: var(--lbn-white);
  border-color: rgb(199, 154, 63);
}
.btn-lbn-gold:hover {
  background: linear-gradient(rgb(220, 186, 89), rgb(179, 134, 53));
  border-color: rgb(179, 134, 53);
  color: var(--lbn-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(199, 154, 63, 0.45);
}

.btn-lbn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--lbn-navy);
  color: #fff;
  border: 2px solid var(--lbn-navy);
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-lbn-navy:hover {
  background: var(--lbn-navy-dark);
  border-color: var(--lbn-navy-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-lbn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--lbn-navy);
  border: 2px solid var(--lbn-navy);
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-lbn-outline:hover {
  background: var(--lbn-navy);
  color: #fff;
}

.btn-lbn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-lbn-outline-white:hover {
  background: var(--lbn-gold);
  border-color: var(--lbn-gold);
  color: var(--lbn-navy);
}

.btn-lbn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--lbn-gold);
  border: 2px solid var(--lbn-gold);
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-lbn-gold-outline:hover {
  background: var(--lbn-gold);
  color: var(--lbn-white);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-nav-ghost {
  font-size: 15px;
  font-weight: 600;
  color: var(--lbn-navy);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--lbn-border);
  transition: var(--transition);
}
.btn-nav-ghost:hover { color: var(--lbn-navy); background: var(--lbn-bg-alt); border-color: var(--lbn-navy); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 6px 8px 6px 20px;
  border-radius: var(--radius-btn);
}
.header-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lbn-navy);
  color: var(--lbn-white);
  flex-shrink: 0;
}
.header-cta-arrow i {
  font-size: 20px;
  line-height: 1;
}
.btn-nav-ghost.header-cta {
  background: var(--lbn-gold);
  border-color: var(--lbn-gold);
  color: var(--lbn-navy);
}
.btn-nav-ghost.header-cta:hover {
  background: var(--lbn-gold-dark);
  border-color: var(--lbn-gold-dark);
  color: var(--lbn-navy);
  box-shadow: 0 6px 20px rgba(212,168,67,.4);
}
.btn-lbn-gold.btn-sm.header-cta {
  padding: 6px 8px 6px 20px;
  font-size: 13px;
}
.navbar-actions .btn-nav-ghost,
.navbar-actions .btn-lbn-gold,
.navbar-actions .btn-lbn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  min-width: 130px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  border-width: 2px;
  border-radius: var(--radius-btn);
  flex-shrink: 0;
}

.lbn-site-header .portal-topbar-label {
  font-weight: 600;
}

.navbar-actions .btn-nav-ghost {
  border-style: solid;
  border-color: var(--lbn-border);
}

.navbar-actions .btn-lbn-gold {
  border-style: solid;
  border-color: rgb(199, 154, 63);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.lbn-site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--lbn-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s, background .3s;
  isolation: isolate;
}
.lbn-site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}
.lbn-site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.lbn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}
.lbn-navbar {
  display: contents;
}
.navbar-logo {
  height: 40px;
  width: auto;
}
.lbn-navbar .nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lbn-text) !important;
  padding: 7px 10px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
/* .lbn-site-header .nav-link:hover,
.lbn-site-header .nav-link.active {
  color: var(--lbn-navy) !important;
  background: var(--lbn-bg-alt);
} */
.lbn-site-header .dropdown-menu {
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 240px;
  z-index: 1060;
}
.lbn-site-header .dropdown-item {
  font-size: 13.5px;
  color: var(--lbn-text);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  white-space: normal;
}
.lbn-site-header .dropdown-item:hover,
.lbn-site-header .dropdown-item:focus {
  background: var(--lbn-bg-alt);
  color: var(--lbn-navy);
}
.lbn-site-header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 14px !important;
}
.lbn-site-header .dropdown-toggle::after {
  margin-left: 0.25em;
  margin-right: 0.15em;
  flex-shrink: 0;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .lbn-site-header .nav-item.dropdown {
    position: relative;
  }
  .lbn-site-header .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
  }
  .lbn-site-header .navbar-nav .dropdown-menu.dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .lbn-nav-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
    visibility: visible;
    pointer-events: auto;
  }
  .lbn-site-header .navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .lbn-site-header .navbar-actions {
    margin-left: 16px !important;
    gap: 10px;
  }
}

.lbn-navbar-bar {
  min-height: var(--header-h);
  flex-shrink: 0;
}

.lbn-mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--lbn-border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--lbn-navy);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}
.lbn-mobile-menu-btn:focus { box-shadow: none; outline: none; }
/* .lbn-mobile-menu-btn:focus-visible {
  outline: 2px solid var(--lbn-navy);
  outline-offset: 2px;
} */

.lbn-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1040;
}
.lbn-nav-overlay[hidden] { display: none !important; }

.lbn-nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 12px 16px;
  border-bottom: 1px solid var(--lbn-border);
  font-weight: 600;
  color: var(--lbn-navy);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1;
  flex-shrink: 0;
}
.lbn-nav-drawer-header button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--lbn-text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 991.98px) {
  .lbn-mobile-menu-btn { display: inline-flex; }

  body.lbn-nav-open { overflow: hidden; }

  .lbn-header-inner {
    justify-content: space-between;
  }

  .lbn-navbar-bar {
    width: 100%;
  }

  body.lbn-nav-open .lbn-site-header {
    z-index: 1052;
  }

  .lbn-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    z-index: 1052;
    background: rgba(255, 255, 255, 0.98);
    border-right: 1px solid var(--lbn-border);
    box-shadow: var(--shadow-xl);
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  body.lbn-nav-open .lbn-nav-panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .lbn-site-header .navbar-nav {
    width: 100%;
    padding: 8px 12px 0;
  }
  .lbn-site-header .nav-item {
    width: 100%;
  }
  .lbn-site-header .nav-link {
    padding: 10px 12px !important;
  }
  .lbn-site-header .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 8px;
    margin: 0;
    min-width: 0;
    background: transparent;
  }
  .lbn-site-header .dropdown-menu.show {
    display: block;
  }
  .lbn-site-header .dropdown-item {
    padding: 8px 12px;
  }
  .navbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px;
    padding: 12px 12px 0;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  .navbar-actions .btn-nav-ghost,
  .navbar-actions .btn-lbn-gold,
  .navbar-actions .btn-lbn-navy {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.lbn-hero {
  position: relative;
  background: linear-gradient(135deg, var(--lbn-navy-dark) 0%, var(--lbn-navy) 45%, var(--lbn-navy-mid) 100%);
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
  overflow: hidden;
}
.lbn-hero > .container { width: 100%; }
.lbn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(212,168,67,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26,74,122,.5) 0%, transparent 60%);
  pointer-events: none;
}
.lbn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.2);
  border: 1px solid rgba(212,168,67,.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lbn-gold-light);
  margin-bottom: 16px;
  max-width: 100%;
}
.hero-badge i { font-size: 14px; color: var(--lbn-gold); }
.lbn-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.lbn-hero h1 .text-gold { color: var(--lbn-gold); }
.lbn-hero .hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.hero-trust-dots { display: flex; gap: -4px; }
.hero-trust-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: linear-gradient(135deg, #3d6da8, #1a4a7a);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 600;
  margin-left: -8px;
}
.hero-trust-dot:first-child { margin-left: 0; }

/* ── STATS BAR ────────────────────────────────────────────── */
.lbn-stats {
  background: #fff;
  min-height: 8vh;
  display: flex;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.lbn-stats > .container { width: 100%; }
.stats-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  width: 100%;
  text-align: center;
}
.stat-item {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 500;
  color: rgb(107, 114, 133);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.5px;
  flex: 0 0 auto;
}
.stat-divider {
  color: rgb(107, 114, 133);
  opacity: 0.45;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 300;
  line-height: 1;
  flex: 0 0 auto;
  padding: 0 2px;
}
.lbn-stats .stat-number {
  display: inline;
  font-size: inherit;
  font-weight: 600;
  color: var(--lbn-navy);
  margin-bottom: 0;
  letter-spacing: inherit;
}

/* ── HERO CAROUSEL ───────────────────────────────────────── */
.hero-carousel {
  width: 100%;
  border-radius: 24px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(212,168,67,.5);
  box-shadow:
    0 20px 60px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(255,255,255,.12);
}
.hero-carousel .carousel-inner {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-carousel .carousel-item,
.hero-carousel img {
  height: min(380px, calc(70vh - 124px));
  object-fit: cover;
}

/* ── SECTION WRAPPER ──────────────────────────────────────── */
.lbn-section { padding: 48px 0;  }
.lbn-section-sm { padding: 60px 0; }
.lbn-section-alt { background: var(--lbn-bg); }
.lbn-section-dark {
  background: linear-gradient(135deg, var(--lbn-navy-dark) 0%, var(--lbn-navy) 100%);
  color: #fff;
}
.lbn-section-dark .section-title { color: #fff; }
.lbn-section-dark .section-subtitle { color: rgba(255,255,255,.75); }

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-img-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--lbn-navy) 0%, var(--lbn-navy-mid) 100%);
  border-radius: var(--radius-xl);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,.7);
}
.about-img-placeholder i { font-size: 56px; color: var(--lbn-gold); opacity: .6; }
.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-float .badge-icon {
  width: 48px; height: 48px;
  background: var(--lbn-gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.about-badge-float .badge-icon i { font-size: 24px; color: var(--lbn-gold-dark); }
.about-badge-float .badge-text strong {
  display: block; font-size: 18px; font-weight: 800; color: var(--lbn-navy);
}
.about-badge-float .badge-text span { font-size: 12px; color: var(--lbn-text-muted); }

.value-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lbn-bg);
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.value-pill:hover { border-color: var(--lbn-gold); background: var(--lbn-gold-pale); box-shadow: var(--shadow-sm); }
.value-pill-icon {
  width: 36px; height: 36px;
  background: var(--lbn-navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-pill-icon i { color: var(--lbn-gold); font-size: 16px; }
.value-pill strong { font-size: 14px; font-weight: 600; color: var(--lbn-navy); display: block; }
.value-pill span { font-size: 13px; color: var(--lbn-text-muted); line-height: 1.4; }

.about-vm-card {
  background: var(--lbn-bg);
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.about-vm-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--lbn-navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.about-vm-text {
  font-size: 15px;
  color: var(--lbn-text-muted);
  line-height: 1.8;
  margin: 0;
}
.about-mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.about-mission-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--lbn-text);
  line-height: 1.6;
}
.about-mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lbn-gold);
}

/* ── WHY JOIN CARDS ───────────────────────────────────────── */
.why-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lbn-gold), var(--lbn-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,168,67,.3);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--lbn-navy);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--lbn-gold); }
.why-icon i { font-size: 26px; color: var(--lbn-gold-dark); transition: var(--transition); }
.why-card:hover .why-icon i { color: var(--lbn-navy); }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--lbn-navy); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--lbn-text-muted); line-height: 1.7; margin: 0; }

/* ── OUR CHAPTERS ─────────────────────────────────────────── */
.chapter-showcase-card {
  background: var(--lbn-white);
  border: 1px solid #efe7d6;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.chapter-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 168, 67, 0.45);
}
.chapter-showcase-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--lbn-bg-alt);
}
.chapter-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.chapter-showcase-card:hover .chapter-showcase-media img {
  transform: scale(1.04);
}
.chapter-showcase-body {
  padding: 30px 32px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.chapter-showcase-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--lbn-navy);
  margin: 0 0 8px;
  line-height: 1.2;
}
.chapter-showcase-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5c6473;
  margin: 0 0 20px;
  flex: 1;
}
.chapter-showcase-explore {
  display: inline-block;
  align-self: flex-start;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--lbn-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--lbn-gold);
  padding-bottom: 3px;
  transition: var(--transition);
}
.chapter-showcase-explore:hover {
  color: var(--lbn-gold-dark);
  border-bottom-color: var(--lbn-gold-dark);
}
@media (max-width: 575.98px) {
  .chapter-showcase-body {
    padding: 24px 22px 28px;
  }
  .chapter-showcase-card h3 {
    font-size: 22px;
  }
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.how-step-connector {
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--lbn-gold), rgba(212,168,67,.2));
  display: none;
}
.how-step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--lbn-gold), var(--lbn-gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  color: var(--lbn-navy);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(212,168,67,.4);
  transition: var(--transition);
}
.how-step:hover .how-step-num { transform: scale(1.1); box-shadow: 0 6px 20px rgba(212,168,67,.5); }
.how-step h4 { font-size: 16px; font-weight: 700; color: var(--lbn-navy); margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--lbn-text-muted); line-height: 1.65; margin: 0; }

/* ── BENEFITS LIST ────────────────────────────────────────── */
.benefit-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.benefit-item:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(212,168,67,.4);
  transform: translateX(4px);
}
.benefit-item-icon {
  width: 44px; height: 44px;
  background: var(--lbn-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-item-icon i { font-size: 20px; color: var(--lbn-navy); }
.benefit-item h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.benefit-item p { font-size: 13.5px; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industry-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: default;
  transition: var(--transition);
  height: 100%;
}
.industry-chip:hover {
  border-color: var(--lbn-gold);
  background: var(--lbn-gold-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-chip i { font-size: 28px; color: var(--lbn-navy); transition: var(--transition); }
.industry-chip:hover i { color: var(--lbn-gold-dark); }
.industry-chip span { font-size: 13px; font-weight: 600; color: var(--lbn-text); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(212,168,67,.3);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 80px;
  line-height: 1;
  color: var(--lbn-gold);
  opacity: .25;
  font-family: Georgia, serif;
}
.testimonial-stars { color: var(--lbn-gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--lbn-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lbn-navy), var(--lbn-navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--lbn-gold);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--lbn-navy); }
.testimonial-author span { font-size: 12.5px; color: var(--lbn-text-muted); }

/* ── BLOG / INSIGHTS ──────────────────────────────────────── */

.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.blog-section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lbn-gold-dark);
  margin-bottom: 14px;
}
.blog-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4.6vw, 40px);
  line-height: 1.12;
  color: #1c2438;
  margin: 0;
  font-weight: 400;
}
.blog-section-view-all {
  font-weight: 700;
  font-size: 15px;
  color: var(--lbn-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--lbn-gold);
  padding-bottom: 3px;
  transition: var(--transition);
  white-space: nowrap;
}
.blog-section-view-all:hover {
  color: var(--lbn-gold-dark);
  border-bottom-color: var(--lbn-gold-dark);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.blog-card {
  background: var(--lbn-white);
  border: 1px solid #efe7d6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 168, 67, 0.45);
}
.blog-card-media {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: var(--lbn-bg-alt);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.blog-card-category {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lbn-gold-dark);
}
.blog-card-time {
  font-size: 12.5px;
  color: #9aa0ae;
}
.blog-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.26;
  color: #1c2438;
  margin: 0 0 12px;
  flex: 1;
  font-weight: 400;
}
.blog-card-read {
  display: inline-block;
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  color: var(--lbn-navy);
  text-decoration: none;
  transition: var(--transition);
}
.blog-card-read:hover {
  color: var(--lbn-gold-dark);
}
@media (max-width: 767.98px) {
  .blog-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .blog-section-header {
    align-items: flex-start;
  }
}

/* ── CHAPTER FINDER ───────────────────────────────────────── */
.chapter-finder-block {
  background: linear-gradient(135deg, var(--lbn-navy-dark) 0%, var(--lbn-navy) 60%, var(--lbn-navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.chapter-finder-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 50%, rgba(212,168,67,.15) 0%, transparent 65%);
  pointer-events: none;
}
.chapter-finder-block h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.chapter-finder-block p { color: rgba(255,255,255,.8); margin-bottom: 0; }
.chapter-form-row {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin-top: 28px;
}
.chapter-form-row select {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--font);
  font-size: 14.5px;
  outline: none;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.chapter-form-row select:focus { border-color: var(--lbn-gold); background: rgba(255,255,255,.15); }
.chapter-form-row select option { color: var(--lbn-text); background: #fff; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(212,168,67,.4); }
.faq-item[open] {
  border-color: var(--lbn-gold);
  box-shadow: 0 4px 16px rgba(212,168,67,.12);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--lbn-navy);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lbn-bg);
  border: 1.5px solid var(--lbn-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--lbn-gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] .faq-icon { background: var(--lbn-gold); border-color: var(--lbn-gold); color: var(--lbn-navy); transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--lbn-text-muted); font-size: 15px; line-height: 1.75; }
.faq-item summary:hover { background: var(--lbn-bg); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--lbn-navy-dark), var(--lbn-navy));
  border-top: 4px solid var(--lbn-navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,168,67,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 16px; margin: 0; }
.cta-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--lbn-gold); display: block; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.lbn-page-hero {
  background: linear-gradient(135deg, var(--lbn-navy-dark) 0%, var(--lbn-navy) 60%, var(--lbn-navy-mid) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lbn-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.lbn-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.lbn-page-hero p { font-size: 17px; color: rgba(255,255,255,.8); margin: 0; max-width: 600px; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--lbn-gold); }
.page-hero-breadcrumb i { font-size: 11px; }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.lbn-legal-content {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--lbn-text-muted);
}
.lbn-legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lbn-navy);
  margin: 36px 0 14px;
}
.lbn-legal-content h2:first-of-type { margin-top: 28px; }
.lbn-legal-content p { margin-bottom: 16px; }
.lbn-legal-content ul {
  margin: 0 0 18px;
  padding-left: 1.35rem;
}
.lbn-legal-content li { margin-bottom: 8px; }
.lbn-legal-content a {
  color: var(--lbn-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lbn-legal-content a:hover { color: var(--lbn-gold-dark); }
.lbn-legal-updated {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lbn-gold-dark);
  margin-bottom: 24px !important;
}
.lbn-legal-content .lbn-contact-details {
  margin: 8px 0 24px;
  padding: 20px 24px;
  background: var(--lbn-gold-pale);
  border-left: 4px solid var(--lbn-gold);
  border-radius: 0 8px 8px 0;
}

/* ── JOIN STEPS ───────────────────────────────────────────── */
.join-step-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.join-step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,168,67,.4);
  transform: translateX(4px);
}
.join-step-badge {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--lbn-gold), var(--lbn-gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  color: var(--lbn-navy);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,168,67,.35);
}
.join-step-card h3 { font-size: 16.5px; font-weight: 700; color: var(--lbn-navy); margin-bottom: 6px; }
.join-step-card p { font-size: 14.5px; color: var(--lbn-text-muted); margin: 0; line-height: 1.7; }

.join-steps-column .join-step-card {
  padding: 22px 24px;
  gap: 18px;
}
.join-steps-column .join-step-card:last-child { margin-bottom: 0; }
@media (min-width: 992px) {
  .join-steps-column { position: sticky; top: 100px; }
}

/* ── RULES LIST ───────────────────────────────────────────── */
.rules-card {
  background: var(--lbn-navy);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.rules-card::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(212,168,67,.08);
  pointer-events: none;
}
.rules-card h2 { color: #fff; margin-bottom: 24px; }
.rule-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rule-check-item:last-child { border-bottom: none; }
.rule-check-icon {
  width: 26px; height: 26px;
  background: var(--lbn-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.rule-check-icon i { font-size: 12px; color: var(--lbn-navy); font-weight: 700; }
.rule-check-item span { font-size: 14.5px; color: rgba(255,255,255,.85); line-height: 1.7; }

/* ── REGISTRATION FORM ────────────────────────────────────── */
.lbn-form-card {
  background: #fff;

  box-shadow: var(--shadow-xl);
  padding: 52px 56px;
  border: 1px solid var(--lbn-border);
}
.lbn-form-header { text-align: center; margin-bottom: 36px; }
.lbn-form-header h2 { font-size: 1.75rem; color: var(--lbn-navy); margin-bottom: 8px; }
.lbn-form-header p { color: var(--lbn-text-muted); font-size: 15px; }

.lbn-form-group { margin-bottom: 22px; }
.lbn-form-group label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--lbn-navy);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.lbn-form-group .required-star { color: var(--lbn-gold-dark); margin-left: 2px; }
.lbn-form-group input,
.lbn-form-group select,
.lbn-form-group textarea {
  width: 100%;
  padding: 16.5px 16px;
  border: 1.5px solid var(--lbn-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--lbn-text);
  background: var(--lbn-bg);
  transition: var(--transition);
  outline: none;
}
.lbn-form-group input:focus,
.lbn-form-group select:focus,
.lbn-form-group textarea:focus {
  border-color: var(--lbn-navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(12,43,86,.08);
}
.lbn-form-group input::placeholder,
.lbn-form-group textarea::placeholder { color: var(--lbn-text-light); }
.lbn-form-group textarea { resize: vertical; min-height: 110px; }
.lbn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.lbn-form-grid .lbn-form-group { margin-bottom: 0; }

.lbn-alert {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lbn-alert-error {
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  color: #b91c1c;
}
.lbn-alert-error i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.lbn-alert-error ul { margin: 6px 0 0 16px; }
.lbn-alert-error li { margin-bottom: 4px; }

/* ── GUEST INVITE BANNER ──────────────────────────────────── */
.guest-invite-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(26, 43, 74, 0.06), rgba(212, 168, 67, 0.12));
  border: 1.5px solid rgba(212, 168, 67, 0.45);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.guest-invite-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lbn-gold-pale);
  color: var(--lbn-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.guest-invite-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lbn-gold-dark);
  margin-bottom: 4px;
}
.guest-invite-title {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--lbn-navy);
}
.guest-invite-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 13.5px;
  color: var(--lbn-text-muted);
  margin: 0 0 8px;
}
.guest-invite-meta i {
  color: var(--lbn-gold-dark);
  margin-right: 4px;
}
.guest-invite-referrer {
  font-size: 13.5px;
  color: var(--lbn-navy);
  margin: 0;
  line-height: 1.5;
}

/* ── SUCCESS PAGE ─────────────────────────────────────────── */
.success-hero {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: var(--radius-xl);
  padding: 52px;
  text-align: center;
  border: 2px solid #86efac;
}
.success-check {
  width: 80px; height: 80px;
  background: var(--lbn-success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(34,197,94,.3);
}
.success-check i { font-size: 36px; color: #fff; }
.success-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px 44px;
  border: 1px solid var(--lbn-border);
}
.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--lbn-border);
  font-size: 14.5px;
}
.success-detail-row:last-child { border-bottom: none; }
.success-detail-row .label { color: var(--lbn-text-muted); font-weight: 500; }
.success-detail-row .value { font-weight: 700; color: var(--lbn-navy); }
.success-ref {
  font-family: 'Courier New', monospace;
  background: var(--lbn-bg);
  border: 1px solid var(--lbn-border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: rgba(212,168,67,.4); }
.contact-info-icon {
  width: 52px; height: 52px;
  background: var(--lbn-navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { font-size: 22px; color: var(--lbn-gold); }
.contact-info-card h5 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--lbn-text-muted); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 16px; font-weight: 600; color: var(--lbn-navy); margin: 0; }

.lbn-contact-details {
  background: var(--lbn-navy);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 24px;
  color: #fff;
}
.lbn-contact-details--compact {
  margin-top: 28px;
  margin-bottom: 0;
  padding: 22px 24px;
}
.lbn-contact-details-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lbn-gold);
  margin-bottom: 6px;
}
.lbn-contact-details-person {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.lbn-contact-details-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition);
}
.lbn-contact-details-link:last-child { margin-bottom: 0; }
.lbn-contact-details-link i { color: var(--lbn-gold); font-size: 16px; }
.lbn-contact-details-link:hover { color: var(--lbn-gold); }

.quick-action-card {
  background: var(--lbn-bg);
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  height: 100%;
}
.quick-action-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.quick-action-card p { font-size: 14.5px; margin-bottom: 24px; color: var(--lbn-text-muted); }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
/* ── ABOUT – VISION & MISSION ─────────────────────────────── */
.about-vm-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-vm-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 168, 67, 0.45);
}
.mission-pillar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: 12px;
  padding: 16px 18px;
  height: 100%;
  transition: var(--transition);
}
.mission-pillar-card:hover {
  border-color: var(--lbn-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.mission-pillar-icon {
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--lbn-navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mission-pillar-icon i {
  font-size: 18px;
  color: var(--lbn-gold-light);
}
.mission-pillar-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--lbn-navy);
  line-height: 1.4;
}

/* ── CORE VALUES ──────────────────────────────────────────── */
.core-value-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}
.core-value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--lbn-gold); }
.cv-icon {
  width: 64px; height: 64px;
  background: var(--lbn-navy);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.core-value-card:hover .cv-icon { background: var(--lbn-gold); }
.cv-icon i { font-size: 28px; color: var(--lbn-gold-light); transition: var(--transition); }
.core-value-card:hover .cv-icon i { color: var(--lbn-navy); }
.core-value-card h4 { font-size: 16px; font-weight: 700; color: var(--lbn-navy); margin-bottom: 8px; }
.core-value-card p { font-size: 14px; color: var(--lbn-text-muted); line-height: 1.7; margin: 0; }

/* ── ADMIN – LOGIN ────────────────────────────────────────── */
.admin-login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.admin-login-brand {
  background: linear-gradient(135deg, var(--lbn-navy-dark) 0%, var(--lbn-navy) 60%, var(--lbn-navy-mid) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 64px;
  position: relative;
  overflow: hidden;
}
.admin-login-brand::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(212,168,67,.12) 0%, transparent 65%);
  pointer-events: none;
}
.admin-login-brand::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.admin-brand-content { position: relative; z-index: 1; }
.admin-brand-logo { height: 52px; margin-bottom: 40px; }
.admin-brand-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.admin-brand-desc { color: rgba(255,255,255,.75); font-size: 15.5px; line-height: 1.75; margin-bottom: 40px; max-width: 380px; }
.admin-brand-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-bottom: 14px;
}
.admin-brand-stat i { color: var(--lbn-gold); font-size: 16px; }

.admin-login-form-wrap {
  background: var(--lbn-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}
.admin-login-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--lbn-border);
}
.admin-login-card h2 { font-size: 1.6rem; color: var(--lbn-navy); margin-bottom: 6px; }
.admin-login-card > p { font-size: 14.5px; color: var(--lbn-text-muted); margin-bottom: 32px; }
.admin-login-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--lbn-text-muted);
  text-decoration: none;
  margin-top: 24px;
  transition: var(--transition);
}
.admin-login-back:hover { color: var(--lbn-navy); }

/* ── ADMIN – PANEL ────────────────────────────────────────── */
.admin-topbar {
  background: var(--lbn-navy);
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.admin-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}
.admin-brand-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-brand-bar img { height: 36px; }
.admin-brand-bar .divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.2);
}
.admin-brand-bar span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.admin-topbar-actions { display: flex; gap: 10px; }
.admin-topbar .btn-ghost-white {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-btn);
  padding: 7px 14px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font);
}
.admin-topbar .btn-ghost-white:hover { background: rgba(255,255,255,.15); color: #fff; }

.admin-page-wrap { background: var(--lbn-bg); min-height: calc(100vh - 64px); padding: 36px 0; }
.admin-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.admin-page-title { font-size: 1.6rem; color: var(--lbn-navy); margin-bottom: 4px; }
.admin-page-subtitle { font-size: 14px; color: var(--lbn-text-muted); }

.admin-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.admin-search-input {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px 11px 40px;
  border: 1.5px solid var(--lbn-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--lbn-text);
  background: #fff;
  outline: none;
  transition: var(--transition);
}
.admin-search-input:focus { border-color: var(--lbn-navy); box-shadow: 0 0 0 3px rgba(12,43,86,.08); }
.admin-search-wrap { position: relative; flex: 1; }
.admin-search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--lbn-text-light);
  font-size: 15px;
  pointer-events: none;
}

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.admin-stat-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.admin-stat-icon.navy { background: rgba(12,43,86,.1); }
.admin-stat-icon.gold { background: var(--lbn-gold-pale); }
.admin-stat-icon.green { background: #f0fdf4; }
.admin-stat-icon.navy i { color: var(--lbn-navy); }
.admin-stat-icon.gold i { color: var(--lbn-gold-dark); }
.admin-stat-icon.green i { color: #16a34a; }
.admin-stat-icon i { font-size: 22px; }
.admin-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--lbn-navy); line-height: 1; margin-bottom: 4px; }
.admin-stat-label { font-size: 13px; color: var(--lbn-text-muted); }

.admin-table-card {
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--lbn-border);
  flex-wrap: wrap;
  gap: 12px;
}
.admin-table-card-header h3 { font-size: 15px; font-weight: 700; color: var(--lbn-navy); margin: 0; }
.admin-table-wrapper { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 900px;
}
.admin-table th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--lbn-text-muted);
  background: var(--lbn-bg);
  border-bottom: 1px solid var(--lbn-border);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--lbn-border);
  color: var(--lbn-text);
  vertical-align: middle;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: var(--lbn-bg); }
.admin-table .cell-name { font-weight: 600; color: var(--lbn-navy); white-space: nowrap; }
.admin-table .cell-email a { color: var(--lbn-navy); }
.admin-table .cell-email a:hover { color: var(--lbn-gold-dark); }
.admin-table .cell-date { white-space: nowrap; color: var(--lbn-text-muted); }
.admin-table .cell-message { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(12,43,86,.08);
  color: var(--lbn-navy);
}
.admin-empty-state {
  text-align: center;
  padding: 72px 24px;
  color: var(--lbn-text-muted);
}
.admin-empty-state i { font-size: 48px; color: var(--lbn-text-light); display: block; margin-bottom: 16px; }
.admin-empty-state h4 { font-size: 18px; color: var(--lbn-navy); margin-bottom: 8px; }
.admin-table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--lbn-border);
  font-size: 13px;
  color: var(--lbn-text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── 404 PAGE ─────────────────────────────────────────────── */
.page-404 {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: var(--lbn-bg);
}
.page-404-num {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--lbn-gold);
  opacity: .25;
  margin-bottom: -20px;
}
.page-404 h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.page-404 p { font-size: 16px; max-width: 440px; margin: 0 auto 32px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.lbn-footer {
  background: var(--lbn-navy-dark);
  position: relative;
}
.footer-wave {
  line-height: 0;
  overflow: hidden;
}
.footer-wave svg { display: block; width: 100%; height: 60px; }
.footer-main { padding: 48px 0 56px; }
.footer-logo { height: 52px; margin-bottom: 20px; display: block; }
.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lbn-gold);
  margin-bottom: 10px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--lbn-gold); border-color: var(--lbn-gold); color: var(--lbn-navy); }
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--lbn-gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--lbn-gold); font-size: 16px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--lbn-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { color: rgba(255,255,255,.5); text-decoration: none; transition: var(--transition); }
.footer-legal-links a:hover { color: rgba(255,255,255,.85); }

/* ── ANIMATIONS & UTILITIES ───────────────────────────────── */
.lbn-divider {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--lbn-gold), var(--lbn-gold-light));
  border-radius: 4px;
  margin: 14px 0 24px;
}
.lbn-divider.center { margin: 14px auto 24px; }

.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.text-gold { color: var(--lbn-gold) !important; }
.text-navy { color: var(--lbn-navy) !important; }
.bg-navy { background: var(--lbn-navy) !important; }
.bg-gold { background: var(--lbn-gold) !important; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lbn-form-card { padding: 40px 36px; }
  .chapter-finder-block { padding: 44px 36px; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .admin-login-page { grid-template-columns: 1fr; }
  .admin-login-brand { display: none; }
}

@media (max-width: 991.98px) {
  .lbn-stats {
    min-height: auto;
  }
  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    justify-items: center;
  }
  .stat-divider { display: none; }
  .stat-item {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .lbn-hero { padding: 40px 0; }
  .lbn-stats {
    padding: 24px 0;
  }
  .hero-badge {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .hero-carousel {
    max-width: 100%;
    padding: 10px;
  }
  .hero-carousel .carousel-item,
  .hero-carousel img {
    height: 240px;
  }
  .stat-item {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
  }
  .about-badge-float {
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
  }
  .lbn-section { padding: 60px 0; }
  .chapter-finder-block { padding: 32px 24px; }
  .chapter-form-row { flex-direction: column; }
  .lbn-form-card { padding: 28px 24px; }
  .lbn-form-grid { grid-template-columns: 1fr; }
  .rules-card { padding: 28px 24px; }
  .cta-banner { padding: 50px 0; }
  .footer-main { padding: 36px 0 40px; }
  .footer-legal-links { flex-wrap: wrap; gap: 14px; }
  .admin-stats-row { grid-template-columns: 1fr; }
  .admin-login-form-wrap { padding: 32px 20px; }
  .admin-login-card { padding: 32px 28px; }
  .success-card { padding: 28px 24px; }
  .success-hero { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-lbn-gold,
  .hero-actions .btn-lbn-outline-white { width: 100%; justify-content: center; }
  .stats-row { gap: 16px 12px; }
  .stat-item { font-size: 0.85rem; }
  .lbn-form-card { padding: 24px 18px; }
}

/* ── MEMBER DIRECTORY (PUBLIC) ───────────────────────────── */
.lbn-directory-section {
  background: var(--lbn-bg);
}

.lbn-directory-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.lbn-directory-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: visible;
}

.lbn-directory-search-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.lbn-directory-select-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lbn-directory-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lbn-text-light);
  font-size: 16px;
  pointer-events: none;
}

.lbn-directory-search-input {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--lbn-border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 16px;
  color: var(--lbn-text);
  background: #fff;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.lbn-directory-search-input::placeholder {
  color: var(--lbn-text-light);
}

.lbn-directory-search-input:focus {
  border-color: var(--lbn-navy);
  box-shadow: 0 0 0 3px rgba(12, 43, 86, 0.08);
}

@media (min-width: 768px) {
  .lbn-directory-select {
    font-size: 14px;
  }

  .lbn-directory-search-input {
    font-size: 14px;
  }
}

.lbn-directory-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.lbn-directory-select-wrap {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.lbn-directory-select {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  height: 44px;
  padding: 0 40px 0 14px;
  border: 1.5px solid var(--lbn-border);
  border-radius: var(--radius-sm);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: var(--lbn-text);
  font-size: 16px;
  font-family: var(--font);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.lbn-directory-select:focus {
  border-color: var(--lbn-navy);
  box-shadow: 0 0 0 3px rgba(12, 43, 86, 0.08);
  outline: none;
}

.lbn-directory-meta {
  margin: 0;
  font-size: 14px;
  color: var(--lbn-text-muted);
}

.lbn-directory-meta strong {
  color: var(--lbn-navy);
}

.lbn-directory-chapters {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.lbn-directory-chapter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.lbn-directory-chapter-header h2 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  color: var(--lbn-navy);
}

.lbn-directory-chapter-header p {
  margin: 0;
  font-size: 14px;
  color: var(--lbn-text-muted);
}

.lbn-directory-chapter-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--lbn-text-muted);
  white-space: nowrap;
}

.lbn-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.lbn-directory-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 18px 20px;
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.lbn-directory-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 43, 86, 0.16);
}

.lbn-directory-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lbn-navy), var(--lbn-navy-mid));
  color: var(--lbn-gold);
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.lbn-directory-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lbn-directory-card-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--lbn-navy);
  line-height: 1.35;
}

.lbn-directory-card-company,
.lbn-directory-card-profession {
  margin: 0;
  font-size: 13px;
  color: var(--lbn-text-muted);
  line-height: 1.45;
}

.lbn-directory-card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(12, 43, 86, 0.06);
  color: var(--lbn-navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.lbn-directory-empty {
  text-align: center;
  padding: 56px 24px;
  background: #fff;
  border: 1px solid var(--lbn-border);
  border-radius: var(--radius-lg);
}

.lbn-directory-empty i {
  font-size: 42px;
  color: var(--lbn-gold-dark);
  margin-bottom: 14px;
  display: block;
}

.lbn-directory-empty h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.lbn-directory-empty p {
  margin: 0;
  color: var(--lbn-text-muted);
}

.lbn-directory-login-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--lbn-navy-dark), var(--lbn-navy));
  color: #fff;
}

.lbn-directory-login-cta h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #fff;
}

.lbn-directory-login-cta p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 767.98px) {
  .lbn-directory-toolbar {
    gap: 10px;
    margin-bottom: 22px;
  }

  .lbn-directory-filters,
  .lbn-directory-select-row {
    gap: 10px;
  }

  .lbn-directory-select-row {
    grid-template-columns: 1fr;
  }

  .lbn-directory-search-input,
  .lbn-directory-select {
    font-size: 16px;
  }

  .lbn-directory-login-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.lbn-directory-chapter[hidden],
.lbn-directory-card[hidden],
.lbn-directory-empty[hidden] {
  display: none !important;
}
