/* =====================================================
   BLUECREST FINANCE — MAIN STYLESHEET
   bcfprime.com | Version 1.0.0
   ===================================================== */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =====================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ===================================================== */
:root {
  /* Brand Colors */
  --bcf-blue-950:  #020817;
  --bcf-blue-900:  #050f2e;
  --bcf-blue-800:  #0a1628;
  --bcf-blue-700:  #0d1f3c;
  --bcf-blue-600:  #102a52;
  --bcf-blue-500:  #1a3a6e;
  --bcf-blue-400:  #2454a0;
  --bcf-blue-300:  #3b72c8;
  --bcf-blue-200:  #6b9fd4;
  --bcf-blue-100:  #b8d0ec;
  --bcf-blue-50:   #e8f0fb;

  /* Gold Accents */
  --bcf-gold-900:  #3d2800;
  --bcf-gold-700:  #7a5100;
  --bcf-gold-500:  #c8960c;
  --bcf-gold-400:  #d4af37;
  --bcf-gold-300:  #e2c96b;
  --bcf-gold-200:  #edd99a;
  --bcf-gold-100:  #f7efd0;

  /* Neutrals */
  --bcf-white:     #ffffff;
  --bcf-gray-50:   #f8fafc;
  --bcf-gray-100:  #f1f5f9;
  --bcf-gray-200:  #e2e8f0;
  --bcf-gray-300:  #cbd5e1;
  --bcf-gray-400:  #94a3b8;
  --bcf-gray-500:  #64748b;
  --bcf-gray-600:  #475569;
  --bcf-gray-700:  #334155;
  --bcf-gray-800:  #1e293b;
  --bcf-gray-900:  #0f172a;
  --bcf-black:     #000000;

  /* Status */
  --bcf-success:   #10b981;
  --bcf-warning:   #f59e0b;
  --bcf-danger:    #ef4444;
  --bcf-info:      #3b82f6;

  /* Typography */
  --font-primary:  'Inter', system-ui, -apple-system, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;

  /* Spacing Scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.15);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.20);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.25);
  --shadow-gold: 0 0 30px rgba(212,175,55,.20);
  --shadow-blue: 0 0 40px rgba(36,84,160,.30);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 400ms cubic-bezier(.34,1.56,.64,1);

  /* Glass */
  --glass-bg:     rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
  --glass-hover:  rgba(255,255,255,.08);

  /* Z-index */
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-toast:     500;

  /* Light mode overrides (default) */
  --page-bg:       #f0f4f8;
  --card-bg:       #ffffff;
  --text-primary:  var(--bcf-gray-900);
  --text-secondary:var(--bcf-gray-500);
  --text-muted:    var(--bcf-gray-400);
  --border-color:  var(--bcf-gray-200);
  --input-bg:      #ffffff;
}

/* Dark Mode */
[data-theme="dark"] {
  --page-bg:       var(--bcf-blue-900);
  --card-bg:       var(--bcf-blue-800);
  --text-primary:  var(--bcf-gray-50);
  --text-secondary:var(--bcf-gray-400);
  --text-muted:    var(--bcf-gray-500);
  --border-color:  rgba(255,255,255,.08);
  --input-bg:      var(--bcf-blue-700);
  --glass-bg:      rgba(255,255,255,.03);
  --glass-border:  rgba(255,255,255,.06);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-base), color var(--transition-base);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--bcf-blue-400);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--bcf-gold-400); }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.font-display { font-family: var(--font-display); }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--bcf-gold-400), var(--bcf-gold-200), var(--bcf-gold-400));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--bcf-blue-300), #7eb8f7, var(--bcf-blue-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container-bcf {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-padding { padding: var(--space-24) 0; }
.section-padding-sm { padding: var(--space-16) 0; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* =====================================================
   GLASS MORPHISM COMPONENTS
   ===================================================== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: var(--glass-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   CARDS
   ===================================================== */
.bcf-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.bcf-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.bcf-card-dark {
  background: var(--bcf-blue-800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-bcf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-bcf::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-bcf:hover::after { opacity: 1; }

/* Primary - Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--bcf-gold-500), var(--bcf-gold-400), var(--bcf-gold-300));
  color: var(--bcf-blue-900);
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,.50);
  color: var(--bcf-blue-900);
}

/* Primary - Blue */
.btn-blue {
  background: linear-gradient(135deg, var(--bcf-blue-500), var(--bcf-blue-400), var(--bcf-blue-300));
  color: var(--bcf-white);
  box-shadow: 0 4px 20px rgba(36,84,160,.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(36,84,160,.50);
  color: var(--bcf-white);
}

/* Outline */
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--bcf-gold-400);
  color: var(--bcf-gold-400);
}

.btn-outline-gold:hover {
  background: var(--bcf-gold-400);
  color: var(--bcf-blue-900);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--bcf-white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--bcf-white);
  color: var(--bcf-white);
}

/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--bcf-white);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  color: var(--bcf-white);
}

