/* ==========================================================================
   BugQore — premium light theme with 3D depth
   ========================================================================== */

:root {
  --bq-navy: #0a2540;
  --bq-ink: #16283a;
  --bq-body: #46586a;
  --bq-blue: #2458e6;
  --bq-blue-dark: #1a46c4;
  --bq-violet: #7c3aed;
  --bq-cyan: #06b6d4;
  --bq-blue-soft: #eef3fe;
  --bq-border: #e6ebf1;
  --bq-gray-bg: #f6f9fc;
  --bq-radius: 16px;
  --bq-grad: linear-gradient(135deg, #2458e6 0%, #7c3aed 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--bq-ink);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--bq-navy);
  letter-spacing: -0.02em;
}

section[id], header[id] {
  scroll-margin-top: 76px;
}

/* ---------- Scroll progress bar ---------- */

.bq-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--bq-grad);
  z-index: 2000;
  transition: width 0.08s linear;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */

.btn-grad {
  background: var(--bq-grad);
  background-size: 150% 150%;
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(36, 88, 230, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.3s ease;
}

.btn-grad:hover, .btn-grad:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 88, 230, 0.45);
  background-position: 100% 100%;
}

.btn-ghost {
  border: 1px solid var(--bq-border);
  color: var(--bq-navy);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(36, 88, 230, 0.45);
  color: var(--bq-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.08);
}

.btn-light, .btn-outline-light {
  font-weight: 600;
}

/* ---------- Logo ---------- */

.bq-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

@media (max-width: 575.98px) {
  .bq-logo-img {
    height: 28px;
  }
}

/* ---------- Navbar ---------- */

.bq-navbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.bq-navbar.scrolled {
  border-color: var(--bq-border);
  box-shadow: 0 6px 24px rgba(10, 37, 64, 0.07);
}

.bq-navbar .nav-link {
  color: var(--bq-ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  position: relative;
}

.bq-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--bq-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.bq-navbar .nav-link:hover {
  color: var(--bq-blue);
}

.bq-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

/* ---------- Hero ---------- */

.bq-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: #ffffff;
}

.bq-graph-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite alternate;
}

.bq-blob-1 {
  width: 480px; height: 480px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(36, 88, 230, 0.22), transparent 65%);
}

.bq-blob-2 {
  width: 380px; height: 380px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 65%);
  animation-delay: -5s;
}

.bq-blob-3 {
  width: 260px; height: 260px;
  top: 30%; left: 42%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.13), transparent 65%);
  animation-delay: -9s;
}

@keyframes blobFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(30px, -34px, 0) scale(1.12); }
}

.bq-h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.text-grad {
  background: var(--bq-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bq-lead {
  font-size: 1.15rem;
  line-height: 1.68;
  color: var(--bq-body);
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.bq-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bq-navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--bq-border);
  border-radius: 50rem;
  padding: 0.45rem 1.05rem;
  box-shadow: 0 2px 10px rgba(10, 37, 64, 0.06);
  margin-bottom: 1.6rem;
}

.bq-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15); }
  50%      { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05); }
}

.bq-hero-points {
  font-size: 0.9rem;
  color: var(--bq-body);
  font-weight: 500;
}

.bq-hero-points i {
  color: #22c55e;
  margin-right: 0.35rem;
}

/* ---------- 3D tilt system ---------- */

.bq-tilt-wrap {
  perspective: 1200px;
  position: relative;
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bq-tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%),
              rgba(120, 160, 255, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

[data-tilt]:hover .bq-tilt-glare {
  opacity: 1;
}

/* ---------- Hero product window ---------- */

.bq-window {
  border: 1px solid var(--bq-border);
  border-radius: var(--bq-radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 70px rgba(10, 37, 64, 0.14), 0 4px 16px rgba(10, 37, 64, 0.06);
}

.bq-window-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--bq-gray-bg);
  border-bottom: 1px solid var(--bq-border);
  border-radius: var(--bq-radius) var(--bq-radius) 0 0;
}

.bq-wdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.bq-wdot.r { background: #ff5f56; }
.bq-wdot.y { background: #ffbd2e; }
.bq-wdot.g { background: #27c93f; }

.bq-window-title {
  font-size: 0.8rem;
  color: var(--bq-body);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.bq-badge-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.bq-window-body {
  padding: 1.1rem;
}

.bq-metric {
  border: 1px solid var(--bq-border);
  border-radius: 12px;
  padding: 0.75rem;
  background: #ffffff;
}

.bq-metric-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bq-body);
  font-weight: 600;
}

.bq-metric-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bq-navy);
  line-height: 1.2;
}

