/* =============================================================================
   CovenantHub — Modern Professional Design System v2
   Aesthetic: Clean SaaS — Crisp White + Deep Slate + Amber Gold
   Fonts: Outfit (display) + Inter (body) — sharp, modern, trustworthy
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:        #0d1117;
  --ink-80:     #1c2331;
  --ink-60:     #2d3748;
  --slate:      #4a5568;
  --muted:      #718096;
  --border:     #e2e8f0;
  --border-md:  #cbd5e0;
  --surface:    #f7f8fc;
  --white:      #ffffff;

  /* Brand */
  --amber:      #d97706;
  --amber-lt:   #f59e0b;
  --amber-pale: #fffbeb;
  --amber-glow: rgba(217,119,6,.12);

  /* Semantic */
  --green:      #059669;
  --green-lt:   #d1fae5;
  --red:        #dc2626;
  --red-lt:     #fee2e2;
  --blue:       #2563eb;
  --blue-lt:    #dbeafe;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadow */
  --s-xs: 0 1px 2px rgba(0,0,0,.05);
  --s-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --s:    0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
  --s-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --s-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.03);
  --s-xl: 0 25px 50px -12px rgba(0,0,0,.15);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    180ms;
  --t-md: 280ms;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink-60);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}
a { color: var(--amber); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--amber-lt); }
img { display: block; max-width: 100%; }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.ch-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b1929;
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: 64px;
  display: flex;
  align-items: center;
  width: 100%;
}

.ch-nav .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  overflow: visible;
  flex-wrap: nowrap;
}

.ch-nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--ink) !important;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.ch-nav-brand .logo-mark {
  width: 30px;
  height: 30px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-lt);
  font-size: .9rem;
  flex-shrink: 0;
}

.ch-nav-brand .logo-text { color: var(--ink); }
.ch-nav-brand .logo-text span { color: var(--amber); }

.ch-nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}

.ch-nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7) !important;
  padding: .4rem .75rem;
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.ch-nav-link:hover {
  color: rgba(255,255,255,.95) !important;
  background: rgba(255,255,255,.08);
}

.ch-nav-actions {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-left: auto;
  flex-shrink: 0;
}

.ch-nav-toggler {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  padding: .4rem .5rem;
  border-radius: 6px;
  color: white;
  flex-shrink: 0;
  line-height: 0;
}
.ch-nav-toggler:hover {
  background: rgba(255,255,255,.15);
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .875rem;
  line-height: 1;
  padding: .5625rem 1.125rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.btn-primary {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-60);
  border-color: var(--ink-60);
  box-shadow: var(--s-md);
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  color: var(--white) !important;
  border-color: var(--amber);
}
.btn-amber:hover {
  background: #b45309;
  border-color: #b45309;
  box-shadow: 0 4px 12px rgba(217,119,6,.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--slate) !important;
  border-color: var(--border-md);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--ink) !important;
  border-color: var(--border-md);
}

.btn-ghost-ink {
  background: transparent;
  color: rgba(255,255,255,.75) !important;
  border-color: rgba(255,255,255,.2);
}
.btn-ghost-ink:hover {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.95) !important;
}

.btn-sm  { font-size: .8125rem; padding: .4375rem .875rem; }
.btn-lg  { font-size: .9375rem; padding: .75rem 1.5rem; border-radius: var(--r); }
.btn-xl  { font-size: 1rem; padding: .875rem 2rem; border-radius: var(--r); }
.btn-pill{ border-radius: 999px !important; }
.btn-icon{ padding: .5rem; width: 36px; height: 36px; border-radius: var(--r-sm); }

/* ── Cards ───────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--s-sm);
  overflow: hidden;
  transition: box-shadow var(--t-md) var(--ease), border-color var(--t-md) var(--ease), transform var(--t-md) var(--ease);
}

.card-hover:hover {
  box-shadow: var(--s-lg);
  border-color: var(--border-md);
  transform: translateY(-2px);
}

.card-flat {
  box-shadow: none;
  border-color: var(--border);
}

.card-inset {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: none;
}

/* ── Badges & Tags ────────────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 500;
  padding: .2rem .625rem;
  border-radius: var(--r-xs);
  letter-spacing: .01em;
  white-space: nowrap;
}

.tag-verified { background: var(--green-lt); color: #065f46; }
.tag-pending  { background: #fef3c7; color: #92400e; }
.tag-faith    { background: var(--amber-pale); color: #78350f; border: 1px solid #fcd34d; }
.tag-type     { background: var(--surface); color: var(--slate); border: 1px solid var(--border); }
.tag-success  { background: var(--green-lt); color: #065f46; }
.tag-danger   { background: var(--red-lt); color: #991b1b; }
.tag-info     { background: var(--blue-lt); color: #1e40af; }
.tag-new      { background: var(--ink); color: var(--white); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }

/* ── Avatars ─────────────────────────────────────────────────────────────────── */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink-60);
  border: 1px solid var(--border);
}
.avatar-sm  { width: 32px; height: 32px; font-size: .8rem;  border-radius: 6px; }
.avatar-md  { width: 44px; height: 44px; font-size: 1rem;   border-radius: var(--r-sm); }
.avatar-lg  { width: 56px; height: 56px; font-size: 1.25rem; border-radius: var(--r); }
.avatar-xl  { width: 72px; height: 72px; font-size: 1.6rem; border-radius: var(--r); }
.avatar-round { border-radius: 50% !important; }
.avatar-ink { background: var(--ink); color: var(--amber-lt); border-color: transparent; }
.avatar-amber { background: var(--amber-pale); color: var(--amber); border-color: #fcd34d; }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .375rem;
  letter-spacing: -.01em;
  display: block;
}