/* Sizes */
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.btn-xl { padding: 1.125rem 3rem; font-size: 1.125rem; }

.btn-bcf:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Loading state */
.btn-bcf.loading { pointer-events: none; }
.btn-bcf.loading::before {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: var(--space-2);
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-success  { background: rgba(16,185,129,.15); color: #10b981; }
.badge-warning  { background: rgba(245,158,11,.15);  color: #f59e0b; }
.badge-danger   { background: rgba(239,68,68,.15);   color: #ef4444; }
.badge-info     { background: rgba(59,130,246,.15);  color: #3b82f6; }
.badge-gold     { background: rgba(212,175,55,.15);  color: var(--bcf-gold-400); }
.badge-secondary{ background: var(--bcf-gray-100);   color: var(--bcf-gray-600); }
.badge-blue     { background: rgba(36,84,160,.15);   color: var(--bcf-blue-300); }

/* =====================================================
   FORM ELEMENTS
   ===================================================== */
.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--input-bg);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--bcf-blue-400);
  box-shadow: 0 0 0 3px rgba(36,84,160,.15);
}

.form-control.is-invalid {
  border-color: var(--bcf-danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}

.form-control-dark {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--bcf-white);
}

.form-control-dark:focus {
  border-color: var(--bcf-gold-400);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
  background: rgba(255,255,255,.08);
}

.form-control-dark::placeholder { color: rgba(255,255,255,.35); }

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}

.input-icon-right {
  position: absolute;
  right: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 1;
}

.input-group .form-control { padding-left: 2.75rem; }
.input-group.icon-right .form-control { padding-right: 2.75rem; }

.form-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.invalid-feedback {
  font-size: 0.8125rem;
  color: var(--bcf-danger);
  margin-top: var(--space-1);
  display: none;
}

.is-invalid ~ .invalid-feedback { display: block; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.bcf-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: 0 var(--space-6);
  height: 72px;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.bcf-navbar.transparent {
  background: transparent;
}

.bcf-navbar.scrolled {
  background: rgba(5,15,46,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.bcf-navbar.light-nav {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.bcf-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.bcf-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--bcf-blue-400), var(--bcf-blue-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bcf-gold-400);
  box-shadow: 0 4px 12px rgba(36,84,160,.4);
  position: relative;
  overflow: hidden;
}

.bcf-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(212,175,55,.2));
}

.bcf-logo-text { display: flex; flex-direction: column; line-height: 1; }
.bcf-logo-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--bcf-white);
  letter-spacing: -0.02em;
}
.bcf-logo-sub {
  font-size: 0.625rem;
  color: var(--bcf-gold-400);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--bcf-white);
  background: rgba(255,255,255,.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--bcf-blue-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,.06);
  color: var(--bcf-white);
}

.nav-dropdown-item i {
  width: 18px;
  color: var(--bcf-gold-400);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  border: none;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bcf-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bcf-blue-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated mesh gradient */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(36,84,160,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212,175,55,.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(26,58,110,.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--bcf-blue-900) 0%, var(--bcf-blue-950) 100%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  0%  { opacity: 1; }
  100% { opacity: 0.85; }
}

/* Particle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 6s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(36,84,160,.2);
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(212,175,55,.06);
  top: 20%; right: 10%;
  animation-delay: 2s;
}

.hero-orb-3 {
  width: 250px; height: 250px;
  background: rgba(59,114,200,.15);
  bottom: 10%; left: 40%;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  padding-top: 72px;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: var(--space-12) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 1rem;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bcf-gold-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--bcf-gold-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--bcf-white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

/* Hero Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.hero-stat {
  padding: var(--space-4);
  border-left: 1px solid rgba(255,255,255,.08);
}

.hero-stat:first-child { border-left: none; }

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--bcf-white);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat-value span { color: var(--bcf-gold-400); }
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,.45); font-weight: 500; }

/* Hero Dashboard Preview */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-preview {
  width: 100%;
  max-width: 540px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4), var(--shadow-blue);
  animation: floatPreview 5s ease-in-out infinite;
}

@keyframes floatPreview {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.preview-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--bcf-success);
  font-weight: 500;
}