.bq-metric-trend { font-size: 0.72rem; font-weight: 600; }
.bq-metric-trend.down { color: #15803d; }
.bq-metric-trend.up { color: var(--bq-blue); }
.bq-metric-trend.neutral { color: var(--bq-body); }

.bq-finding {
  border: 1px solid var(--bq-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-top: 0.75rem;
  background: #ffffff;
}

.bq-sev {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bq-sev.high { background: rgba(220, 38, 38, 0.1); color: #b91c1c; }
.bq-sev.med  { background: rgba(217, 119, 6, 0.12); color: #b45309; }

.bq-mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: var(--bq-body);
}

.bq-finding-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bq-navy);
  margin-bottom: 0.5rem;
}

.bq-agent-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.bq-agent-trail span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  border-radius: 50rem;
  border: 1px solid var(--bq-border);
  color: var(--bq-body);
}

.bq-agent-trail .done {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  color: #15803d;
}

.bq-agent-trail .active {
  background: var(--bq-blue-soft);
  border-color: rgba(36, 88, 230, 0.3);
  color: var(--bq-blue);
}

.bq-agent-trail .active i {
  animation: spin 1.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.bq-agent-trail .merged {
  background: rgba(124, 58, 237, 0.07);
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--bq-violet);
}

/* Floating chips around the window */

.bq-float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--bq-border);
  border-radius: 50rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bq-navy);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
  animation: chipFloat 5.5s ease-in-out infinite alternate;
  z-index: 2;
}

.bq-float-chip i { color: var(--bq-blue); }

.chip-1 { top: -18px; right: 8%; }
.chip-2 { bottom: -16px; left: 4%; animation-delay: -2.7s; }

@keyframes chipFloat {
  from { transform: translateY(-6px); }
  to   { transform: translateY(8px); }
}

/* ---------- Marquee ---------- */

.bq-marquee {
  border-top: 1px solid var(--bq-border);
  border-bottom: 1px solid var(--bq-border);
  background: #ffffff;
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.bq-marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.bq-marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--bq-body);
  white-space: nowrap;
}

.bq-marquee-track i {
  font-style: normal;
  color: rgba(36, 88, 230, 0.5);
  font-size: 0.7rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Stats band ---------- */

.bq-statband {
  position: relative;
  background: var(--bq-navy);
  padding: 3.4rem 0;
  overflow: hidden;
}

.bq-statband-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38rem 16rem at 20% 0%, rgba(36, 88, 230, 0.25), transparent),
    radial-gradient(34rem 15rem at 85% 100%, rgba(124, 58, 237, 0.2), transparent);
  pointer-events: none;
}

.bq-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.bq-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 220px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */

.bq-section {
  padding: 6rem 0;
  position: relative;
}

.bq-section-gray {
  background: var(--bq-gray-bg);
  border-top: 1px solid var(--bq-border);
  border-bottom: 1px solid var(--bq-border);
}

.bq-section-navy {
  background: linear-gradient(160deg, #081e35, #0e3156);
  overflow: hidden;
}

.bq-aurora {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(45% 35% at 30% 40%, rgba(36, 88, 230, 0.35), transparent 60%),
    radial-gradient(40% 32% at 70% 60%, rgba(124, 58, 237, 0.3), transparent 60%),
    radial-gradient(30% 26% at 55% 30%, rgba(6, 182, 212, 0.22), transparent 60%);
  filter: blur(60px);
  animation: aurora 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(8deg) scale(1.15); }
}

.bq-section-head {
  max-width: 680px;
  margin: 0 auto 3.6rem;
  text-align: center;
}

.bq-section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.bq-section-head p {
  color: var(--bq-body);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.bq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bq-blue);
  margin-bottom: 1rem;
}

.bq-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--bq-grad);
}

.bq-eyebrow-light {
  color: #8ab0ff;
}

h2 { font-weight: 700; }

