/* =====================================================
   QuantumBridge Solutions — Shared Theme v2
   "PixelBridge" cream + navy + coral
   ===================================================== */

:root {
  /* Core palette */
  --qb-cream:        #f4ecdc;
  --qb-cream-2:      #ece2cd;
  --qb-cream-3:      #f8f2e3;
  --qb-paper:        #fbf6ea;
  --qb-navy:         #1f2d7a;
  --qb-navy-deep:    #161f59;
  --qb-navy-soft:    #2d3d92;
  --qb-coral:        #e8533c;
  --qb-coral-bright: #ef6a4f;
  --qb-text:         #1f2d7a;
  --qb-text-body:    #2a3050;
  --qb-text-dim:     #5b6379;
  --qb-rule:         rgba(31, 45, 122, 0.14);
  --qb-shadow:       0 12px 30px -12px rgba(31, 45, 122, 0.25);
  --qb-shadow-lg:    0 20px 50px -16px rgba(31, 45, 122, 0.32);
  --qb-shadow-coral: 0 10px 26px -10px rgba(232, 83, 60, 0.45);

  /* Tokens */
  --qb-radius:    14px;
  --qb-radius-sm: 8px;
  --qb-max:       1180px;

  /* Typography */
  --qb-font:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --qb-font-head: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--qb-cream);
  color: var(--qb-text-body);
  font-family: var(--qb-font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Random scattered small squares pattern (lavender + coral on cream) — subtle density */
body {
  min-height: 100vh;
  background-color: var(--qb-cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'><g fill='rgba(31,45,122,0.13)'><rect x='42' y='58' width='8' height='8'/><rect x='195' y='28' width='7' height='7'/><rect x='362' y='82' width='8' height='8'/><rect x='498' y='45' width='7' height='7'/><rect x='88' y='178' width='8' height='8'/><rect x='268' y='148' width='7' height='7'/><rect x='435' y='195' width='8' height='8'/><rect x='148' y='278' width='8' height='8'/><rect x='325' y='312' width='7' height='7'/><rect x='52' y='405' width='8' height='8'/><rect x='248' y='428' width='8' height='8'/><rect x='418' y='395' width='7' height='7'/><rect x='555' y='452' width='8' height='8'/><rect x='112' y='525' width='7' height='7'/><rect x='382' y='535' width='8' height='8'/></g><g fill='rgba(232,83,60,0.16)'><rect x='118' y='95' width='7' height='7'/><rect x='298' y='62' width='8' height='8'/><rect x='452' y='118' width='7' height='7'/><rect x='32' y='235' width='7' height='7'/><rect x='208' y='215' width='8' height='8'/><rect x='378' y='258' width='7' height='7'/><rect x='525' y='278' width='8' height='8'/><rect x='95' y='358' width='7' height='7'/><rect x='285' y='378' width='8' height='8'/><rect x='482' y='342' width='7' height='7'/><rect x='178' y='478' width='8' height='8'/><rect x='342' y='488' width='7' height='7'/><rect x='508' y='562' width='8' height='8'/></g></svg>");
  background-size: 600px 600px;
  background-repeat: repeat;
}

a { color: var(--qb-navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--qb-coral); }

h1, h2, h3, h4 {
  font-family: var(--qb-font-head);
  color: var(--qb-navy);
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.18;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.22; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { color: var(--qb-text-body); }
em { color: var(--qb-navy); font-style: italic; }

/* ---------- Top Navigation ---------- */
.qb-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 236, 220, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--qb-rule);
}
.qb-nav-inner {
  max-width: var(--qb-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.qb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--qb-navy);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  text-transform: uppercase;
  font-family: var(--qb-font-head);
}
.qb-logo:hover { color: var(--qb-coral); }
/* Replace old "QB" text mark with the PixelBridge logo image */
.qb-logo-mark {
  width: 42px;
  height: 42px;
  background-image: url("QuantumBridge_PixelBridge_Logo_colorbg2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;            /* hide any inner text like "QB" */
  border: none;
  box-shadow: none;
  border-radius: 0;
  flex-shrink: 0;
}
.qb-nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 0.95rem;
}
.qb-nav-links a {
  color: var(--qb-text-body);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.qb-nav-links a:hover,
.qb-nav-links a.active {
  color: var(--qb-navy);
}
.qb-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--qb-coral);
}
.qb-nav-cta {
  background: var(--qb-navy);
  color: var(--qb-cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: var(--qb-shadow);
}
.qb-nav-cta:hover {
  background: var(--qb-coral);
  color: var(--qb-cream) !important;
  box-shadow: var(--qb-shadow-coral);
}
.qb-nav-cta::after { display: none !important; }

@media (max-width: 760px) {
  .qb-nav-links { gap: 14px; }
  .qb-nav-links a:not(.qb-nav-cta) { display: none; }
}

/* ---------- Layout ---------- */
.qb-container {
  max-width: var(--qb-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero ---------- */
.qb-hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.qb-hero h1 { color: var(--qb-navy); margin-bottom: 14px; }
.qb-hero p.qb-lead {
  font-size: 1.18rem;
  color: var(--qb-text-body);
  max-width: 760px;
  margin: 18px auto 0;
}

.qb-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid var(--qb-coral);
  border-radius: 999px;
  color: var(--qb-coral);
  background: rgba(232, 83, 60, 0.06);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  font-family: var(--qb-font);
}

/* Hero logo (used on home) — transparent PNG, sits flush on the page */
.qb-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.qb-hero-badge img {
  display: block;
  height: 120px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 600px) {
  .qb-hero-badge img { height: 95px; }
}

/* ---------- Section ---------- */
.qb-section {
  padding: 64px 24px;
  position: relative;
}
.qb-section-alt {
  background: var(--qb-paper);
  border-top: 1px solid var(--qb-rule);
  border-bottom: 1px solid var(--qb-rule);
}
.qb-section-title {
  text-align: center;
  margin-bottom: 14px;
  color: var(--qb-navy);
}
.qb-section-sub {
  text-align: center;
  color: var(--qb-text-dim);
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.02rem;
}

/* ---------- Cards Grid ---------- */
.qb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.qb-card {
  position: relative;
  background: var(--qb-paper);
  border: 1px solid var(--qb-rule);
  border-radius: var(--qb-radius);
  padding: 30px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(31, 45, 122, 0.04);
}
.qb-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--qb-coral);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.qb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 45, 122, 0.28);
  box-shadow: var(--qb-shadow-lg);
}
.qb-card:hover::before { transform: scaleX(1); }