.preview-balance {
  margin-bottom: var(--space-5);
}

.preview-balance-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}

.preview-balance-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bcf-white);
  line-height: 1;
}

.preview-balance-change {
  font-size: 0.8125rem;
  color: var(--bcf-success);
  font-weight: 500;
  margin-top: 4px;
}

/* Mini chart */
.preview-chart {
  height: 80px;
  margin-bottom: var(--space-5);
  position: relative;
  overflow: hidden;
}

.preview-chart svg { width: 100%; height: 100%; }

/* Asset rows */
.preview-assets { display: flex; flex-direction: column; gap: var(--space-3); }

.preview-asset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.04);
}

.preview-asset-left { display: flex; align-items: center; gap: var(--space-3); }

.preview-asset-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.preview-asset-name { font-size: 0.875rem; font-weight: 600; color: var(--bcf-white); }
.preview-asset-sub  { font-size: 0.75rem; color: rgba(255,255,255,.35); }

.preview-asset-value { font-size: 0.875rem; font-weight: 600; color: var(--bcf-white); text-align: right; }
.preview-asset-change { font-size: 0.75rem; font-weight: 500; text-align: right; }
.preview-asset-change.up   { color: var(--bcf-success); }
.preview-asset-change.down { color: var(--bcf-danger); }

/* Floating cards on visual */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  backdrop-filter: blur(12px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bcf-white);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  right: -8%;
  animation-delay: 0.5s;
}

.floating-card-2 {
  bottom: 15%;
  left: -10%;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}

.floating-card-icon {
  color: var(--bcf-gold-400);
  margin-right: 6px;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: var(--space-4) 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  animation: scrollTrust 20s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,.35);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item i { color: var(--bcf-gold-400); }

@keyframes scrollTrust {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   FEATURES / SERVICES GRID
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  padding: var(--space-8);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bcf-blue-400), var(--bcf-gold-400));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,.2);
  transform: translateY(-4px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, var(--bcf-blue-50), var(--bcf-blue-100));
  color: var(--bcf-blue-500);
}

[data-theme="dark"] .feature-icon {
  background: rgba(36,84,160,.2);
  color: var(--bcf-blue-200);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--space-12); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 1rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bcf-gold-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   INVESTMENT PLANS CARDS
   ===================================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-spring);
}

.plan-card.featured {
  background: linear-gradient(145deg, var(--bcf-blue-800), var(--bcf-blue-700));
  border-color: var(--bcf-gold-400);
  transform: scale(1.02);
}

.plan-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured:hover { transform: translateY(-6px) scale(1.03); }

.plan-badge-featured {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: linear-gradient(135deg, var(--bcf-gold-500), var(--bcf-gold-400));
  color: var(--bcf-blue-900);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.plan-roi {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--bcf-gold-400);
  margin-bottom: var(--space-1);
}

.plan-roi-label { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: var(--space-5); }

.plan-range {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  padding: var(--space-3);
  background: rgba(0,0,0,.04);
  border-radius: var(--radius-md);
  text-align: center;
}

[data-theme="dark"] .plan-range { background: rgba(255,255,255,.04); }

.plan-features { margin-bottom: var(--space-6); }

.plan-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.plan-feature i { color: var(--bcf-success); font-size: 0.75rem; }
.plan-card.featured .plan-feature { color: rgba(255,255,255,.7); }
.plan-card.featured .plan-name { color: var(--bcf-white); }
.plan-card.featured .plan-roi-label { color: rgba(255,255,255,.5); }
.plan-card.featured .plan-range {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
}

/* =====================================================
   STATS COUNTER SECTION
   ===================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--bcf-blue-900), var(--bcf-blue-800));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--bcf-white);
  line-height: 1;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-suffix { color: var(--bcf-gold-400); font-size: 0.6em; }
.stat-label { color: rgba(255,255,255,.45); font-size: 0.9375rem; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,.08); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-size: 5rem;
  color: var(--bcf-gold-400);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars { color: var(--bcf-gold-400); font-size: 0.875rem; margin-bottom: var(--space-4); }

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bcf-blue-400), var(--bcf-blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bcf-white);
  flex-shrink: 0;
}

.testimonial-name  { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); }
.testimonial-role  { font-size: 0.8125rem; color: var(--text-muted); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--bcf-blue-900) 0%, var(--bcf-blue-800) 50%, var(--bcf-blue-700) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--space-24) auto;
  max-width: 1280px;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.08) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    transparent 0deg,
    rgba(212,175,55,.03) 60deg,
    transparent 120deg
  );
  animation: rotateCTA 20s linear infinite;
}

@keyframes rotateCTA {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =====================================================
   FOOTER
   ===================================================== */
