/*
 * ═══════════════════════════════════════════════════════════════════
 * BRVO Digital LLC — Master Core CSS
 * Built from Master Core design system analysis
 * Covers: bvh__ header, wrap layout, hero, footer, all page sections
 * ═══════════════════════════════════════════════════════════════════
 */

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:          #0B2436;
  --bg-sec:      #08293B;
  --bg-card:     #16364D;
  --border:      rgba(255,255,255,0.06);
  --accent:      #A6FF00;
  --accent-dim:  rgba(166,255,0,0.12);
  --primary:     rgba(22,54,77,0.6);
  --purple:      rgba(120,80,200,0.3);
  --text:        #FFFFFF;
  --text-muted:  #B8C7D1;
  --font:        'Inter', sans-serif;
  --font-display:'Space Grotesk', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 20px 60px rgba(0,0,0,0.35);
  --header-h:    72px;
  --topbar-h:    38px;
  --wrap:        1280px;
  --pad:         clamp(1rem, 4vw, 4rem);
  --transition:  0.25s ease;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;  padding-top: 130px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
svg { display: inline-block; }

/* ── LAYOUT WRAP ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── TOPBAR ────────────────────────────────────────────────────── */
.bvh-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--bg-sec);
  border-bottom: 1px solid var(--border);
  z-index: 1001;
  display: flex;
  align-items: center;
}
.bvh-topbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bvh-topbar__left {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.bvh-topbar__social {
  display: flex;
  gap: 0.75rem;
}
.bvh-topbar__social a {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.bvh-topbar__social a:hover { color: var(--accent); }

/* ── MAIN HEADER ───────────────────────────────────────────────── */
.bvh {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--header-h);
  background: rgba(11,36,54,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.bvh.bvh--scrolled {
  background: rgba(8,41,59,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.bvh__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── LOGO ──────────────────────────────────────────────────────── */
.bvh__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.bvh__logo-mark { width: 30px; height: 30px; }
.bvh__logo-dim { color: var(--text-muted); font-weight: 400; }
.bvh__logo:hover .bvh__logo-mark circle { fill: #C8FF40; }

/* ── PRIMARY NAV ───────────────────────────────────────────────── */
.bvh__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.bvh__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  background: none;
  border: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.bvh__nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.bvh__nav-link:hover,
.bvh__nav-link.bvh--active { color: var(--accent); background: var(--accent-dim); }
.bvh__nav-item:hover .bvh__nav-link svg { transform: rotate(180deg); }

/* ── MEGA MENU ─────────────────────────────────────────────────── */
.bvh__nav-item { position: relative; }
.bvh__mega {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 860px;
  background: var(--bg-sec);
  border: 1px solid rgba(166,255,0,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  display: none;
  grid-template-columns: repeat(6,1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 200;
}
.bvh__nav-item:hover .bvh__mega { display: grid; }
.bvh__mega-col h5 {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.bvh__mega-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--transition), padding-left var(--transition);
}
.bvh__mega-col a:hover { color: var(--accent); padding-left: 4px; }

/* ── HEADER ACTIONS ────────────────────────────────────────────── */
.bvh__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.bvh__btn-ghost {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  transition: all var(--transition);
  font-family: var(--font);
}
.bvh__btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.bvh__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: #0B2436;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  font-family: var(--font-display);
  transition: opacity var(--transition), transform var(--transition);
}
.bvh__btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.bvh__btn-primary svg { width: 14px; height: 14px; }
.bvh__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
}
.bvh__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── MOBILE OVERLAY ────────────────────────────────────────────── */
.bvh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.bvh-overlay.bvh--open { opacity: 1; pointer-events: all; }

/* ── MOBILE OFF-CANVAS ─────────────────────────────────────────── */
.bvh-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--bg-sec);
  border-left: 1px solid var(--border);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.bvh-mobile.bvh--open { transform: translateX(0); }
.bvh-mobile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.bvh-mobile__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
}
.bvh-mobile__logo svg { width: 24px; height: 24px; }
.bvh-mobile__logo-dim { color: var(--text-muted); font-weight: 400; }
.bvh-mobile__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0.35rem;
}
.bvh-mobile__nav { padding: 1rem 0; flex: 1; }
.bvh-mobile__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  text-align: left;
  transition: color var(--transition), background var(--transition);
  font-family: var(--font);
}
.bvh-mobile__link:hover { color: var(--accent); background: var(--accent-dim); }
.bvh-mobile__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.bvh-mobile__accordion {
  background: rgba(0,0,0,0.15);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.bvh-mobile__accordion.bvh--open { max-height: 1000px; }
.bvh-mobile__group-label {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 0.75rem 1.5rem 0.35rem;
}
.bvh-mobile__sub {
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.bvh-mobile__sub:hover { color: var(--accent); }
.bvh-mobile__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bvh-mobile__foot .bvh__btn-primary,
.bvh-mobile__foot .bvh__btn-ghost { justify-content: center; text-align: center; width: 100%; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #0B2436; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(166,255,0,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* ── HERO SECTION ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.4;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(166,255,0,0.25);
  border-radius: 999px;
  background: rgba(166,255,0,0.06);
}
.hero-slides { position: relative; min-height: 220px; }
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: fadeSlide 0.5s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hero-slide h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-slide p { font-size: 1.05rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats-strip { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hs-item { display: flex; flex-direction: column; }
.hs-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hs-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; font-family: var(--font-mono); letter-spacing: 0.05em; }
.hero-dots { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.hero-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dots .dot.active { background: var(--accent); width: 20px; border-radius: 4px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.ill-hero { width: 100%; max-width: 520px; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)); }

/* ── FLOATING CARDS ────────────────────────────────────────────── */
.hero-card-float {
  position: absolute;
  background: rgba(22,54,77,0.95);
  border: 1px solid rgba(166,255,0,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: floatCard 3s ease-in-out infinite alternate;
}
.hc-1 { top: 10%; left: -8%; animation-delay: 0s; }
.hc-2 { top: 15%; right: -5%; animation-delay: 1.2s; }
@keyframes floatCard { from { transform: translateY(0); } to { transform: translateY(-10px); } }

/* ── SECTIONS ──────────────────────────────────────────────────── */
section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-muted); max-width: 580px; font-size: 1rem; }
.section-header.centered p { margin: 0 auto; }
.section-cta { margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.section-cta.centered { justify-content: center; }

/* ── CARDS / GRID ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: rgba(166,255,0,0.25); transform: translateY(-2px); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.625rem; }
.card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* ── SERVICES GRID ─────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.service-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.service-card:hover { border-color: rgba(166,255,0,0.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.service-card .icon { font-size: 2.25rem; margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.625rem; }
.service-card p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.6; }
.card-link { display: inline-block; margin-top: 1.25rem; font-size: 0.8rem; color: var(--accent); font-weight: 600; }

/* ── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-sec) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,255,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-illustration { position: absolute; right: 0; top: 50%; transform: translateY(-50%); opacity: 0.06; pointer-events: none; }

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--bg-sec);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4,1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-brand .mark { width: 26px; height: 26px; }
.footer-brand .dim { color: var(--text-muted); font-weight: 400; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── GLOW EFFECTS ──────────────────────────────────────────────── */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.12;
}
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ── FORM ELEMENTS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── BADGES / TAGS ─────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-green { background: rgba(166,255,0,0.12); color: var(--accent); border: 1px solid rgba(166,255,0,0.25); }
.badge-blue  { background: rgba(96,165,250,0.12); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }
.badge-red   { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }
.badge-yellow{ background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }

/* ── PROCESS TIMELINE ──────────────────────────────────────────── */
.process-timeline { display: flex; gap: 0; position: relative; }
.process-step { flex: 1; padding: 2rem; position: relative; }
.process-step::after { content: ''; position: absolute; top: 50%; right: 0; width: 1px; height: 60%; transform: translateY(-50%); background: var(--border); }
.process-step:last-child::after { display: none; }
.step-num { font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.step-icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.process-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── INDUSTRIES GRID ───────────────────────────────────────────── */
.industries-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.industry-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.industry-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* ── PRICING ───────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(166,255,0,0.04));
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin: 1rem 0;
}
.pricing-card .price sup { font-size: 1.25rem; vertical-align: super; }
.pricing-card ul { list-style: none; margin: 1.5rem 0 2rem; }
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pricing-card ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── ADMIN LAYOUT ──────────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px;
  background: var(--bg-sec);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0; bottom: 0; left: 0;
  overflow-y: auto;
  z-index: 100;
}
.admin-logo { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.admin-logo a { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; color: var(--accent); }
.admin-logo span { color: var(--text); font-weight: 400; }
.admin-logo p { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.2rem; font-family: var(--font-mono); letter-spacing: 0.1em; }
.admin-nav { padding: 1rem 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { color: var(--accent); background: var(--accent-dim); border-left-color: var(--accent); }
.admin-nav .nav-section-label {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  padding: 1rem 1.5rem 0.35rem;
}
.admin-main { margin-left: 250px; flex: 1; padding: 2rem; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.admin-topbar h1 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.admin-actions { display: flex; gap: 0.75rem; align-items: center; }

/* ── TABLES ────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead th {
  background: rgba(0,0,0,0.2);
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
tbody td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ── STATS CARDS ───────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stat-card .num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-card .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }
.stat-card .trend { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; font-family: var(--font-mono); }

/* ── UTILITIES ─────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.bg-sec      { background: var(--bg-sec); }
.bg-card     { background: var(--bg-card); }
.border-top  { border-top: 1px solid var(--border); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bvh__mega { min-width: 680px; grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
    padding-top: 130px; }
  .bvh__nav, .bvh__actions .bvh__btn-ghost, .bvh__actions .bvh__btn-primary { display: none; }
  .bvh__burger { display: flex; }
  .bvh-topbar__left span:not(:first-child) { display: none; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats-strip { justify-content: center; }
  .hero-actions { justify-content: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
  .process-timeline { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN — All Devices
   Breakpoints:
   xs:   < 480px  (small phones: iPhone SE, older Android)
   sm:   < 640px  (phones: iPhone 14, Pixel)
   md:   < 768px  (large phones, small tablets)
   lg:   < 1024px (iPad, iPad Mini, landscape phones)
   xl:   < 1280px (iPad Pro, small laptops)
   2xl:  < 1440px (MacBook, laptops)
   3xl:  ≥ 1440px (iMac, large monitors)
   ═══════════════════════════════════════════════════════════════════ */

/* ── 3XL: Large monitors / iMac (1440px+) ─────────────────────── */
@media (min-width: 1440px) {
  :root { --wrap: 1360px; --pad: 5rem; }
  .hero-slide h1 { font-size: 4.25rem; }
  .section-header h2 { font-size: 3rem; }
  .grid-3 { grid-template-columns: repeat(3,1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(4,1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 2.5fr repeat(4,1fr); gap: 3rem; }
}

/* ── XL: iPad Pro / Small laptops (1024px–1279px) ─────────────── */
@media (max-width: 1279px) {
  :root { --wrap: 960px; --pad: 2.5rem; }
  .bvh__mega { min-width: 720px; grid-template-columns: repeat(3,1fr); }
  .hero .wrap { gap: 2.5rem; }
  .hero-slide h1 { font-size: 2.75rem; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

/* ── LG: iPad / Tablet landscape (768px–1023px) ────────────────── */
@media (max-width: 1023px) {
  #brvoBurger { display: flex !important; }
  nav[role="navigation"] { display: none !important; }

  :root { --wrap: 100%; --pad: 2rem; }
    padding-top: 130px; }

  /* Header */
  .bvh__nav { display: none; }
  .bvh__actions .bvh__btn-ghost { display: none; }
  .bvh__actions .bvh__btn-primary { display: none; }
  .bvh__burger { display: flex; }
  .bvh-topbar__left { gap: 1rem; }
  .bvh-topbar__left span:last-child { display: none; }

  /* Hero */
  .hero .wrap { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-visual { display: flex; justify-content: center; }
  .ill-hero { max-width: 380px; }
  .hero-actions { justify-content: center; }
  .hero-stats-strip { justify-content: center; gap: 2rem; }
  .hero-dots { justify-content: center; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .grid-2 { grid-template-columns: 1fr; }

  /* Services grid */
  .services-grid { grid-template-columns: repeat(2,1fr); }

  /* Process */
  .process-timeline { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); }
  .process-step { background: var(--bg); }
  .process-step::after { display: none; }

  /* Admin */
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }

  /* Portal */
  .portal-sidebar { width: 200px; }
  .portal-main { margin-left: 200px; }
}

/* ── MD: Large phones / Small tablets (640px–767px) ───────────── */
@media (max-width: 767px) {
  :root { --pad: 1.5rem; --header-h: 64px; --topbar-h: 36px; }
    padding-top: 130px; font-size: 0.9rem; }

  /* Topbar */
  .bvh-topbar__left { font-size: 0.72rem; gap: 0.75rem; }
  .bvh-topbar__social { gap: 0.5rem; }
  .bvh-topbar__left span:not(:first-child) { display: none; }

  /* Hero */
  .hero { padding: 3rem 0 4rem; min-height: auto; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-slide h1 { font-size: 2.25rem; }
  .hero-slide p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats-strip { gap: 1.25rem; justify-content: center; }
  .hs-num { font-size: 1.35rem; }

  /* Sections */
  section { padding: 3.5rem 0; }
  .section-header h2 { font-size: 1.75rem; }
  .section-header p { font-size: 0.9rem; }
  .section-cta { flex-direction: column; align-items: flex-start; }
  .section-cta.centered { align-items: center; }

  /* Grids */
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .industries-grid { gap: 0.5rem; }

  /* Cards */
  .card { padding: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; font-size: 0.75rem; }
  footer { padding: 3rem 0 1.5rem; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-illustration { display: none; }

  /* Admin */
  .admin-wrap { flex-direction: column; }
  .admin-sidebar { position: static; width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .admin-main { margin-left: 0; padding: 1.5rem; }
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .admin-nav { display: flex; flex-wrap: wrap; padding: 0.5rem; gap: 0.25rem; }
  .admin-nav a { padding: 0.5rem 0.875rem; border-left: none; border-radius: 6px; font-size: 0.8rem; }
  .admin-nav .nav-section-label { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  /* Portal */
  .portal-sidebar { display: none; }
  .portal-main { margin-left: 0; padding: 1.25rem; }
  .portal-topbar { flex-direction: row; }

  /* Tables */
  .table-wrap { font-size: 0.8rem; }
  thead th { padding: 0.625rem 0.875rem; }
  tbody td { padding: 0.75rem 0.875rem; }

  /* Process */
  .process-timeline { grid-template-columns: 1fr; }

  /* Mobile nav */
  .bvh-mobile { width: 100%; border-left: none; }
}

/* ── SM: Phones (480px–639px) ──────────────────────────────────── */
@media (max-width: 639px) {
  :root { --pad: 1.25rem; }
  .hero-slide h1 { font-size: 2rem; line-height: 1.15; }
  .eyebrow { font-size: 0.7rem; padding: 0.35rem 0.875rem; }
  .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .stat-card .num { font-size: 1.75rem; }
  .bvh-mobile { width: 100%; }
  .bvh__inner { gap: 1rem; }
  .bvh__logo { font-size: 1.05rem; }
  .bvh__logo-mark { width: 26px; height: 26px; }
}

/* ── XS: Small phones (< 480px) ────────────────────────────────── */
@media (max-width: 479px) {
  :root { --pad: 1rem; --header-h: 60px; --topbar-h: 32px; }
  body { font-size: 0.875rem; }
  .hero-slide h1 { font-size: 1.75rem; }
  .hero-slide p { font-size: 0.875rem; }
  .section-header h2 { font-size: 1.5rem; }
  .eyebrow { display: none; }
  .hs-item { align-items: center; }
  .hs-num { font-size: 1.2rem; }
  .card { padding: 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
  .stat-card { padding: 1rem; }
  .stat-card .num { font-size: 1.5rem; }
  .btn { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
  .btn-sm { padding: 0.4rem 0.875rem; font-size: 0.75rem; }
  .footer-social a { width: 28px; height: 28px; font-size: 0.65rem; }
  .bvh-topbar { display: none; }
    padding-top: 130px; }
  .bvh { top: 0; }
  .pricing-card { padding: 1.5rem; }
  .pricing-card .price { font-size: 2rem; }

  /* Portal mobile */
  .portal-main { padding: 1rem; }
  .portal-topbar h2 { font-size: 0.95rem; }
  .portal-avatar { width: 30px; height: 30px; font-size: 0.75rem; }

  /* Tables on tiny screens */
  .table-wrap { font-size: 0.75rem; }
  thead th { padding: 0.5rem 0.625rem; }
  tbody td { padding: 0.625rem; }
}

/* ── TOUCH DEVICES: remove hover effects ───────────────────────── */
@media (hover: none) {
  .card:hover { transform: none; }
  .service-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .bvh__btn-primary:hover { transform: none; }
}

/* ── PRINT ─────────────────────────────────────────────────────── */
@media print {
  .bvh, .bvh-topbar, footer, .admin-sidebar, .portal-sidebar { display: none !important; }
    padding-top: 130px; background: white; color: black; }
  .admin-main, .portal-main { margin-left: 0; }
}
