/* ============================================================
   LEADBRIDGE CIRCLE — MAIN CSS
   Design System: Variables, Reset, Typography, Components
   Version: 1.0.0
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap&font-display=swap');

/* ============================================================
   1. CSS VARIABLES — DARK MODE (Default)
   ============================================================ */
:root,
[data-theme="dark"] {
  /* Backgrounds */
  --bg:          #07070e;
  --bg2:         #0c0c18;
  --bg3:         #0f0f1e;
  --card:        #111120;
  --card2:       #141428;
  --card-hover:  #181830;

  /* Borders */
  --border:      #1a1a2e;
  --border2:     #232340;
  --border3:     #2e2e50;

  /* Brand */
  --gold:        #f5a623;
  --gold2:       #ffd07a;
  --gold-dim:    rgba(245, 166, 35, 0.12);
  --gold-glow:   rgba(245, 166, 35, 0.25);

  /* Accents */
  --blue:        #4f8fff;
  --blue-dim:    rgba(79, 143, 255, 0.12);
  --pink:        #ff4f8f;
  --pink-dim:    rgba(255, 79, 143, 0.12);
  --purple:      #a78bfa;
  --purple-dim:  rgba(167, 139, 250, 0.12);

  /* Status */
  --success:     #22c55e;
  --success-dim: rgba(34, 197, 94, 0.12);
  --warning:     #f59e0b;
  --error:       #ef4444;
  --error-dim:   rgba(239, 68, 68, 0.12);

  /* Text */
  --text:        #eeeef8;
  --text2:       #c8c8e0;
  --muted:       #6e6e8a;  /* improved from #52526e for contrast */
  --muted2:      #9898b8;  /* improved from #7878a0 for contrast */

  /* Logo colours */
  --logo-lead:   #f5a623;
  --logo-bridge: #eeeef8;
  --logo-circle: #52526e;
  --logo-node:   #f5a623;

  /* Icon colours (dark bg) */
  --icon-bridge: #f5a623;
  --icon-bg:     rgba(245, 166, 35, 0.1);
  --icon-ring:   rgba(245, 166, 35, 0.2);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 24px rgba(245,166,35,0.2);

  /* Nav */
  --nav-bg:      rgba(7, 7, 14, 0.92);
  --nav-border:  #1a1a2e;

  /* Toggle button */
  --toggle-bg:       #1a1a2e;
  --toggle-btn:      #2e2e50;
  --toggle-btn-text: #7878a0;
  --toggle-active:   #f5a623;
  --toggle-active-text: #000;
}

/* ============================================================
   2. CSS VARIABLES — LIGHT MODE
   ============================================================ */
[data-theme="light"] {
  /* Backgrounds */
  --bg:          #f8f8fc;
  --bg2:         #f0f0f8;
  --bg3:         #eaeaf4;
  --card:        #ffffff;
  --card2:       #f4f4fc;
  --card-hover:  #ececf8;

  /* Borders */
  --border:      #e0e0f0;
  --border2:     #d0d0e8;
  --border3:     #c0c0d8;

  /* Brand */
  --gold:        #c47800;
  --gold2:       #e08800;
  --gold-dim:    rgba(196, 120, 0, 0.08);
  --gold-glow:   rgba(196, 120, 0, 0.2);

  /* Accents */
  --blue:        #2563eb;
  --blue-dim:    rgba(37, 99, 235, 0.08);
  --pink:        #db2777;
  --pink-dim:    rgba(219, 39, 119, 0.08);
  --purple:      #7c3aed;
  --purple-dim:  rgba(124, 58, 237, 0.08);

  /* Status */
  --success:     #16a34a;
  --success-dim: rgba(22, 163, 74, 0.08);
  --warning:     #d97706;
  --error:       #dc2626;
  --error-dim:   rgba(220, 38, 38, 0.08);

  /* Text */
  --text:        #0f0f1e;
  --text2:       #2a2a42;
  --muted:       #606080;
  --muted2:      #505070;  /* improved contrast for light mode */

  /* Logo colours */
  --logo-lead:   #c47800;
  --logo-bridge: #0f0f1e;
  --logo-circle: #9090b0;
  --logo-node:   #c47800;

  /* Icon colours (light bg) */
  --icon-bridge: #c47800;
  --icon-bg:     rgba(196, 120, 0, 0.08);
  --icon-ring:   rgba(196, 120, 0, 0.2);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 24px rgba(196,120,0,0.15);

  /* Nav */
  --nav-bg:      rgba(248, 248, 252, 0.95);
  --nav-border:  #e0e0f0;

  /* Toggle */
  --toggle-bg:       #e8e8f4;
  --toggle-btn:      #d8d8f0;
  --toggle-btn-text: #6868a0;
  --toggle-active:   #c47800;
  --toggle-active-text: #fff;
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 100vh;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}
[data-theme="light"] body::before { opacity: 0.15; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold2); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: 'Outfit', sans-serif; }
input, select, textarea { font-family: 'Outfit', sans-serif; }

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
}

