/* ============================================================
   BMS GLOBAL — Page-Specific Styles
   ============================================================ */

/* ═══════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════ */

/* ── Hero Slider ────────────────────────────────────────── */
.hero {
  min-height: 580px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(4,17,50,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  padding: var(--space-14) var(--space-14) calc(var(--space-14) + 60px);
}

/* Slides: absolutely positioned behind everything */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease;
  transform: scale(1.06);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay so text pops over photos */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4,13,39,0.80) 0%, rgba(7,26,70,0.60) 55%, rgba(4,13,39,0.35) 100%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.5), transparent 80%);
  z-index: 2;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
.hero-glow-one { width: 280px; height: 280px; background: rgba(55,121,255,0.20); top: -90px; right: 18%; }

.hero-content { position: relative; z-index: 3; max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-inner);
  font-size: 11px;
  font-weight: var(--weight-black);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #e9f1ff;
  margin-bottom: var(--space-5);
  backdrop-filter: blur(6px);
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-vivid);
  box-shadow: 0 0 12px rgba(246,203,99,0.9);
}

.hero h1 {
  font-size: clamp(38px, 4.2vw, 68px);
  color: #fff;
  line-height: 1.03;
  letter-spacing: -2px;
  text-wrap: balance;
  text-shadow: 0 4px 26px rgba(0,0,0,0.22);
  margin-bottom: var(--space-4);
}
.hero > .hero-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-7);
  flex-wrap: wrap;
}

/* Blinking hero REC button */
.hero-rec-btn {
  animation: recPulse 2s ease-in-out infinite;
}
@keyframes recPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(200,141,0,0.36), inset 0 1px 0 rgba(255,255,255,0.22); transform: translateY(0); }
  50%       { box-shadow: 0 18px 44px rgba(232,169,23,0.64), 0 0 0 8px rgba(232,169,23,0.14), inset 0 1px 0 rgba(255,255,255,0.28); transform: translateY(-3px); }
}

.hero-trust {
  display: flex;
  gap: var(--space-7);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.hero-trust-item { display: grid; gap: 2px; }
.hero-trust-item strong { font-size: var(--text-xl); color: #fff; }
.hero-trust-item span  { font-size: 10px; color: rgba(255,255,255,0.58); }

/* Floating stats (repositioned for full-width layout) */
.floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 172px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: 0 22px 52px rgba(1,14,39,0.30), inset 0 1px 0 #fff;
  animation: floatAnim 4s ease-in-out infinite;
  z-index: 4;
}
.floating-stat:nth-child(2) { animation-delay: 2s; }
.floating-stat strong { font-size: var(--text-base); color: var(--navy); display: block; }
.floating-stat span   { font-size: 10px; color: var(--muted); }
.stat-icon-wrap {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue), #0e3e9a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(29,99,233,0.28);
  flex-shrink: 0;
}
.stat-one { top: 40px;  right: 60px; }
.stat-two { right: 40px; bottom: 90px; }

/* Slider nav (arrows + dots) */
.hero-slider-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  z-index: 5;
}
.slide-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background var(--t-fast), transform var(--t-fast);
}
.slide-arrow:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1);
}
.slide-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none;
  cursor: pointer;
  transition: background var(--t-base), width var(--t-base) var(--ease), border-radius var(--t-base);
  padding: 0;
}
.slide-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: calc(var(--z-modal) - 10);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 28px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.14);
  font-weight: var(--weight-bold);
  font-size: 14px;
  line-height: 1;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  overflow: visible;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37,211,102,0.52), 0 4px 12px rgba(0,0,0,0.18);
  color: #fff;
}
.whatsapp-label { white-space: nowrap; }
/* Pulsing ring around button */
.whatsapp-ping {
  position: absolute;
  inset: -4px;
  border-radius: var(--r-full);
  border: 2.5px solid rgba(37,211,102,0.55);
  animation: waPing 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPing {
  0%   { transform: scale(1);    opacity: 0.8; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* ── Navbar REC Button Pulse Glow ─────────────────────────── */
.nav-rec-btn {
  animation: navRecGlow 2.4s ease-in-out infinite;
}
@keyframes navRecGlow {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(200,141,0,0.28), inset 0 1px 0 rgba(255,255,255,0.20);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 10px 28px rgba(232,169,23,0.55), 0 0 0 5px rgba(232,169,23,0.12), inset 0 1px 0 rgba(255,255,255,0.28);
    transform: translateY(-2px);
  }
}

/* Company Grid */
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--space-4);
}