.bq-body {
  color: var(--bq-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bq-lead-light {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Platform feature cards ---------- */

.bq-feature {
  background: #ffffff;
  border: 1px solid var(--bq-border);
  border-radius: var(--bq-radius);
  padding: 1.9rem 1.8rem;
}

.bq-feature:hover {
  border-color: rgba(36, 88, 230, 0.35);
  box-shadow: 0 22px 48px rgba(10, 37, 64, 0.1);
}

.bq-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2458e6, #4f7cff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px rgba(36, 88, 230, 0.3);
  transform: translateZ(30px);
}

.bq-feature-icon.alt-1 { background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3); }
.bq-feature-icon.alt-2 { background: linear-gradient(135deg, #06b6d4, #38d9f0); box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3); }
.bq-feature-icon.alt-3 { background: linear-gradient(135deg, #0a2540, #23486e); box-shadow: 0 8px 20px rgba(10, 37, 64, 0.3); }

.bq-feature h5 {
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.bq-feature p {
  color: var(--bq-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bq-feature-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bq-blue);
  background: var(--bq-blue-soft);
  border-radius: 50rem;
  padding: 0.25rem 0.7rem;
}

/* ---------- Steps ---------- */

.bq-steps-row { z-index: 1; }

.bq-steps-line {
  display: none;
  position: absolute;
  top: 62px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(36, 88, 230, 0.3) 12%, rgba(124, 58, 237, 0.3) 88%, transparent);
  z-index: 0;
}

@media (min-width: 992px) {
  .bq-steps-line { display: block; }
}

.bq-step {
  background: #ffffff;
  border: 1px solid var(--bq-border);
  border-radius: var(--bq-radius);
  padding: 1.9rem 1.8rem;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bq-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.09);
}

.bq-step-num {
  font-family: "JetBrains Mono", monospace;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--bq-grad);
  box-shadow: 0 6px 16px rgba(36, 88, 230, 0.3);
  margin-bottom: 1rem;
}

.bq-step h5 { font-weight: 700; margin-bottom: 0.6rem; }

.bq-step p {
  color: var(--bq-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Technology ---------- */

.bq-tech {
  display: flex;
  gap: 1.1rem;
  background: #ffffff;
  border: 1px solid var(--bq-border);
  border-radius: var(--bq-radius);
  padding: 1.6rem;
}

.bq-tech:hover {
  border-color: rgba(36, 88, 230, 0.32);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.08);
}

.bq-tech-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--bq-blue-soft);
  color: var(--bq-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transform: translateZ(24px);
}

.bq-tech h6 { font-weight: 700; margin-bottom: 0.4rem; }

.bq-tech p {
  color: var(--bq-body);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Why / checklist ---------- */

.bq-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.93rem;
  height: 100%;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bq-check:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.bq-check i {
  color: #5eead4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Open source ---------- */

.bq-pr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--bq-border);
  border-radius: var(--bq-radius);
  overflow: hidden;
  background: #ffffff;
}

.bq-pr-list li + li {
  border-top: 1px solid var(--bq-border);
}

.bq-pr-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 1rem;
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  transition: background 0.15s ease;
}

.bq-pr-list a:hover {
  background: var(--bq-blue-soft);
}

.bq-pr-class {
  grid-column: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bq-blue);
}

.bq-pr-title {
  grid-column: 1;
  color: var(--bq-ink);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
}

.bq-pr-title code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.82em;
  color: var(--bq-navy);
  background: var(--bq-gray-bg);
  padding: 0.05em 0.3em;
  border-radius: 4px;
}

.bq-pr-repo {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bq-body);
}

.bq-pr-list a:hover .bq-pr-repo {
  color: var(--bq-blue);
}

.bq-pr-foot {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--bq-body);
}

.bq-pr-foot a {
  color: var(--bq-blue);
  font-weight: 600;
  text-decoration: none;
}

.bq-pr-foot a:hover { text-decoration: underline; }

@media (max-width: 575.98px) {
  .bq-pr-list a { grid-template-columns: 1fr; }
  .bq-pr-repo { grid-column: 1; grid-row: auto; }
}

/* ---------- Company ---------- */

.bq-hq {
  background: #ffffff;
  border: 1px solid var(--bq-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: inline-flex !important;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.05);
}

.bq-hq-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bq-blue-soft);
  color: var(--bq-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.bq-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bq-value {
  display: flex;
  gap: 1.1rem;
  background: #ffffff;
  border: 1px solid var(--bq-border);
  border-radius: var(--bq-radius);
  padding: 1.4rem 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bq-value:hover {
  transform: translateX(6px);
  border-color: rgba(36, 88, 230, 0.3);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.07);
}

.bq-value i {
  font-size: 1.3rem;
  color: var(--bq-blue);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.bq-value h6 { font-weight: 700; margin-bottom: 0.3rem; }

.bq-value p {
  color: var(--bq-body);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- CTA ---------- */

.bq-cta {
  position: relative;
  background: linear-gradient(160deg, #081e35 0%, #123a66 60%, #16407a 100%);
  padding: 5.5rem 0;
  overflow: hidden;
}

/* ---------- Footer ---------- */

.bq-footer {
  background: #ffffff;
  border-top: 1px solid var(--bq-border);
  padding: 4rem 0 2rem;
}

.bq-footer-head {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--bq-navy);
  margin-bottom: 1rem;
}

.bq-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bq-footer-links li { margin-bottom: 0.6rem; }

.bq-footer-links a {
  color: var(--bq-body);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.bq-footer-links a:hover { color: var(--bq-blue); }

.bq-social { color: var(--bq-body); transition: color 0.15s ease, transform 0.15s ease; display: inline-block; }
.bq-social:hover { color: var(--bq-blue); transform: translateY(-2px); }

.bq-footer-hr {
  border-color: var(--bq-border);
  opacity: 1;
  margin: 2.5rem 0 1.5rem;
}

/* ---------- Responsive & motion preferences ---------- */

@media (max-width: 991.98px) {
  .bq-hero { padding-top: 2rem; }
  .bq-section { padding: 4rem 0; }
  .bq-float-chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bq-blob, .bq-aurora, .bq-marquee-track,
  .bq-float-chip, .bq-pill-dot,
  .bq-agent-trail .active i {
    animation: none;
  }

  [data-tilt] { transition: none; }
}