h1 { font-size: clamp(32px, 6vw, 72px); }
h2 { font-size: clamp(24px, 4vw, 48px); }
h3 { font-size: clamp(20px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { color: var(--text2); line-height: 1.7; }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--muted2); }
.text-center  { text-align: center; }
.font-light   { font-weight: 300; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 900; }
.uppercase    { text-transform: uppercase; letter-spacing: 2px; }

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
}

.container-sm { max-width: 760px; margin: 0 auto; padding: 0 5vw; }
.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 5vw; }

.section { padding: 90px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg2); }

.flex   { display: flex; }
.grid   { display: grid; }
.block  { display: block; }
.hidden { display: none; }

.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap     { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* Section labels — span not heading for correct hierarchy */
.sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.sec-title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--text);
}

.sec-sub {
  font-size: 15px;
  color: var(--muted2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 52px;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  width: 100%;
}

.text-center .sec-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold2);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border2);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 14px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-sm { padding: 8px 16px; font-size: 11px; border-radius: 8px; }

/* ============================================================
   8. CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.25s ease;
}

.card:hover {
  background: var(--card-hover);
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-padded { padding: 24px; }
.card-lg { border-radius: 24px; }

/* ============================================================
   9. BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.badge-gold    { background: var(--gold-dim);   color: var(--gold); }
.badge-blue    { background: var(--blue-dim);   color: var(--blue); }
.badge-pink    { background: var(--pink-dim);   color: var(--pink); }
.badge-purple  { background: var(--purple-dim); color: var(--purple); }
.badge-success { background: var(--success-dim); color: var(--success); }
.badge-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted2);
}

/* ============================================================
   10. FORM ELEMENTS
   ============================================================ */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* ============================================================
   11. LOGO COMPONENT
   ============================================================ */
.lbc-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 1;
  user-select: none;
}

.lbc-icon svg { display: block; transition: transform 0.3s ease; }
.lbc-logo:hover .lbc-icon svg { transform: scale(1.05); }

.lbc-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lbc-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.lbc-lead   { color: var(--logo-lead); }
.lbc-bridge { color: var(--logo-bridge); }

.lbc-circle-line {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: var(--muted2);
  font-size: 9px;
  padding-left: 0;
}

/* Sizes */
.logo-xl .lbc-icon svg  { width: 72px; height: 72px; }
.logo-xl .lbc-name      { font-size: 56px; }
.logo-xl .lbc-circle-line { font-size: 12px; letter-spacing: 3.5px; }
.logo-xl                { gap: 18px; }

.logo-lg .lbc-icon svg  { width: 48px; height: 48px; }
.logo-lg .lbc-name      { font-size: 36px; }
.logo-lg .lbc-circle-line { font-size: 10px; letter-spacing: 3px; }
.logo-lg                { gap: 14px; }

.logo-md .lbc-icon svg  { width: 36px; height: 36px; }
.logo-md .lbc-name      { font-size: 26px; }
.logo-md .lbc-circle-line { font-size: 8px; letter-spacing: 2.8px; }
.logo-md                { gap: 11px; }

.logo-sm .lbc-icon svg  { width: 28px; height: 28px; }
.logo-sm .lbc-name      { font-size: 20px; }
.logo-sm .lbc-circle-line { display: none; }
.logo-sm                { gap: 9px; }

/* ============================================================
   12. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s, border-color 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted2);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  background: var(--toggle-bg);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--border);
}

.theme-toggle button {
  background: none;
  border: none;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--toggle-btn-text);
  transition: all 0.2s;
}

.theme-toggle button.active {
  background: var(--toggle-active);
  color: var(--toggle-active-text);
}

/* Mobile menu button */
.nav-mobile-btn {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
  cursor: pointer;
}