.qb-card-tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--qb-coral);
  font-weight: 800;
  margin-bottom: 14px;
  font-family: var(--qb-font);
}
.qb-card-tier::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--qb-coral);
}

.qb-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: var(--qb-navy);
}

.qb-card p {
  color: var(--qb-text-body);
  font-size: 0.97rem;
  margin: 0 0 18px;
  flex: 1;
}

.qb-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.qb-price-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--qb-navy);
  letter-spacing: -0.02em;
  font-family: var(--qb-font-head);
}
.qb-price-unit {
  font-size: 0.85rem;
  color: var(--qb-text-dim);
}

.qb-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--qb-coral);
  font-weight: 700;
  font-size: 0.92rem;
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.qb-card-link::after {
  content: "→";
  transition: transform 0.2s;
}
.qb-card-link:hover { color: var(--qb-navy); }
.qb-card-link:hover::after { transform: translateX(4px); }

/* ---------- Buttons ---------- */
.qb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
  font-family: var(--qb-font);
}
.qb-btn-primary {
  background: var(--qb-navy);
  color: var(--qb-cream);
  box-shadow: var(--qb-shadow);
}
.qb-btn-primary:hover {
  background: var(--qb-coral);
  transform: translateY(-2px);
  box-shadow: var(--qb-shadow-coral);
  color: var(--qb-cream);
}
.qb-btn-ghost {
  background: transparent;
  color: var(--qb-navy);
  border: 1.5px solid var(--qb-navy);
}
.qb-btn-ghost:hover {
  background: var(--qb-navy);
  color: var(--qb-cream);
}
.qb-btn-coral {
  background: var(--qb-coral);
  color: #fff;
  box-shadow: var(--qb-shadow-coral);
}
.qb-btn-coral:hover {
  background: var(--qb-coral-bright);
  color: #fff;
  transform: translateY(-2px);
}

.qb-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ---------- Service Detail Page ---------- */
.qb-detail {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin-top: 30px;
  align-items: start;
}
@media (max-width: 880px) {
  .qb-detail { grid-template-columns: 1fr; }
}

.qb-detail-main h2 { margin-top: 32px; color: var(--qb-navy); }
.qb-detail-main h2:first-child { margin-top: 0; }