/* Quick Access */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-8);
}

/* Dashboard Grid */
.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
  gap: var(--space-5);
}

/* Listing Grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════
   COMPANIES PAGE
   ═══════════════════════════════════════════════ */
.page-header {
  background:
    radial-gradient(circle at 100% 0%, rgba(65,121,232,0.09), transparent 32%),
    rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--space-10) var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.page-header p { max-width: 680px; line-height: 1.7; margin-top: var(--space-2); }

/* Companies Page Header Stats */
.companies-page-header { padding-bottom: var(--space-8); }
.companies-header-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(29,99,233,0.12);
  flex-wrap: wrap;
}
.ch-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ch-stat strong {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: var(--weight-black);
  color: var(--blue);
  line-height: 1;
  letter-spacing: -1px;
}
.ch-stat span {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Companies Showcase Grid */
.companies-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.showcase-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  cursor: default;
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(0,0,0,0.26);
}
/* Reuse same colour themes */
.showcase-card.blue   { background: radial-gradient(circle at 85% 10%, rgba(77,132,255,0.30), transparent 30%), linear-gradient(155deg, #0d3585, #061a4c); }
.showcase-card.gold   { background: radial-gradient(circle at 85% 10%, rgba(255,220,100,0.28), transparent 30%), linear-gradient(155deg, #c88e0a, #7a4f00); }
.showcase-card.green  { background: radial-gradient(circle at 85% 10%, rgba(80,220,150,0.28), transparent 30%), linear-gradient(155deg, #0b7a52, #054230); }
.showcase-card.purple { background: radial-gradient(circle at 85% 10%, rgba(160,130,255,0.30), transparent 30%), linear-gradient(155deg, #4a39b3, #1e1055); }
/* Gradient fog over SVG art */
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Card body */
.showcase-card-body {
  position: relative;
  z-index: 3;
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
}
.showcase-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  transition: transform var(--t-base) var(--ease);
}
.showcase-card:hover .showcase-icon { transform: scale(1.1) rotate(-5deg); }
.showcase-card h2 {
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: var(--weight-black);
  margin: 0 0 var(--space-2);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.25;
}
.showcase-short {
  color: rgba(255,255,255,0.78);
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.showcase-desc {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
  font-weight: var(--weight-semi);
}
.showcase-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.company-stat-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: var(--weight-semi);
  letter-spacing: 0.3px;
}

.company-list { display: grid; gap: var(--space-4); }
.company-detail-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--space-5);
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.company-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.company-logo {
  width: 96px; height: 96px;
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  font-size: 36px;
  color: #fff;
}
.company-detail-card h3 { margin: 0 0 var(--space-2); }
.company-detail-card p  { margin: 0 0 var(--space-4); font-size: var(--text-base); }
.feature-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ═══════════════════════════════════════════════
   MARKETPLACE
   ═══════════════════════════════════════════════ */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════
   ACADEMY
   ═══════════════════════════════════════════════ */
.academy-hero-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(100,155,255,0.36), transparent 27%),
    linear-gradient(135deg, #061a46, #113c8f 58%, #1a58ba);
  border-radius: var(--r-xl);
  padding: var(--space-12) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  color: #fff;
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.academy-hero-section p { color: rgba(255,255,255,0.76); max-width: 460px; }
.academy-visual {
  width: 240px; height: 160px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.10);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: var(--text-lg);
  line-height: 1.3;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
}
.academy-visual strong { font-size: var(--text-3xl); display: block; }
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════
   INVESTMENTS
   ═══════════════════════════════════════════════ */
.investment-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-5);
}
.roi-card label { display: block; margin: var(--space-4) 0 var(--space-2); }
.roi-card input[type="number"],
.roi-card select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.roi-card input[type="range"] { width: 100%; accent-color: var(--blue); }

/* ═══════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════ */
.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════
   JOIN REC PAGE
   ═══════════════════════════════════════════════ */
.rec-hero {
  min-height: 480px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 75% 20%, rgba(130,110,255,0.38), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(71,99,220,0.22), transparent 35%),
    linear-gradient(135deg, #2c216d 0%, #3b2a98 50%, #4a39b3 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 36px 90px rgba(28,14,100,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
  color: #fff;
  padding: var(--space-14);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-8);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  margin-bottom: 0;
}
.rec-hero::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  right: -150px; top: -200px;
}
.rec-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: var(--weight-black);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: var(--space-5);
}
.rec-hero h1 { font-size: clamp(34px, 3.8vw, 58px); color: #fff; letter-spacing: -1.5px; margin-bottom: var(--space-4); }
.rec-hero > .rec-hero-content > p { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 500px; }

.rec-hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  min-width: 290px;
  text-align: center;
  box-shadow: var(--shadow-inner), 0 28px 60px rgba(0,0,0,0.20);
}
.rec-logo-big {
  width: 88px; height: 88px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: var(--weight-black);
  color: #fff;
  margin: 0 auto var(--space-4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
}
.rec-hero-card h3 { font-size: var(--text-xl); color: #fff; margin-bottom: var(--space-2); }
.rec-hero-card p  { font-size: var(--text-base); color: rgba(255,255,255,0.72); margin-bottom: var(--space-6); }
.rec-member-count {
  font-size: var(--text-2xl);
  font-weight: var(--weight-black);
  color: var(--gold-vivid);
  display: block;
  margin-bottom: 4px;
}

/* REC Benefits */
.rec-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.benefit-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-soft), #ddd8ff);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-4);
  font-size: 26px;
}
.benefit-card h3 { font-size: var(--text-md); margin-bottom: var(--space-2); }
.benefit-card p  { font-size: var(--text-base); }