/* Mobile menu drawer */
/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  right: 0;
  width: 280px;
  height: calc(100vh - 58px);
  z-index: 99998;
  background: var(--card);
  border-left: 1px solid var(--border2);
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

/* Overlay behind menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted2);
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mobile-menu-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.mobile-menu-nav a:hover {
  color: var(--gold);
  background: var(--gold-dim);
}
.mobile-menu-nav a:last-child { border-bottom: none; }

.mobile-menu-actions {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.mobile-menu-toggle {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
  background: var(--bg2);
}
.mobile-menu-toggle .theme-toggle-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted2);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.mobile-menu-toggle .theme-toggle-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ============================================================
   13. HERO SECTION
   ============================================================ */
.site-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 5vw 80px;
  position: relative;
  overflow: hidden;
}

/* Background orbs */
.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.hero-orb-1 {
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.09) 0%, transparent 65%);
}
.hero-orb-2 {
  bottom: 0; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,143,255,0.06) 0%, transparent 65%);
}
.hero-orb-3 {
  bottom: 10%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.05) 0%, transparent 65%);
}
[data-theme="light"] .hero-orb-1 {
  background: radial-gradient(ellipse, rgba(196,120,0,0.06) 0%, transparent 65%);
}

/* Grid lines */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-glow);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-size: clamp(34px, 6.5vw, 78px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeDown 0.6s 0.1s ease both;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-title .dim {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted2);
  margin-top: 8px;
  line-height: 1.4;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--muted2);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeDown 0.6s 0.2s ease both;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

/* Hero search */
.hero-search-wrap {
  width: 100%;
  max-width: 660px;
  margin: 0 auto 16px;
  animation: fadeDown 0.6s 0.3s ease both;
}

.hero-search {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 40px var(--gold-dim);
}

.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 16px 20px;
}

.hero-search input::placeholder { color: var(--muted); }

.hero-search-divider {
  width: 1px;
  background: var(--border2);
  margin: 10px 0;
}

.hero-search select {
  background: none;
  border: none;
  outline: none;
  color: var(--muted2);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  padding: 0 16px;
  cursor: pointer;
  min-width: 120px;
}

.hero-search-btn {
  background: var(--gold);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search-btn:hover { background: var(--gold2); }

/* Hero quick tags */
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeDown 0.6s 0.35s ease both;
}

.hero-tag {
  font-size: 12px;
  color: var(--muted2);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.hero-tag:hover {
  border-color: var(--gold-glow);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ============================================================
   14. STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--card2); }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before { opacity: 1; }

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* ============================================================
   15. LISTING CARDS
   ============================================================ */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.listing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
}

.listing-card-head {
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.listing-avatar {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.listing-card-body { padding: 14px 20px 16px; flex: 1; }
.listing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}

.listing-meta {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.listing-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.listing-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted2);
  font-weight: 500;
}

.listing-card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-contact-blur {
  font-size: 13px;
  color: var(--muted2);
  filter: blur(5px);
  user-select: none;
  letter-spacing: 1px;
}

.listing-unlock-btn {
  background: var(--gold);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.listing-unlock-btn:hover {
  background: var(--gold2);
  transform: scale(1.04);
}

/* ============================================================
   16. CATEGORY TYPE CARDS
   ============================================================ */
.type-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px;
}

/* Center lone card if less than 5 */
.type-grid .type-card:last-child:nth-child(5n - 4) { grid-column: 1; }
.type-grid .type-card:last-child:nth-child(5n - 3) { grid-column: 2; }
.type-grid .type-card:last-child:nth-child(5n - 2) { grid-column: 3; }
.type-grid .type-card:last-child:nth-child(5n - 1) { grid-column: 4; }

/* If only 5 items — all in one row */
.type-grid.five-col { grid-template-columns: repeat(5, 1fr) !important; }

.type-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center !important;
}

.type-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  text-align: center !important;
}

.type-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center !important;
}

.type-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center !important;
  display: block;
}

.type-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.type-card:hover {
  transform: translateY(-5px);
}

.type-card:hover::before { opacity: 1; }