.form-control, .form-select {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: .5625rem .875rem;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  width: 100%;
}

.form-control:focus, .form-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(13,17,23,.08);
  outline: none;
}

.form-control::placeholder { color: #a0aec0; }
.form-text { font-size: .75rem; color: var(--muted); margin-top: .3rem; }
.form-check-input:checked { background-color: var(--ink); border-color: var(--ink); }

/* ── Section / Page anatomy ───────────────────────────────────────────────────── */
.page-shell {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.page-shell h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
  display: block;
}

.display-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
}

.divider {
  width: 36px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: .875rem 0;
}

/* ── Stats ───────────────────────────────────────────────────────────────────── */
.stat-block {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--s-xs);
  transition: all var(--t-md) var(--ease);
}
.stat-block:hover { box-shadow: var(--s-md); border-color: var(--border-md); }

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
}

.stat-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .3rem;
}

/* ── Table ───────────────────────────────────────────────────────────────────── */
.ch-table { border-collapse: separate; border-spacing: 0; width: 100%; font-size: .875rem; }
.ch-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  padding: .75rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.ch-table tbody td {
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--ink-60);
}
.ch-table tbody tr:last-child td { border-bottom: 0; }
.ch-table tbody tr:hover td { background: var(--surface); }

/* ── Alerts ───────────────────────────────────────────────────────────────────── */
.ch-alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1.125rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  border: 1px solid transparent;
}
.ch-alert-success { background: var(--green-lt); color: #065f46; border-color: #a7f3d0; }
.ch-alert-danger  { background: var(--red-lt);   color: #991b1b; border-color: #fca5a5; }
.ch-alert-warning { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.ch-alert-info    { background: var(--blue-lt);  color: #1e40af; border-color: #93c5fd; }

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.ch-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.ch-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ch-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* ── Listing card ─────────────────────────────────────────────────────────────── */
.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--s-xs);
  transition: all var(--t-md) var(--ease);
  overflow: hidden;
}
.listing-card:hover {
  border-color: var(--border-md);
  box-shadow: var(--s-md);
  transform: translateY(-2px);
}

/* ── Plan card ────────────────────────────────────────────────────────────────── */
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  background: var(--white);
  transition: all var(--t-md) var(--ease);
  position: relative;
}
.plan-card:hover { border-color: var(--border-md); box-shadow: var(--s-lg); transform: translateY(-3px); }
.plan-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--s-xl);
}
.plan-card.featured:hover { transform: translateY(-5px); }
.plan-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .875rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Search bar ───────────────────────────────────────────────────────────────── */
.ch-search {
  display: flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 520px;
}
.ch-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  padding: .75rem 1.125rem;
  outline: none;
}
.ch-search input::placeholder { color: rgba(255,255,255,.35); }
.ch-search button {
  background: var(--amber);
  border: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .8125rem;
  padding: .75rem 1.375rem;
  cursor: pointer;
  transition: background var(--t) var(--ease);
  flex-shrink: 0;
}
.ch-search button:hover { background: #b45309; }

/* ── Sidebar filter ───────────────────────────────────────────────────────────── */
.filter-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  position: sticky;
  top: 76px;
}
.filter-panel-header {
  padding: .875rem 1.125rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--ink);
}
.filter-panel-body { padding: 1.125rem; }

/* ── Dashboard card ───────────────────────────────────────────────────────────── */
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.dash-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.dash-card-header h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  margin: 0;
  color: var(--ink);
}
.dash-card-body { padding: 0; }