.qb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qb-list li {
  position: relative;
  padding: 11px 0 11px 32px;
  color: var(--qb-text-body);
  border-bottom: 1px dashed rgba(31, 45, 122, 0.14);
}
.qb-list li:last-child { border-bottom: none; }
.qb-list li::before {
  /* pixel-style coral check */
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--qb-coral), var(--qb-coral)) 0 6px / 6px 3px no-repeat,
    linear-gradient(var(--qb-coral), var(--qb-coral)) 4px 9px / 3px 3px no-repeat,
    linear-gradient(var(--qb-coral), var(--qb-coral)) 7px 6px / 3px 3px no-repeat,
    linear-gradient(var(--qb-coral), var(--qb-coral)) 10px 3px / 3px 3px no-repeat,
    linear-gradient(var(--qb-coral), var(--qb-coral)) 13px 0px / 3px 3px no-repeat;
}

.qb-aside {
  background: linear-gradient(160deg, var(--qb-paper), var(--qb-cream-3));
  border: 1px solid var(--qb-rule);
  border-radius: var(--qb-radius);
  padding: 30px 28px;
  position: sticky;
  top: 96px;
  height: fit-content;
  box-shadow: var(--qb-shadow);
}
.qb-aside .qb-card-tier { margin-bottom: 18px; }
.qb-aside h3 { margin-top: 0; color: var(--qb-navy); }
.qb-aside .qb-price-amount { font-size: 2.3rem; }
.qb-aside hr {
  border: none;
  border-top: 1px solid var(--qb-rule);
  margin: 22px 0;
}
.qb-aside-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--qb-text-dim);
  padding: 7px 0;
}
.qb-aside-meta strong { color: var(--qb-navy); font-weight: 700; }

/* ---------- Process Steps ---------- */
.qb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.qb-step {
  background: var(--qb-paper);
  border: 1px solid var(--qb-rule);
  border-radius: var(--qb-radius-sm);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.qb-step:hover {
  border-color: var(--qb-coral);
  transform: translateY(-2px);
}
.qb-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--qb-navy);
  color: var(--qb-cream);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-family: var(--qb-font-head);
}
.qb-step h4 { color: var(--qb-navy); margin: 0 0 6px; font-size: 1.02rem; }
.qb-step p { color: var(--qb-text-dim); font-size: 0.92rem; margin: 0; }

/* ---------- CTA Banner ---------- */
.qb-cta-banner {
  margin: 60px 24px;
  padding: 56px 32px;
  border-radius: var(--qb-radius);
  background: var(--qb-navy);
  color: var(--qb-cream);
  text-align: center;
  max-width: var(--qb-max);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.qb-cta-banner::before,
.qb-cta-banner::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  background: var(--qb-coral);
}
.qb-cta-banner::before { top: 24px; left: 32px; }
.qb-cta-banner::after  { bottom: 28px; right: 36px; }
.qb-cta-banner h2 { color: var(--qb-cream); margin-bottom: 12px; }
.qb-cta-banner p {
  color: rgba(244, 236, 220, 0.85);
  max-width: 620px;
  margin: 0 auto 26px;
}
.qb-cta-banner .qb-btn-primary {
  background: var(--qb-coral);
  color: #fff;
}
.qb-cta-banner .qb-btn-primary:hover {
  background: var(--qb-coral-bright);
  color: #fff;
}
.qb-cta-banner .qb-btn-ghost {
  color: var(--qb-cream);
  border-color: var(--qb-cream);
}
.qb-cta-banner .qb-btn-ghost:hover {
  background: var(--qb-cream);
  color: var(--qb-navy);
}

/* ---------- CCGM Membership Badge ---------- */
.qb-ccgm-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 236, 220, 0.85));
  border: 1.5px solid var(--qb-navy);
  border-radius: 999px;
  box-shadow: var(--qb-shadow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.qb-ccgm-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--qb-shadow-lg);
}
.qb-ccgm-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--qb-coral);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.qb-ccgm-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.qb-ccgm-badge-text .qb-ccgm-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--qb-coral);
  font-weight: 700;
}
.qb-ccgm-badge-text .qb-ccgm-title {
  font-size: 0.95rem;
  color: var(--qb-navy);
  font-weight: 700;
  font-family: var(--qb-font-head);
}
@media (max-width: 480px) {
  .qb-ccgm-badge { padding: 10px 16px 10px 10px; gap: 10px; }
  .qb-ccgm-badge-icon { min-width: 58px; height: 38px; font-size: 0.82rem; padding: 0 10px; }
  .qb-ccgm-badge-text .qb-ccgm-title { font-size: 0.85rem; }
}