/* Colour variants */
.type-biz::before   { background: radial-gradient(circle at 50% 0%, var(--gold-dim), transparent 70%); }
.type-free::before  { background: radial-gradient(circle at 50% 0%, var(--blue-dim), transparent 70%); }
.type-svc::before   { background: radial-gradient(circle at 50% 0%, var(--success-dim), transparent 70%); }
.type-job::before   { background: radial-gradient(circle at 50% 0%, var(--pink-dim), transparent 70%); }
.type-train::before { background: radial-gradient(circle at 50% 0%, var(--purple-dim), transparent 70%); }

.type-biz:hover   { border-color: var(--gold-glow); }
.type-free:hover  { border-color: rgba(79,143,255,0.3); }
.type-svc:hover   { border-color: rgba(34,197,94,0.3); }
.type-job:hover   { border-color: rgba(255,79,143,0.3); }
.type-train:hover { border-color: rgba(167,139,250,0.3); }

.type-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.type-biz .type-icon   { background: var(--gold-dim); }
.type-free .type-icon  { background: var(--blue-dim); }
.type-svc .type-icon   { background: var(--success-dim); }
.type-job .type-icon   { background: var(--pink-dim); }
.type-train .type-icon { background: var(--purple-dim); }

.type-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.type-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.type-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.type-biz .type-count   { color: var(--gold); }
.type-free .type-count  { color: var(--blue); }
.type-svc .type-count   { color: var(--success); }
.type-job .type-count   { color: var(--pink); }
.type-train .type-count { color: var(--purple); }

.type-arrow {
  display: none;
}

/* ============================================================
   17. HOW IT WORKS
   ============================================================ */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.hiw-step {
  background: var(--card);
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
}
.hiw-step:hover { background: var(--card2); }

.hiw-step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.hiw-step-icon { font-size: 32px; margin-bottom: 14px; }

.hiw-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.hiw-step-desc { font-size: 13px; color: var(--muted2); line-height: 1.65; }

.hiw-connector {
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid var(--gold);
  z-index: 2;
  opacity: 0.4;
}

/* ============================================================
   18. SEO PROMO BAND
   ============================================================ */
.seo-promo {
  background: linear-gradient(135deg, var(--gold-dim), var(--blue-dim));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 5vw;
}

.seo-promo-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.seo-promo-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 28px 24px;
  min-width: 220px;
  text-align: center;
}