/* REC How It Works */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: var(--weight-black);
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 14px 36px rgba(72,54,169,0.32);
}
.how-step h3 { font-size: var(--text-md); margin-bottom: var(--space-2); }
.how-step p  { font-size: var(--text-base); }

/* REC Registration Form */
.rec-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.rec-form-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.rec-form-panel h2 { margin-bottom: var(--space-2); }
.rec-form-panel .sub { margin-bottom: var(--space-6); }
.rec-perks {
  display: grid;
  gap: var(--space-3);
}
.rec-perk {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--purple-soft);
  border: 1px solid rgba(72,54,169,0.12);
  border-radius: var(--r-md);
  padding: var(--space-4);
}
.rec-perk .perk-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.rec-perk strong { display: block; font-size: var(--text-base); margin-bottom: 3px; }
.rec-perk p { font-size: 12px; margin: 0; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.contact-info { display: grid; gap: var(--space-5); }
.contact-info-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-xs);
}
.ci-icon-wrap {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ci-icon-wrap.gold { background: var(--gold-soft); color: var(--gold); }
.ci-icon-wrap.green { background: var(--green-soft); color: var(--green); }
.contact-info-card strong { display: block; font-size: var(--text-base); margin-bottom: 3px; }
.contact-info-card p { font-size: var(--text-base); margin: 0; }
.contact-form-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════
   AUTH PAGES (Login / Register)
   ═══════════════════════════════════════════════ */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-brand-side {
  background:
    radial-gradient(circle at 75% 20%, rgba(94,146,255,0.40), transparent 28%),
    linear-gradient(135deg, #071a46 0%, #0c2c6f 55%, #164da8 100%);
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.auth-brand-side::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  right: -130px; bottom: -150px;
}
.auth-brand-tagline { position: relative; z-index: 2; }
.auth-brand-tagline h2 { font-size: var(--text-4xl); color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: var(--space-4); }
.auth-brand-tagline p { font-size: var(--text-md); color: rgba(255,255,255,0.72); }
.auth-trust { display: flex; gap: var(--space-8); position: relative; z-index: 2; }
.auth-trust div strong { display: block; font-size: var(--text-xl); }
.auth-trust div span   { font-size: 11px; color: rgba(255,255,255,0.55); }

.auth-form-side {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}
.auth-form-wrap {
  width: 100%;
  max-width: 440px;
}
.auth-form-wrap h1 { font-size: var(--text-3xl); margin-bottom: var(--space-2); }
.auth-form-wrap .auth-sub { margin-bottom: var(--space-8); }
.auth-form { display: grid; gap: var(--space-5); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--muted);
  font-size: var(--text-xs);
  margin: var(--space-2) 0;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-switch { text-align: center; margin-top: var(--space-6); font-size: var(--text-base); color: var(--muted); }
.auth-switch a { color: var(--blue); font-weight: var(--weight-semi); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.pw-toggle-wrap { position: relative; }
.pw-toggle-wrap .form-input { padding-right: 44px; }
.pw-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  display: grid;
  place-items: center;
}

/* ── Why Choose BMS (Home) ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.why-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: var(--space-4);
}
.why-card h3 { font-size: var(--text-md); margin-bottom: var(--space-2); }
.why-card p  { font-size: var(--text-base); }


/* ══════════════════════════════════════════════════════════════
   HOME PAGE VIBES OVERHAUL — LIVE AESTHETICS & ANIMATIONS
   ══════════════════════════════════════════════════════════════ */

/* ── Section Kicker (global upgrade) ─────────────────────── */
.section-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-black);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue), #7b5cff, var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Trust Strip: Vibrant Icons & Hover Glow ──────────────── */
.trust-strip {
  background: linear-gradient(120deg,
    rgba(255,255,255,0.95) 0%,
    rgba(240,246,255,0.95) 50%,
    rgba(255,255,255,0.95) 100%);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(100,150,255,0.14);
  box-shadow: 0 20px 60px rgba(13,38,84,0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.trust-item {
  cursor: default;
  transition: background var(--t-base);
}
.trust-item:hover {
  background: linear-gradient(135deg, rgba(238,244,255,0.9), rgba(230,238,255,0.7));
}
.trust-item .ti-icon {
  background: linear-gradient(145deg, #4179e8, #1552ca);
  color: #fff;
  box-shadow: 0 8px 20px rgba(29,99,233,0.28);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.trust-item:hover .ti-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(29,99,233,0.40);
}
.trust-item strong { color: var(--navy); font-size: var(--text-md); }

/* ── Company Cards: Shine Sweep ───────────────────────────── */
.company-card::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.55s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.company-card:hover::before {
  left: 125%;
}
.company-card .explore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.85);
  margin-top: var(--space-4);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.company-card:hover .explore {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.38);
}
.company-icon {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: var(--shadow-inner), 0 8px 22px rgba(0,0,0,0.14);
  transition: transform var(--t-base) var(--ease);
}
.company-card:hover .company-icon { transform: scale(1.10) rotate(-6deg); }

/* ── Quick Cards: Colour-Coded Gradient Icons ─────────────── */
.quick-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(16,43,90,0.07);
  border-radius: var(--r-xl);
  padding: var(--space-6) var(--space-3);
  position: relative;
  overflow: hidden;
}
.quick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(29,99,233,0.04), rgba(100,66,255,0.04));
  transition: opacity var(--t-base);
  border-radius: inherit;
  pointer-events: none;
}
.quick-card:hover::after { opacity: 1; }
.quick-card:hover {
  transform: translateY(-7px) scale(1.03);
  border-color: rgba(29,99,233,0.16);
  box-shadow: 0 18px 40px rgba(14,52,140,0.13);
}
/* Per-type icon colours */
.quick-card:nth-child(1) .qc-icon { background: linear-gradient(145deg, #dce8ff, #b8d0ff); color: var(--blue); }
.quick-card:nth-child(2) .qc-icon { background: linear-gradient(145deg, #fff3d6, #ffe099); color: #b07600; }
.quick-card:nth-child(3) .qc-icon { background: linear-gradient(145deg, #ece9ff, #d1c8ff); color: var(--purple); }
.quick-card:nth-child(4) .qc-icon { background: linear-gradient(145deg, #d6f5e8, #a3e6c8); color: #0a7a52; }
.quick-card:nth-child(5) .qc-icon { background: linear-gradient(145deg, #fde8e8, #ffc5c5); color: var(--red); }
.quick-card:nth-child(6) .qc-icon { background: linear-gradient(145deg, #e0f0ff, #b0d8ff); color: #0070c0; }
.quick-card .qc-icon {
  width: 56px; height: 56px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.quick-card:hover .qc-icon {
  transform: scale(1.14) translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.8);
}
.quick-card strong { font-size: var(--text-base); font-weight: var(--weight-bold); color: var(--ink); }
.quick-card small  { color: var(--muted-light); font-size: 11px; }

/* ── REC Strip: Floating Orbs + Benefits Ticker ───────────── */
.rec-strip {
  background:
    radial-gradient(circle at 8% 80%, rgba(120,90,255,0.35), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(246,203,99,0.18), transparent 30%),
    linear-gradient(135deg, #3a28a0, #1e1055 55%, #4a39b3);
  box-shadow: 0 32px 80px rgba(42,26,110,0.40), inset 0 1px 0 rgba(255,255,255,0.14);
  padding: var(--space-10) var(--space-12) var(--space-10);
  position: relative;
}
/* Orbiting circles */
.rec-strip::before {
  width: 520px; height: 520px;
  background: none;
  border: 1px solid rgba(255,255,255,0.07);
  animation: recOrbit 22s linear infinite;
  right: -180px; top: -220px;
}
.rec-strip::after {
  width: 300px; height: 300px;
  background: none;
  border: 1px solid rgba(255,255,255,0.05);
  animation: recOrbit 14s linear infinite reverse;
  right: 60px; bottom: -160px;
}
@keyframes recOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Glowing gold dot inside kicker */
.rec-strip-content .kicker {
  background: rgba(246,203,99,0.12);
  border-color: rgba(246,203,99,0.28);
  color: var(--gold-vivid);
  letter-spacing: 2px;
}
.rec-strip-content h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  background: linear-gradient(90deg, #ffffff 40%, #f6cb63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: none;
}
/* Scrolling benefit pills */
.rec-benefits-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
}
.rec-benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 11px;
  font-weight: var(--weight-semi);
  color: rgba(255,255,255,0.88);
  animation: pillPop 0.5s var(--ease) both;
}
.rec-benefit-pill:nth-child(1) { animation-delay: 0.0s; }
.rec-benefit-pill:nth-child(2) { animation-delay: 0.08s; }
.rec-benefit-pill:nth-child(3) { animation-delay: 0.16s; }
.rec-benefit-pill:nth-child(4) { animation-delay: 0.24s; }
.rec-benefit-pill::before {
  content: "✓";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-vivid);
  color: #000;
  font-size: 8px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
@keyframes pillPop {
  from { opacity: 0; transform: scale(0.8) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Listing Cards: Premium Image + Price Pop ─────────────── */
.listing-card {
  border-radius: var(--r-xl);
  border: 1px solid rgba(16,43,90,0.08);
  box-shadow: 0 8px 28px rgba(10,30,80,0.07);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10,30,80,0.14);
}
.listing-image {
  height: 180px;
  background: linear-gradient(145deg, #c8dcf7, #7098cc);
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.listing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.listing-card:hover .listing-image::after {
  transform: translateX(100%);
}
.listing-image.vehicle { background: linear-gradient(145deg, #f5e6c0, #c8960a); }
.listing-image.energy  { background: linear-gradient(145deg, #c0f0da, #2da06a); }
.listing-body h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--navy);
}
.listing-body p { font-size: 12px; color: var(--muted); }
.listing-bottom strong {
  font-size: var(--text-lg);
  font-weight: var(--weight-black);
  color: var(--blue);
  letter-spacing: -0.5px;
}

/* ── News Items: Accent-Left Card Style ───────────────────── */
.news-item {
  padding: var(--space-4);
  border-bottom: none;
  border-radius: var(--r-md);
  background: rgba(248,250,255,0.85);
  border: 1px solid rgba(16,43,90,0.07);
  margin-bottom: var(--space-3);
  border-left: 3px solid var(--blue);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.news-item:last-child { margin-bottom: 0; }
.news-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.news-item:nth-child(2) { border-left-color: var(--purple); }
.news-item:nth-child(3) { border-left-color: var(--green); }
.news-item .news-date {
  font-size: 10px;
  font-weight: var(--weight-bold);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.news-item h4 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--navy);
  line-height: 1.45;
  margin: 6px 0 4px;
}
.news-item p { font-size: 12px; color: var(--muted); margin: 0; }

/* ── Panel (Featured + News): Glass Premium ──────────────── */
.panel {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(100,140,255,0.10);
  border-radius: var(--r-2xl);
  box-shadow: 0 20px 60px rgba(12,40,90,0.08);
}

/* ── Why-Choose BMS: Gradient Icons + Stagger Reveal ─────── */
.why-grid {
  gap: var(--space-5);
}
.why-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(20,50,100,0.07);
  border-radius: var(--r-xl);
  padding: var(--space-7) var(--space-6);
  box-shadow: 0 6px 24px rgba(10,30,80,0.07);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(29,99,233,0.04);
  transition: transform var(--t-slow) var(--ease), background var(--t-slow);
  pointer-events: none;
}
.why-card:hover::after {
  transform: scale(1.8);
  background: rgba(29,99,233,0.07);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,30,80,0.12);
}
/* Coloured icon gradients per card position */
.why-card:nth-child(1) .why-icon { background: linear-gradient(145deg, #dce8ff, #b2caff); color: var(--blue); }
.why-card:nth-child(2) .why-icon { background: linear-gradient(145deg, #ffefd6, #ffd696); color: #c07800; }
.why-card:nth-child(3) .why-icon { background: linear-gradient(145deg, #e8f8f0, #b0e8c8); color: #0b7a50; }
.why-card:nth-child(4) .why-icon { background: linear-gradient(145deg, #ebe8ff, #cec5ff); color: var(--purple); }
.why-card:nth-child(5) .why-icon { background: linear-gradient(145deg, #fde8e8, #ffbfbf); color: var(--red); }
.why-card:nth-child(6) .why-icon { background: linear-gradient(145deg, #d8f0ff, #a0d8ff); color: #0070b0; }
.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: var(--space-5);
  box-shadow: 0 8px 22px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform var(--t-base) var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(-5deg); }
.why-card h3 {
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.why-card p { font-size: var(--text-base); color: var(--muted); line-height: 1.7; }

/* Scroll-triggered fade-in for why-cards */
.why-card { opacity: 0; transform: translateY(28px); }
.why-card.visible {
  animation: cardReveal 0.55s var(--ease) forwards;
}
.why-card:nth-child(1).visible { animation-delay: 0.00s; }
.why-card:nth-child(2).visible { animation-delay: 0.07s; }
.why-card:nth-child(3).visible { animation-delay: 0.14s; }
.why-card:nth-child(4).visible { animation-delay: 0.21s; }
.why-card:nth-child(5).visible { animation-delay: 0.28s; }
.why-card:nth-child(6).visible { animation-delay: 0.35s; }
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade-in for quick-cards too */
.quick-card { opacity: 0; transform: translateY(18px); }
.quick-card.visible {
  animation: cardReveal 0.45s var(--ease) forwards;
}
.quick-card:nth-child(1).visible { animation-delay: 0.00s; }
.quick-card:nth-child(2).visible { animation-delay: 0.06s; }
.quick-card:nth-child(3).visible { animation-delay: 0.12s; }
.quick-card:nth-child(4).visible { animation-delay: 0.18s; }
.quick-card:nth-child(5).visible { animation-delay: 0.24s; }
.quick-card:nth-child(6).visible { animation-delay: 0.30s; }

/* Scroll-triggered for company-cards */
.company-card { opacity: 0; transform: translateY(22px); }
.company-card.visible {
  animation: cardReveal 0.5s var(--ease) forwards;
}
.company-card:nth-child(1).visible { animation-delay: 0.00s; }
.company-card:nth-child(2).visible { animation-delay: 0.08s; }
.company-card:nth-child(3).visible { animation-delay: 0.16s; }
.company-card:nth-child(4).visible { animation-delay: 0.24s; }

/* ── Section Head Upgrade ─────────────────────────────────── */
.section-head {
  position: relative;
  padding-bottom: var(--space-2);
}
.section-head::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), #7b5cff);
}
.section-head h2 {
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.6px;
  color: var(--navy);
}

/* ── Trust Strip number counting animation ────────────────── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trust-item strong { animation: countUp 0.6s var(--ease) both; }
.trust-item:nth-child(1) strong { animation-delay: 0.05s; }
.trust-item:nth-child(2) strong { animation-delay: 0.15s; }
.trust-item:nth-child(3) strong { animation-delay: 0.25s; }
.trust-item:nth-child(4) strong { animation-delay: 0.35s; }


/* ═══════════════════════════════════════════════
   EVENTS PAGE
   ═══════════════════════════════════════════════ */

/* ── Events Hero ────────────────────────────── */
.events-hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(29,99,233,0.1), transparent 40%),
              linear-gradient(135deg, var(--navy), #040c1e);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: var(--space-10) var(--space-8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  margin-bottom: var(--space-8);
}
.events-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.events-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-light);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(255,255,255,0.15);
}
.events-hero-kicker svg { width: 16px; height: 16px; }
.events-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 var(--space-4);
  color: #fff;
}
.events-hero h1 em {
  font-style: normal;
  color: var(--gold-vivid);
}
.events-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 var(--space-6);
  max-width: 580px;
}
.events-hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.events-hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Dots Decoration */
.events-hero-dots {
  position: absolute;
  top: 40px; right: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  opacity: 0.15;
}
.events-hero-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Hero Stats Row */
.events-hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-8);
}
.hero-stat-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.hsc-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hsc-icon.blue { background: rgba(77,132,255,0.15); color: #739bff; border: 1px solid rgba(77,132,255,0.3); }
.hsc-icon.gold { background: rgba(246,203,23,0.15); color: var(--gold-vivid); border: 1px solid rgba(246,203,23,0.3); }
.hsc-icon.green { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.hsc-icon svg { width: 26px; height: 26px; }
.hsc-data {
  display: flex;
  flex-direction: column;
}
.hsc-data strong {
  font-size: 28px;
  font-weight: var(--weight-black);
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
}
.hsc-data span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  font-weight: var(--weight-semi);
  margin-top: 4px;
}

/* ── Featured Event (Countdown) ─────────────── */
.featured-event {
  background: linear-gradient(145deg, #162a5b, #0c1a3b);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-2xl);
  padding: var(--space-8);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-10);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.featured-event::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.07)"/></svg>') repeat;
  pointer-events: none;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,203,23,0.15);
  color: var(--gold-vivid);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(246,203,23,0.3);
}
.featured-badge svg { width: 14px; height: 14px; }
.featured-event h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: var(--weight-black);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  color: #fff;
}
.featured-event p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  line-height: 1.6;
  margin: 0 0 var(--space-5);
}
.featured-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.featured-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-md);
  color: rgba(255,255,255,0.9);
  font-weight: var(--weight-semi);
}
.featured-meta-item svg { width: 18px; height: 18px; color: var(--gold-vivid); }

/* Countdown Box */
.countdown-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 12px rgba(0,0,0,0.2);
}
.countdown-title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
  text-align: center;
}
.countdown-units {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  font-size: 32px;
  font-weight: var(--weight-black);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 11px;
  font-weight: var(--weight-semi);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.countdown-sep {
  font-size: 28px;
  font-weight: var(--weight-black);
  color: rgba(255,255,255,0.3);
  line-height: 1;
  transform: translateY(-2px);
}
.countdown-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.seats-left {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.seats-left strong { color: var(--gold-vivid); font-weight: var(--weight-bold); }

/* ── Filter Bar ─────────────────────────────── */
.events-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.filter-tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: var(--weight-semi);
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-tab svg { width: 16px; height: 16px; opacity: 0.7; }
.filter-tab:hover {
  background: var(--bg-1);
  border-color: var(--line-heavy);
  color: var(--ink);
}
.filter-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(29,99,233,0.3);
}
.filter-tab.active svg { opacity: 1; }
.events-search {
  position: relative;
  width: 280px;
}
.events-search svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.events-search input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: #fff;
  font-size: 14px;
  font-family: inherit;
}
.events-search input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,99,233,0.1);
}

/* ── Events Grid & Cards ────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.event-card-v2 {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--shadow-sm);
}
.event-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ec-image {
  position: relative;
  height: 180px;
}
.ec-image-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ec-image-bg.blue { background: linear-gradient(135deg, #1d63e9, #0f40a3); }
.ec-image-bg.purple { background: linear-gradient(135deg, #7b5cff, #4a33ab); }
.ec-image-bg.gold { background: linear-gradient(135deg, #f6cb17, #c49d00); }
.ec-image-bg.green { background: linear-gradient(135deg, #2ecc71, #1e924d); }
.ec-image-bg.navy { background: linear-gradient(135deg, #1e293b, #0f172a); }
.ec-image-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.5;
}
.ec-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  border-radius: 8px;
  width: 54px; height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ec-date-badge .day { font-size: 20px; font-weight: var(--weight-black); color: var(--navy); line-height: 1; }
.ec-date-badge .mon { font-size: 11px; font-weight: var(--weight-bold); color: var(--blue); text-transform: uppercase; margin-top: 2px; }
.ec-type-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: var(--weight-bold);
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
}
.ec-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rec-exclusive-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  color: #c49d00;
  background: rgba(246,203,23,0.15);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.rec-exclusive-tag svg { width: 12px; height: 12px; }
.event-card-v2 h3 {
  font-size: 18px;
  font-weight: var(--weight-black);
  color: var(--navy);
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}
.event-card-v2 p {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 var(--space-4);
  flex: 1;
}
.ec-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-soft);
}
.ec-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: var(--weight-semi);
}
.ec-meta-row svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.ec-footer {
  padding: var(--space-4) var(--space-5);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ec-price {
  display: flex;
  flex-direction: column;
}
.ec-price strong {
  font-size: 16px;
  font-weight: var(--weight-black);
  color: var(--navy);
}
.ec-price span {
  font-size: 11px;
  color: var(--muted);
  font-weight: var(--weight-semi);
}
.ec-price.free strong { color: #2ecc71; }

/* ── Timeline ───────────────────────────────── */
.events-timeline-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.timeline-month-badge {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: var(--weight-bold);
  padding: 6px 16px;
  border-radius: var(--r-full);
  letter-spacing: 1px;
}
.timeline-line {
  flex: 1;
  height: 2px;
  background: var(--line);
}
.timeline-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  margin-bottom: var(--space-3);
  align-items: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.timeline-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-heavy);
}
.timeline-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding-right: var(--space-5);
  border-right: 1px solid var(--line);
}
.tday { font-size: 28px; font-weight: var(--weight-black); color: var(--blue); line-height: 1; }
.tmon { font-size: 12px; font-weight: var(--weight-bold); color: var(--muted); text-transform: uppercase; margin-top: 2px; }
.timeline-info { flex: 1; }
.timeline-info h4 {
  font-size: 16px;
  font-weight: var(--weight-bold);
  margin: 0 0 6px 0;
  color: var(--navy);
}
.tmeta {
  display: flex;
  gap: var(--space-4);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: var(--weight-semi);
  flex-wrap: wrap;
}
.tmeta span { display: inline-flex; align-items: center; gap: 6px; }
.tmeta svg { width: 14px; height: 14px; opacity: 0.6; }

/* ── REC Events Strip ───────────────────────── */
.events-rec-strip {
  background: linear-gradient(135deg, #f6cb17, #d49500);
  border-radius: var(--r-2xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #1a1000;
  margin-bottom: var(--space-10);
  box-shadow: 0 16px 32px rgba(246,203,23,0.25);
}
.events-rec-strip::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(circle at 100% 50%, rgba(255,255,255,0.25), transparent 70%);
  pointer-events: none;
}
.rec-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.1);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: var(--weight-black);
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}
.rec-strip-label svg { width: 14px; height: 14px; }
.events-rec-strip h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: var(--weight-black);
  line-height: 1.1;
  margin: 0 0 var(--space-3);
}
.events-rec-strip p {
  font-size: var(--text-lg);
  color: rgba(0,0,0,0.7);
  font-weight: var(--weight-semi);
  margin: 0 0 var(--space-5);
  max-width: 500px;
}
.rec-perks-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.rec-perk-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: rgba(0,0,0,0.8);
}
.rec-perk-mini svg { width: 16px; height: 16px; color: #1a1000; flex-shrink: 0; }
.rec-strip-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ── Newsletter Strip ───────────────────────── */
.events-newsletter {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.newsletter-content h3 { margin: 0 0 var(--space-2); font-size: 22px; font-weight: var(--weight-black); color: var(--navy); }
.newsletter-content p { margin: 0; color: var(--ink-2); font-size: 15px; }
.newsletter-form {
  display: flex;
  gap: var(--space-2);
  width: 100%;
  max-width: 400px;
}
.newsletter-form input {
  flex: 1;
  padding: 0 16px;
  border: 1px solid var(--line-heavy);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
}
.newsletter-form input:focus { border-color: var(--blue); outline: none; }