.bcf-footer {
  background: var(--bcf-blue-950);
  border-top: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
}

.footer-main {
  padding: var(--space-16) 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-8);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  margin-top: var(--space-4);
  max-width: 280px;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bcf-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--bcf-gold-400); }

.footer-bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-link {
  color: rgba(255,255,255,.35);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover { color: var(--bcf-gold-400); }

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--bcf-gold-400);
  border-color: var(--bcf-gold-400);
  color: var(--bcf-blue-900);
  transform: translateY(-2px);
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.2);
  color: #0d9f6e;
}
.alert-danger {
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.2);
  color: #dc2626;
}
.alert-warning {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.2);
  color: #b45309;
}
.alert-info {
  background: rgba(59,130,246,.1);
  border-color: rgba(59,130,246,.2);
  color: #1d4ed8;
}

/* =====================================================
   LOADERS & ANIMATIONS
   ===================================================== */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up   { animation: fadeUp 0.6s ease forwards; }
.animate-fade-in   { animation: fadeIn 0.5s ease forwards; }
.animate-slide-right { animation: slideInRight 0.6s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,.05) 25%,
    rgba(255,255,255,.1) 50%,
    rgba(255,255,255,.05) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =====================================================
   MODAL
   ===================================================== */
.bcf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,8,23,.85);
  backdrop-filter: blur(8px);
  z-index: var(--z-overlay);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.bcf-overlay.active { display: flex; }

.bcf-modal {
  background: var(--bcf-blue-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalOpen 0.3s var(--transition-spring);
}

@keyframes modalOpen {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title { font-size: 1.125rem; font-weight: 700; color: var(--bcf-white); }

.modal-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(239,68,68,.15);
  color: var(--bcf-danger);
}

.modal-body { padding: var(--space-6); }
.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

/* =====================================================
   TOAST NOTIFICATIONS
   ===================================================== */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  background: var(--bcf-blue-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 300px;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
  animation: toastIn 0.3s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

.toast-icon { font-size: 1.125rem; flex-shrink: 0; }
.toast-message { font-size: 0.9rem; color: rgba(255,255,255,.85); flex: 1; }

.toast-success .toast-icon { color: var(--bcf-success); }
.toast-warning .toast-icon { color: var(--bcf-warning); }
.toast-danger  .toast-icon { color: var(--bcf-danger); }
.toast-info    .toast-icon { color: var(--bcf-info); }

/* =====================================================
   DARK MODE TOGGLE
   ===================================================== */
.theme-toggle {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: rgba(255,255,255,.1);
  color: var(--bcf-gold-400);
}

/* =====================================================
   TICKER TAPE (Live Prices)
   ===================================================== */
.price-ticker {
  background: var(--bcf-blue-950);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 6px 0;
  overflow: hidden;
}

.price-ticker-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.ticker-symbol { color: rgba(255,255,255,.7); font-weight: 700; }
.ticker-price  { color: rgba(255,255,255,.5); }
.ticker-change.up   { color: var(--bcf-success); }
.ticker-change.down { color: var(--bcf-danger); }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid-layout { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .plan-card.featured { transform: scale(1); }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn-bcf:not(.btn-sm) { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { grid-template-columns: 1fr; gap: var(--space-3); }
  .hero-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--space-3); }
  .hero-stat:first-child { border-top: none; }

  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .cta-section { padding: var(--space-10) var(--space-6); border-radius: var(--radius-xl); }
  .section-padding { padding: var(--space-16) 0; }
  .container-bcf { padding: 0 var(--space-4); }

  .bcf-navbar { padding: 0 var(--space-4); height: 64px; }
  .bcf-logo-name { font-size: 1rem; }
}

/* =====================================================
   MOBILE NAV DRAWER
   ===================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) + 10);
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  opacity: 0;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}

.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--bcf-blue-900);
  border-left: 1px solid rgba(255,255,255,.06);
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav.open .mobile-nav-drawer {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-nav-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 1.125rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(255,255,255,.06);
  color: var(--bcf-white);
}

.mobile-nav-link i { width: 20px; color: var(--bcf-gold-400); }

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
  .bcf-navbar, .bcf-footer, .mobile-nav, .toast-container { display: none !important; }
  body { background: white; color: black; }
  .bcf-card { box-shadow: none; border: 1px solid #ccc; }
}