/* Hero wrapper — forces the CCGM badge onto its own centered line beneath the logo */
.qb-hero-ccgm-wrap {
  display: block;
  text-align: center;
  margin-top: 28px;
}

/* Footer right-aligned row containing the CCGM badge */
.qb-footer-ccgm-row {
  max-width: var(--qb-max);
  margin: 28px auto 0;
  display: flex;
  justify-content: flex-end;
  padding: 0;
}
@media (max-width: 760px) {
  .qb-footer-ccgm-row { justify-content: center; }
}

/* ---------- Footer ---------- */
.qb-footer {
  background: var(--qb-paper);
  padding: 50px 24px 30px;
  border-top: 1px solid var(--qb-rule);
  margin-top: 0;
  color: var(--qb-text-dim);
  font-size: 0.9rem;
}
.qb-footer-inner {
  max-width: var(--qb-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 760px) {
  .qb-footer-inner { grid-template-columns: 1fr 1fr; }
}
.qb-footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.qb-footer-brand img { height: 42px; width: auto; }
.qb-footer-brand strong {
  font-family: var(--qb-font-head);
  color: var(--qb-navy);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.qb-footer h5 {
  font-family: var(--qb-font-head);
  color: var(--qb-navy);
  font-size: 0.95rem;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.qb-footer ul { list-style: none; padding: 0; margin: 0; }
.qb-footer li { margin: 6px 0; }
.qb-footer a { color: var(--qb-text-body); }
.qb-footer a:hover { color: var(--qb-coral); }
.qb-footer-bottom {
  max-width: var(--qb-max);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--qb-rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--qb-text-dim);
}

/* ---------- Form ---------- */
.qb-form {
  display: grid;
  gap: 18px;
  max-width: 660px;
  margin: 30px auto 0;
  background: var(--qb-paper);
  border: 1px solid var(--qb-rule);
  border-radius: var(--qb-radius);
  padding: 32px 30px;
  box-shadow: var(--qb-shadow);
}
.qb-form label {
  font-size: 0.78rem;
  color: var(--qb-navy);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.qb-form input, .qb-form select, .qb-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--qb-radius-sm);
  background: #fff;
  border: 1.5px solid var(--qb-rule);
  color: var(--qb-text-body);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qb-form input::placeholder,
.qb-form textarea::placeholder { color: #a4a9b8; }
.qb-form input:focus, .qb-form select:focus, .qb-form textarea:focus {
  outline: none;
  border-color: var(--qb-navy);
  box-shadow: 0 0 0 3px rgba(31, 45, 122, 0.12);
}
.qb-form textarea { resize: vertical; min-height: 140px; }
.qb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .qb-form-row { grid-template-columns: 1fr; } }

.qb-form-success {
  display: none;
  max-width: 660px;
  margin: 30px auto 0;
  padding: 28px;
  background: var(--qb-paper);
  border: 1.5px solid var(--qb-coral);
  border-radius: var(--qb-radius);
  text-align: center;
}
.qb-form-success h3 { color: var(--qb-coral); margin: 0 0 8px; }

/* ---------- Stats / Highlight band ---------- */
.qb-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
/* Centered variant — sits in the middle of the section */
.qb-stats-centered {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 920px;
  margin: 48px auto 0;
}
.qb-stats-centered .qb-stat {
  flex: 0 1 200px;
  min-width: 180px;
}
.qb-stat {
  text-align: center;
  padding: 20px 12px;
  border-left: 3px solid var(--qb-coral);
  background: var(--qb-paper);
}
.qb-stat-num {
  font-family: var(--qb-font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--qb-navy);
  display: block;
  line-height: 1;
}
.qb-stat-lbl {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--qb-text-dim);
  font-weight: 600;
}

/* ---------- Pixel decorations ---------- */
.qb-pixel-deco {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--qb-coral);
  margin: 0 6px;
  vertical-align: middle;
}

/* ---------- Two-column About / feature row ---------- */
.qb-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) { .qb-twocol { grid-template-columns: 1fr; } }
.qb-twocol img {
  width: 100%;
  border-radius: var(--qb-radius);
  border: 1px solid var(--qb-rule);
  box-shadow: var(--qb-shadow);
}

/* Helper to remove bottom margin */
.qb-mb-0 { margin-bottom: 0 !important; }