.seo-promo-price {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}
.seo-promo-price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.seo-promo-features {
  list-style: none;
  text-align: left;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-promo-features li {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.seo-promo-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   19. CITIES CLOUD
   ============================================================ */
.cities-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.city-chip {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted2);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.city-chip:hover,
.city-chip.active {
  background: var(--gold-dim);
  border-color: var(--gold-glow);
  color: var(--gold);
}

/* ============================================================
   20. FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid var(--border2);
  background: none;
  color: var(--muted2);
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ============================================================
   21. MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: scaleIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--muted2);
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text); }

.modal h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.modal > p {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 24px;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 280px;
  margin: 14px 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text2);
  font-weight: 700;
}
.social-btn:hover {
  border-color: var(--gold-glow);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 12px; color: var(--muted2); }

/* ============================================================
   23. DIVIDERS
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 48px 0;
}

/* ============================================================
   24. ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   25. UTILITY CLASSES
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }

.rounded-sm { border-radius: 8px; }
.rounded    { border-radius: 12px; }
.rounded-lg { border-radius: 18px; }
.rounded-xl { border-radius: 24px; }
.rounded-full { border-radius: 100px; }

.w-full { width: 100%; }

/* ============================================================
   26. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-promo-inner { grid-template-columns: 1fr; }
  .seo-promo-card { min-width: unset; }
}

@media (max-width: 1200px) {
  .type-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Hide ALL desktop nav items - only logo + hamburger on mobile */
  .nav-links { display: none; }
  .nav-desktop-only { display: none !important; }
  .nav-mobile-btn { display: flex; }
  .site-nav { padding: 10px 4vw; }

  /* Smaller logo on mobile */
  .site-nav .lbc-logo { gap: 7px; }
  .site-nav .lbc-icon svg { width: 26px !important; height: 26px !important; }
  .site-nav .lbc-name { font-size: 18px !important; letter-spacing: -0.5px !important; }
  .site-nav .lbc-circle-line { font-size: 6px !important; letter-spacing: 2px !important; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }

  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-connector { display: none; }
  .listing-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .site-hero { padding: 90px 5vw 60px; }

  .hero-search { flex-direction: column; border-radius: 14px; }
  .hero-search input { padding: 14px 16px; }
  .hero-search-divider { width: 100%; height: 1px; margin: 0; }
  .hero-search select { padding: 12px 16px; border-top: 1px solid var(--border2); min-width: unset; }
  .hero-search-btn { padding: 14px; border-top: 1px solid var(--border2); }

  .type-grid { grid-template-columns: 1fr 1fr !important; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn-large { width: 80%; text-align: center; }
  .page-about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .page-contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr !important; }
  .hero-tags { gap: 6px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .sec-sub { margin-bottom: 36px; }
  .hero-badge { font-size: 9px; letter-spacing: 1.5px; padding: 6px 14px; }
}

/* ============================================================
   27. WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image { margin: 24px 0; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* Main content offset for fixed nav */
.site-content {
  padding-top: 58px;
  min-height: calc(100vh - 200px);
}

/* Inner pages */
.site-content .section:first-child,
.site-content main > .section:first-child {
  padding-top: 60px;
}

/* Homepage hero */
.site-hero { padding-top: 80px; }

/* ── HIVEPRESS PAGES — fix spacing ── */
/* HivePress injects content directly into site-content div */
/* Give all HP pages top + bottom breathing room */
.site-content .hp-page,
.site-content .hp-listing-submit-page,
.site-content [class*="hp-"][class*="-page"],
.site-content > div[class*="hp-"] {
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}

/* Single listing — HivePress renders as WP post */
body.single-hp_listing .site-content,
body.single-hp_listing .entry-content {
  padding-top: 0 !important;
}
body.single-hp_listing .hp-listing-view-page {
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}

/* Account dashboard */
body.page .site-content > .hp-user-page {
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}

/* HivePress containers — max width */
.hp-container,
.hp-page .hp-container {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* ============================================================
   28. HIVEPRESS OVERRIDES
   ============================================================ */
/* Will be in hivepress.css — placeholder styles */
.hp-listing { background: var(--card); border: 1px solid var(--border); border-radius: 18px; }
.hp-button--submit { background: var(--gold) !important; color: #000 !important; font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; }
.hp-button--submit:hover { background: var(--gold2) !important; }
.hp-field__input { background: var(--bg2) !important; border-color: var(--border2) !important; color: var(--text) !important; font-family: 'Outfit', sans-serif !important; }
.hp-field__input:focus { border-color: var(--gold) !important; }

/* ============================================================
   29. LEGAL PAGES
   ============================================================ */
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-updated {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 8px;
}

.legal-content {
  line-height: 1.85;
  color: var(--text2);
}

.legal-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text2);
}

.legal-content ul,
.legal-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--gold2); }

.legal-content strong { color: var(--text); font-weight: 600; }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
  border-radius: 10px;
  overflow: hidden;
}

.legal-content table th {
  background: var(--card2);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border2);
}

.legal-content table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  vertical-align: top;
}

.legal-content table tr:last-child td { border-bottom: none; }
.legal-content table tr:nth-child(even) td { background: var(--bg2); }

.legal-nav-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--muted2);
}
.breadcrumb a { color: var(--muted2); }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   30. FOOTER COL TITLE (replaces h4 for heading hierarchy fix)
   ============================================================ */
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 18px;
}

/* ============================================================
   31. CTA BUTTON FIXES - No gap between buttons
   ============================================================ */
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   32. SEO LANDING PAGE GRIDS
   ============================================================ */
/* 4 col single row */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 3 col grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   33. NAV DROPDOWN
   ============================================================ */
.nav-dropdown {
  position: relative !important;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 8px;
  min-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 9999;
  list-style: none;
  margin-top: 8px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu > li { list-style: none; }

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text2) !important;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}
.nav-dropdown-menu li a:hover {
  background: var(--gold-dim);
  color: var(--gold) !important;
}

/* ── LISTINGS PAGE MOBILE ── */
@media (max-width: 768px) {
  .lbc-sidebar { display: none !important; }
  .lbc-listings-main-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-top: 24px !important;
  }
  .lbc-results-count {
    margin-top: 16px !important;
    padding-top: 0 !important;
  }
}

/* ── HAMBURGER BUTTON ── */
#mobileMenuBtn {
  display: none; /* hidden on desktop */
}
@media (max-width: 768px) {
  #mobileMenuBtn {
    display: flex !important;
  }
}