.dash-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--t) var(--ease);
}
.dash-row:last-child { border-bottom: 0; }
.dash-row:hover { background: var(--surface); }

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.ch-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.ch-footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -.03em;
}
.ch-footer-brand span { color: var(--amber-lt); }
.ch-footer h6 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
}
.ch-footer a {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  display: block;
  margin-bottom: .5rem;
  transition: color var(--t) var(--ease);
}
.ch-footer a:hover { color: var(--amber-lt); }
.ch-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.ch-footer-bottom p { margin: 0; font-size: .8125rem; }
.ch-footer-verse {
  font-size: .8125rem;
  font-style: italic;
  color: rgba(255,255,255,.3);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── Dropdown ─────────────────────────────────────────────────────────────────── */
.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--s-xl);
  padding: .375rem;
  min-width: 200px;
  margin-top: .5rem !important;
}
.dropdown-item {
  font-size: .875rem;
  color: var(--ink-60);
  border-radius: var(--r-sm);
  padding: .5rem .75rem;
  transition: all var(--t) var(--ease);
  font-family: 'Inter', sans-serif;
}
.dropdown-item:hover { background: var(--surface); color: var(--ink); }
.dropdown-divider { border-color: var(--border); margin: .25rem 0; }

/* ── Pagination ───────────────────────────────────────────────────────────────── */
.pagination { gap: 3px; }
.page-link {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-60);
  border: 1px solid var(--border);
  border-radius: var(--r-sm) !important;
  padding: .4375rem .8125rem;
  transition: all var(--t) var(--ease);
}
.page-link:hover { background: var(--surface); border-color: var(--border-md); color: var(--ink); }
.active .page-link { background: var(--ink) !important; border-color: var(--ink) !important; color: white !important; }

/* ── Utilities ────────────────────────────────────────────────────────────────── */
.text-ink     { color: var(--ink) !important; }
.text-muted-ch{ color: var(--muted) !important; }
.text-amber   { color: var(--amber) !important; }
.text-green   { color: var(--green) !important; }
.bg-ink       { background: var(--ink) !important; }
.bg-surface   { background: var(--surface) !important; }
.bg-amber     { background: var(--amber) !important; }
.fw-outfit    { font-family: 'Outfit', sans-serif !important; }
.fw-800       { font-weight: 800 !important; }
.tracking-tight { letter-spacing: -.03em; }
.line-clamp-2 { display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.line-clamp-3 { display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden; }

/* ── Animations ───────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up   { animation: fadeUp .45s var(--ease) both; }
.fade-up-1 { animation: fadeUp .45s .08s var(--ease) both; }
.fade-up-2 { animation: fadeUp .45s .16s var(--ease) both; }
.fade-up-3 { animation: fadeUp .45s .24s var(--ease) both; }
.fade-up-4 { animation: fadeUp .45s .32s var(--ease) both; }

/* ── Responsive ───────────────────────────────────────────────────────────────── */
.ch-nav-mobile { display: none; }

@media (max-width: 992px) {
  .ch-nav-links { display: none !important; }
  .ch-nav-actions { display: none !important; }
  .ch-nav-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    padding: .5rem;
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    border-radius: 8px !important;
    color: white !important;
  }
  .ch-nav-toggler svg { width: 22px; height: 22px; }
  .ch-nav .container {
    gap: .5rem;
    justify-content: space-between;
  }
  .ch-nav-mobile {
    background: #0d1a2b;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: .5rem 0;
    display: block;
  }
  .ch-nav-mobile.ch-mobile-hidden {
    display: none !important;
  }
  .ch-nav-mobile .ch-nav-link {
    display: block;
    padding: .75rem 1.5rem;
    border-radius: 0;
    color: rgba(255,255,255,.85) !important;
    font-size: .9375rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .ch-nav-mobile .ch-nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,.08);
  }
  .ch-nav-mobile .mobile-section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    padding: .875rem 1.5rem .35rem;
  }
  .ch-nav-mobile .mobile-auth {
    padding: .875rem 1.5rem;
    display: flex;
    gap: .625rem;
  }
  .plan-card.featured { transform: none; }
  .page-shell { padding: 1.75rem 0; }
  .ch-hero { padding-left: 0; padding-right: 0; }
  section { overflow-x: hidden; }
}

/* ── Church nav dropdown ──────────────────────────────────────────── */
.ch-nav .dropdown-menu { background:#0d1a2b !important; border-color:rgba(255,255,255,.15) !important; }
.ch-nav .dropdown-item { color:rgba(255,255,255,.88) !important; padding:.6rem 1rem; font-size:.875rem; }
.ch-nav .dropdown-item:hover { background:rgba(255,255,255,.1) !important; color:white !important; }
.ch-nav .dropdown-item svg { opacity:.7; }
.ch-nav .dropdown-item:hover svg { opacity:1; }
.ch-nav .dropdown-divider { border-color:rgba(255,255,255,.15) !important; }

/* ── Mobile fixes ─────────────────────────────────────────────────── */
@media (max-width: 576px) {
  body { overflow-x: hidden; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .page-shell .container { padding-left: 1rem; padding-right: 1rem; }
  h1.tracking-tight { font-size: 1.75rem !important; }
}
