/* ============================================================
   BlueMango — Marketing Site
   Built on the shared design tokens in colors_and_type.css
   ============================================================ */

:root {
  --bm-ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bm-bg);
  color: var(--bm-fg-2);
  font-family: var(--bm-font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.bm-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Section rhythm ---------- */
.bm-section { padding: 96px 0; }
.bm-section--tight { padding: 64px 0; }
.bm-section--inverse {
  background: var(--bm-secondary);
  color: var(--bm-mist);
}
.bm-section--soft { background: var(--bm-n-25); }

/* ---------- Eyebrow ---------- */
.bm-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bm-primary);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bm-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--bm-primary);
  border-radius: 2px;
}
.bm-section--inverse .bm-eyebrow {
  color: #6FC9E3;
}
.bm-section--inverse .bm-eyebrow::before {
  background: #6FC9E3;
}

/* ---------- Headings ---------- */
.bm-h1 {
  font-family: var(--bm-font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bm-secondary);
  margin: 0;
  text-wrap: balance;
}
.bm-section--inverse .bm-h1,
.bm-section--inverse .bm-h2,
.bm-section--inverse .bm-h3 {
  color: var(--bm-mist);
}

.bm-h2 {
  font-family: var(--bm-font-display);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bm-secondary);
  margin: 0;
  text-wrap: balance;
}
.bm-h3 {
  font-family: var(--bm-font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bm-secondary);
  margin: 0;
}
.bm-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--bm-fg-2);
  max-width: 56ch;
  text-wrap: pretty;
  margin: 0;
}
.bm-section--inverse .bm-lead {
  color: rgba(238, 238, 255, 0.78);
}

/* ---------- Buttons ---------- */
.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bm-font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  transition: all 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
  cursor: pointer;
}
.bm-btn--primary {
  background: var(--bm-primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(1, 81, 105, 0.10);
}
.bm-btn--primary:hover {
  background: var(--bm-primary-hover);
  box-shadow: 0 12px 28px -10px rgba(1, 81, 105, 0.35), 0 2px 6px rgba(1, 81, 105, 0.06);
  transform: translateY(-1px);
}
.bm-btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(1, 81, 105, 0.06);
  background: var(--bm-primary-hover);
}
.bm-btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.28), 0 2px 6px rgba(1, 81, 105, 0.08);
}
.bm-btn--secondary {
  background: transparent;
  color: var(--bm-secondary);
  border: 1.5px solid var(--bm-secondary);
  padding: 10.5px 22px;
}
.bm-btn--secondary:hover {
  background: var(--bm-secondary);
  color: var(--bm-mist);
}
.bm-section--inverse .bm-btn--secondary {
  border-color: var(--bm-mist);
  color: var(--bm-mist);
}
.bm-section--inverse .bm-btn--secondary:hover {
  background: var(--bm-mist);
  color: var(--bm-secondary);
}
.bm-btn--ghost {
  background: transparent;
  color: var(--bm-primary);
  padding: 10px 16px;
}
.bm-btn--ghost:hover {
  background: var(--bm-primary-50);
}
.bm-btn--lg {
  font-size: 16px;
  padding: 15px 28px;
}

/* ---------- Cards ---------- */
.bm-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(1, 81, 105, 0.04);
  transition: all 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.bm-card:hover {
  border-color: var(--bm-primary-100);
  box-shadow: 0 14px 32px -10px rgba(1, 81, 105, 0.18), 0 4px 8px rgba(1, 81, 105, 0.06);
  transform: translateY(-2px);
}

/* ---------- Icons ---------- */
.bm-icon {
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke: currentColor;
}
/* Filled glyph variant (stars, etc.) — fill follows currentColor, no stroke. */
.bm-icon[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

/* ---------- Form fields ---------- */
.bm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--bm-fg-1);
  letter-spacing: 0.01em;
}
.bm-input, .bm-select {
  font-family: var(--bm-font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--bm-border-strong);
  background: #fff;
  color: var(--bm-fg-1);
  outline: none;
  transition: all 160ms cubic-bezier(0.22, 0.61, 0.36, 1);
  width: 100%;
}
.bm-input::placeholder { color: var(--bm-fg-4); }
.bm-input:focus, .bm-select:focus {
  border-color: var(--bm-primary);
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.18);
}
.bm-input--error { border-color: #d94a4a; }
.bm-input--error:focus {
  border-color: #d94a4a;
  box-shadow: 0 0 0 4px rgba(217, 74, 74, 0.16);
}
.bm-field-error {
  color: #b72d2d;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
  display: block;
}

/* ---------- Header ---------- */
.bm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--bm-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 240ms var(--bm-ease-out),
              border-color 240ms var(--bm-ease-out),
              color 240ms var(--bm-ease-out),
              backdrop-filter 240ms var(--bm-ease-out);
  color: var(--bm-secondary);
}
.bm-header.is-light {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--bm-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--bm-secondary);
}
.bm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.bm-header__logo img {
  height: 28px;
  width: auto;
  display: block;
}
.bm-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.bm-nav a {
  color: inherit;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 160ms, color 160ms;
  white-space: nowrap;
}
.bm-header.is-light .bm-nav a:hover { background: var(--bm-n-50); }
.bm-header.is-dark .bm-nav a:hover { background: var(--bm-n-50); }
.bm-nav a[aria-current="page"] {
  color: var(--bm-primary);
}
.bm-header.is-dark .bm-nav a[aria-current="page"] { color: var(--bm-primary); }

.bm-header__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bm-header.is-dark .bm-header__phone { color: var(--bm-secondary); }
.bm-header.is-light .bm-header__phone { color: var(--bm-secondary); }

.bm-header__hamburger {
  display: none;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
}
.bm-header__hamburger:hover { opacity: 1; }
.bm-header.is-dark .bm-header__hamburger { border-color: rgba(255,255,255,0.4); }
.bm-header.is-light .bm-header__hamburger { border-color: var(--bm-border-strong); }

/* Mobile sheet — collapsed by default, hidden off-screen */
.bm-header__sheet {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--bm-border);
  box-shadow: 0 24px 48px -20px rgba(1, 81, 105, 0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--bm-ease-out);
}
.bm-header__sheet.is-open { max-height: calc(100vh - 72px); }
.bm-header__sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.bm-header__sheet-nav a {
  color: var(--bm-secondary);
  font-family: var(--bm-font-display);
  font-weight: 600;
  font-size: 19px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-header__sheet-nav a:last-of-type { border-bottom: none; }
.bm-header__sheet-call {
  display: inline-flex !important;
  gap: 10px; align-items: center;
  color: var(--bm-primary) !important;
  margin-top: 6px;
  font-family: var(--bm-font-sans) !important;
  font-size: 16px !important;
  border-bottom: none !important;
}

/* ---------- Footer ---------- */
.bm-footer {
  background: #051F2E;
  color: rgba(238, 238, 255, 0.7);
  padding: 64px 0 32px;
}
.bm-footer a { color: rgba(238, 238, 255, 0.7); }
.bm-footer a:hover { color: var(--bm-mist); }
.bm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.bm-footer__col h4 {
  font-family: var(--bm-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6FC9E3;
  margin: 0 0 16px;
}
.bm-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.bm-footer__bottom {
  border-top: 1px solid rgba(238, 238, 255, 0.12);
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(238, 238, 255, 0.45);
}

/* ---------- Utility ---------- */
.bm-row { display: flex; gap: 16px; align-items: center; }
.bm-stack { display: flex; flex-direction: column; }
.bm-divider { height: 1px; background: var(--bm-border); width: 100%; }

/* ============================================================
   Background blobs — drift slowly behind all sections.
   Fixed-position, pointer-events:none, very low opacity.
   ============================================================ */
.bm-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bm-blob {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.72;
  will-change: transform;
  mix-blend-mode: multiply;
}
.bm-blob--1 { left: -200px;  top: 35vh;  background: radial-gradient(circle, #3FB6D9 0%, transparent 65%); animation: bm-drift-1 36s ease-in-out infinite; }
.bm-blob--2 { right: -250px; top: 75vh;  background: radial-gradient(circle, #7CD3E8 0%, transparent 60%); animation: bm-drift-2 44s ease-in-out infinite; }
.bm-blob--3 { left: 30vw;    top: 140vh; background: radial-gradient(circle, #A6DDED 0%, transparent 60%); animation: bm-drift-3 52s ease-in-out infinite; }
.bm-blob--4 { right: -150px; top: 200vh; background: radial-gradient(circle, #C2E5F1 0%, transparent 65%); animation: bm-drift-4 48s ease-in-out infinite; }
.bm-blob--5 { left: -200px;  top: 280vh; background: radial-gradient(circle, #D6ECF4 0%, transparent 65%); animation: bm-drift-2 40s ease-in-out infinite; }

/* Cursor-following blob — sits in viewport coords (position:fixed via parent),
   driven by JS-updated CSS vars with a smooth lerp. */
.bm-blob--cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 620px;
  height: 620px;
  margin-left: -310px;
  margin-top: -310px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.78;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, #2FB0D6 0%, #6FC9E3 35%, transparent 70%);
  transform: translate3d(var(--bm-cx, 50vw), var(--bm-cy, 40vh), 0);
  will-change: transform;
  pointer-events: none;
  transition: opacity 600ms ease;
}
.bm-blob--cursor.is-idle { opacity: 0.55; }

@keyframes bm-drift-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(120px, -60px) scale(1.1); } }
@keyframes bm-drift-2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-90px, 80px) scale(0.95); } }
@keyframes bm-drift-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(140px, 100px) scale(1.15); } }
@keyframes bm-drift-4 { 0%,100% { transform: translate(0,0) scale(0.95); } 50% { transform: translate(-100px, -50px) scale(1.1); } }

@media (prefers-reduced-motion: reduce) {
  .bm-blob, .bm-blob--cursor { animation: none !important; transition: none !important; }
}

/* Keep sections layered above the blobs (header stays sticky, see Header rule) */
.bm-section, .bm-hero2, .bm-footer { position: relative; z-index: 1; }
.bm-section--solid { background: #fff; }  /* opt-in to mask the blobs */

/* Subtle moving dot grid behind certain sections */
.bm-dotgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 149, 195, 0.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 80%);
  animation: bm-dot-pan 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes bm-dot-pan { 0% { background-position: 0 0; } 100% { background-position: 56px 56px; } }

/* ============================================================
   Process — Zigzag staggered with diagonal connector dashes
   ============================================================ */
.bm-process-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 20px;
}
.bm-process-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
  position: relative;
}
.bm-process-step:nth-child(even) { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.bm-process-step:nth-child(even) .bm-process-step__photo { order: 2; }
.bm-process-step:nth-child(even) .bm-process-step__body { order: 1; text-align: right; }
.bm-process-step:nth-child(even) .bm-process-step__body .bm-eyebrow { justify-content: flex-end; flex-direction: row-reverse; }

.bm-process-step__photo {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 48px -18px rgba(1, 81, 105, 0.32);
  transform: rotate(-1.2deg);
  transition: transform 320ms var(--bm-ease-out);
}
.bm-process-step:nth-child(even) .bm-process-step__photo { transform: rotate(1.4deg); }
.bm-process-step__photo:hover { transform: rotate(0deg) scale(1.02); }

.bm-process-step__num {
  position: absolute;
  top: -22px; left: -22px;
  width: 96px; height: 96px;
  background: var(--bm-primary);
  color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bm-font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 28px -8px rgba(0, 149, 195, 0.5);
  border: 4px solid #fff;
}
.bm-process-step:nth-child(even) .bm-process-step__num { left: auto; right: -22px; }

.bm-process-step__title {
  font-family: var(--bm-font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bm-secondary);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 16px;
}
.bm-process-step__body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--bm-fg-2);
  margin: 0;
  max-width: 46ch;
  text-wrap: pretty;
}
.bm-process-step:nth-child(even) .bm-process-step__body p { margin-left: auto; }

.bm-process-step__connector {
  position: absolute;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--bm-primary) 0 6px, transparent 6px 12px);
  z-index: -1;
  opacity: 0.4;
}

/* ============================================================
   Testimonials marquee — polaroid-style, two rows opposite directions
   ============================================================ */
.bm-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.bm-marquee-row {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: bm-scroll-x 60s linear infinite;
}
.bm-marquee-row--reverse { animation-direction: reverse; animation-duration: 70s; margin-top: 20px; }
.bm-marquee-row:hover { animation-play-state: paused; }
@keyframes bm-scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.bm-polaroid {
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 22px;
  width: 360px;
  flex-shrink: 0;
  box-shadow: 0 18px 40px -16px rgba(1, 81, 105, 0.28), 0 4px 10px rgba(1, 81, 105, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--bm-border);
}
.bm-polaroid:nth-child(3n) { transform: rotate(-1.4deg); }
.bm-polaroid:nth-child(3n+1) { transform: rotate(0.9deg); }
.bm-polaroid:nth-child(3n+2) { transform: rotate(-0.6deg); }
.bm-polaroid__avatar {
  display: flex; align-items: center; gap: 10px;
}
.bm-polaroid__circle {
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, var(--bm-primary) 0%, var(--bm-secondary) 100%);
  color: #fff; font-family: var(--bm-font-display); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* Same footprint, but showing an uploaded avatar instead of the initial. */
.bm-polaroid__circle--img {
  object-fit: cover;
  display: block;
}
.bm-polaroid__name { font-family: var(--bm-font-display); font-weight: 600; font-size: 14.5px; color: var(--bm-secondary); }
.bm-polaroid__hood { font-size: 11.5px; color: var(--bm-fg-3); }
.bm-polaroid__stars { color: var(--bm-primary); display: flex; gap: 1px; }
.bm-polaroid__body { font-size: 14.5px; line-height: 1.55; color: var(--bm-fg-1); margin: 0; text-wrap: pretty; }
.bm-polaroid__tape {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px; height: 18px;
  background: rgba(0, 149, 195, 0.22);
  border-left: 1px dashed rgba(1, 81, 105, 0.2);
  border-right: 1px dashed rgba(1, 81, 105, 0.2);
}

/* ============================================================
   FAQ — chip picker (left) + big answer card (right)
   ============================================================ */
.bm-faq-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.bm-faq-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bm-faq-chip {
  background: transparent;
  border: 1.5px solid var(--bm-border-strong);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--bm-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--bm-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all 160ms var(--bm-ease-out);
}
.bm-faq-chip:hover { border-color: var(--bm-primary); transform: translateX(4px); }
.bm-faq-chip[aria-pressed="true"] {
  background: var(--bm-secondary);
  border-color: var(--bm-secondary);
  color: var(--bm-mist);
}
.bm-faq-chip[aria-pressed="true"] .bm-faq-chip__num {
  background: var(--bm-primary);
  color: #fff;
}
.bm-faq-chip__num {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bm-primary-50);
  color: var(--bm-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  transition: background 160ms;
}

.bm-faq-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: 0 24px 48px -20px rgba(1, 81, 105, 0.2);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.bm-faq-card__big-num {
  position: absolute;
  top: -28px; right: -8px;
  font-family: var(--bm-font-display);
  font-weight: 800;
  font-size: 260px;
  color: var(--bm-primary-50);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}
.bm-faq-card__q {
  font-family: var(--bm-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--bm-secondary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
  position: relative; z-index: 1;
  max-width: 32ch;
}
.bm-faq-card__a {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--bm-fg-2);
  margin: 0;
  position: relative; z-index: 1;
  max-width: 64ch;
}

/* ============================================================
   Quote panel v2 — slide-in from right (60% width), petrol theme,
   top progress bar with labels, chips above question.
   ============================================================ */
.bm-quote-panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 24, 32, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bm-fade-in 240ms var(--bm-ease-out);
}
@keyframes bm-fade-in { from { opacity: 0; } to { opacity: 1; } }
.bm-quote-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(880px, 92vw);
  z-index: 101;
  background: #fff;
  color: var(--bm-fg-1);
  display: flex;
  flex-direction: column;
  box-shadow: -32px 0 64px -20px rgba(1, 81, 105, 0.25);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  border-left: 1px solid var(--bm-border);
}
.bm-quote-panel.is-open { transform: translateX(0); }

.bm-qp__top {
  padding: 22px 36px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-shrink: 0;
}
.bm-qp__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--bm-font-display); font-weight: 700;
  color: var(--bm-secondary);
}
.bm-qp__brand img { height: 24px; }
.bm-qp__brand small {
  font-weight: 500; color: var(--bm-fg-3); padding-left: 12px;
  border-left: 1px solid var(--bm-border); font-size: 12px;
}
.bm-qp__close {
  background: var(--bm-n-50);
  border: 1px solid var(--bm-border);
  color: var(--bm-fg-1);
  width: 38px; height: 38px;
  border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms;
}
.bm-qp__close:hover { background: var(--bm-n-100); }

.bm-qp__progress {
  padding: 22px 36px 22px;
  display: flex; gap: 4px; flex-shrink: 0;
}
.bm-qp__progress-step {
  flex: 1; height: 38px; border-radius: 8px;
  background: var(--bm-n-50);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; padding: 0 10px;
  position: relative; overflow: hidden;
  transition: background 200ms, flex 200ms;
}
.bm-qp__progress-step--done { background: var(--bm-primary-100); }
.bm-qp__progress-step--active { background: var(--bm-primary); flex: 1.6; }
.bm-qp__progress-step__num {
  font-family: ui-monospace, monospace;
  font-size: 9.5px; letter-spacing: 0.1em;
  color: var(--bm-fg-3); opacity: 0.7;
}
.bm-qp__progress-step--done .bm-qp__progress-step__num { color: var(--bm-secondary); opacity: 1; }
.bm-qp__progress-step--active .bm-qp__progress-step__num { color: #fff; opacity: 1; }
.bm-qp__progress-step__label {
  font-size: 11px; font-weight: 600;
  color: #fff; white-space: nowrap; margin-top: 1px;
}
.bm-qp__progress-step:not(.bm-qp__progress-step--active) .bm-qp__progress-step__label { display: none; }

.bm-qp__chips {
  padding: 0 36px 22px;
  display: flex; gap: 8px; flex-wrap: wrap;
  flex-shrink: 0; min-height: 36px;
}
.bm-qp__chip {
  background: var(--bm-primary-50);
  border: 1px solid var(--bm-primary-100);
  color: var(--bm-secondary);
  font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.bm-qp__chip strong {
  color: var(--bm-primary); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
}
.bm-qp__chip-empty { font-size: 12px; font-style: italic; color: var(--bm-fg-4); }

.bm-qp__main {
  flex: 1; overflow: auto;
  padding: 8px 36px 36px;
  display: flex; flex-direction: column;
}
.bm-qp__question {
  font-family: var(--bm-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--bm-secondary);
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 0 8px; text-wrap: balance; max-width: 24ch;
}
.bm-qp__sub {
  font-size: 14.5px; color: var(--bm-fg-3);
  margin: 0 0 28px;
}

.bm-qp__option-grid { display: grid; gap: 12px; }
.bm-qp__option-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bm-qp__option-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bm-qp__option-grid--4 { grid-template-columns: repeat(4, 1fr); }

.bm-qp__option {
  background: #fff;
  border: 1.5px solid var(--bm-border-strong);
  border-radius: 14px;
  padding: 18px 16px;
  cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  font-family: inherit; color: var(--bm-fg-1);
  transition: all 180ms var(--bm-ease-out);
  position: relative;
}
.bm-qp__option:hover {
  border-color: var(--bm-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(0, 149, 195, 0.22);
}
.bm-qp__option--active {
  background: var(--bm-primary-50);
  border-color: var(--bm-primary);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.14), 0 12px 24px -10px rgba(0, 149, 195, 0.25);
}
.bm-qp__option__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bm-n-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--bm-secondary);
  transition: all 180ms;
}
.bm-qp__option--active .bm-qp__option__icon {
  background: var(--bm-primary); color: #fff;
}
.bm-qp__option__title {
  font-family: var(--bm-font-display); font-weight: 600;
  font-size: 15px; line-height: 1.2;
  color: var(--bm-secondary);
}
.bm-qp__option__sub {
  font-size: 12px; color: var(--bm-fg-3); line-height: 1.3;
}
.bm-qp__option--active .bm-qp__option__sub { color: var(--bm-primary-700); }
.bm-qp__option__check {
  position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--bm-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.bm-qp__field { display: flex; flex-direction: column; gap: 6px; }
.bm-qp__field label {
  font-size: 12px; font-weight: 600;
  color: var(--bm-secondary); letter-spacing: 0.01em;
}
.bm-qp__input {
  background: #fff;
  border: 1.5px solid var(--bm-border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--bm-font-sans);
  font-size: 14.5px;
  color: var(--bm-fg-1);
  outline: none; transition: all 160ms; width: 100%;
}
.bm-qp__input::placeholder { color: var(--bm-fg-4); }
.bm-qp__input:focus {
  border-color: var(--bm-primary);
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.18);
}
.bm-qp__input--error {
  border-color: #d94a4a;
}
.bm-qp__input--error:focus {
  border-color: #d94a4a;
  box-shadow: 0 0 0 4px rgba(217, 74, 74, 0.16);
}
.bm-qp__field-error {
  color: #b72d2d;
  font-size: 12px;
  line-height: 1.35;
}

/* Consent capture — SMS/email opt-in on the contact step */
.bm-qp__consent {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--bm-n-25);
  border: 1px solid var(--bm-border);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 12px;
}
.bm-qp__consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
}
/* Visually hidden, but still the focusable/announced control. */
.bm-qp__consent-input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.bm-qp__consent-box {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--bm-border-strong);
  border-radius: 6px;
  background: #fff; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 160ms var(--bm-ease-out),
              border-color 160ms var(--bm-ease-out);
}
.bm-qp__consent-box.is-checked {
  background: var(--bm-primary);
  border-color: var(--bm-primary);
}
.bm-qp__consent-input:focus-visible + .bm-qp__consent-box {
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.18);
}
.bm-qp__consent-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--bm-fg-2);
}
.bm-qp__consent-required { color: #b72d2d; font-weight: 700; }

.bm-qp__footer {
  border-top: 1px solid var(--bm-border);
  background: var(--bm-n-25);
  padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-shrink: 0;
}
.bm-qp__btn {
  font-family: var(--bm-font-sans); font-weight: 600;
  font-size: 15px; padding: 13px 22px;
  border-radius: 999px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 180ms var(--bm-ease-out);
}
.bm-qp__btn--primary {
  background: var(--bm-primary); color: #fff;
  box-shadow: 0 8px 20px -6px rgba(0, 149, 195, 0.45);
}
.bm-qp__btn--primary:hover:not(:disabled) {
  background: var(--bm-primary-600); transform: translateY(-1px);
}
.bm-qp__btn--primary:disabled { opacity: 0.4; cursor: not-allowed; }
.bm-qp__btn--ghost {
  background: transparent; color: var(--bm-secondary);
  border: 1.5px solid var(--bm-border-strong);
}
.bm-qp__btn--ghost:hover:not(:disabled) {
  background: var(--bm-n-50); border-color: var(--bm-secondary);
}
.bm-qp__btn--ghost:disabled { opacity: 0.35; cursor: not-allowed; }

.bm-qp__price-pill {
  background: var(--bm-secondary); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--bm-font-display); font-weight: 700; font-size: 13px;
}

.bm-qp__slider {
  width: 100%; accent-color: var(--bm-primary); height: 6px;
}

.bm-qp__cal {
  background: var(--bm-n-25);
  border: 1px solid var(--bm-border);
  border-radius: 14px; padding: 18px;
}
.bm-qp__cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.bm-qp__cal-day {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  color: var(--bm-fg-1);
  cursor: pointer; font-size: 13px;
  font-family: inherit; transition: all 140ms;
}
.bm-qp__cal-day:hover:not(:disabled) {
  background: var(--bm-primary-50); border-color: var(--bm-primary);
}
.bm-qp__cal-day:disabled {
  color: var(--bm-fg-4); background: transparent;
  border-color: transparent; cursor: not-allowed;
}
.bm-qp__cal-day--selected {
  background: var(--bm-primary); color: #fff;
  font-weight: 700; border-color: var(--bm-primary);
}
.bm-qp__cal-day--out { opacity: 0.4; }

/* ============================================================
   Motion — subtle, branded
   ============================================================ */
@keyframes bm-ken-burns {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1.5%, -1.5%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
@keyframes bm-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}
@keyframes bm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,149,195,0.45), 0 2px 6px rgba(1,81,105,0.1); }
  50%      { box-shadow: 0 0 0 14px rgba(0,149,195,0), 0 8px 18px rgba(1,81,105,0.2); }
}
@keyframes bm-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes bm-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bm-reveal--pending {
  opacity: 0;
  transform: translateY(24px);
}
.bm-reveal--in {
  animation: bm-fade-up 720ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ============================================================
   New Hero with video/photo background
   ============================================================ */
.bm-hero2 {
  position: relative;
  min-height: 760px;
  padding: 120px 0 96px;
  overflow: hidden;
  background: var(--bm-ink);
  color: #fff;
}
.bm-hero2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bm-hero2__bg img,
.bm-hero2__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: bm-ken-burns 28s ease-in-out infinite;
}
/* Cloudflare Stream hero background — the iframe can't use object-fit, so it is
   oversized to cover the container the way the <video> fallback does. */
.bm-hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bm-hero-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bm-hero-video__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  border: 0;
  /* Keeps the CTAs layered above the hero clickable. */
  pointer-events: none;
}

.bm-hero2__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,5,0.65) 0%, rgba(0,0,5,0.45) 40%, rgba(1,42,56,0.78) 100%),
    linear-gradient(90deg, rgba(0,0,5,0.55) 0%, rgba(0,0,5,0.15) 50%, rgba(0,0,5,0.25) 100%);
}
.bm-hero2 .bm-container {
  position: relative;
  z-index: 2;
}
.bm-hero2__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6FC9E3;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bm-hero2__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #6FC9E3;
  border-radius: 2px;
}
.bm-hero2__title {
  font-family: var(--bm-font-display);
  font-size: clamp(2.75rem, 6.2vw, 6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 16ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.bm-hero2__title em {
  font-style: normal;
  color: var(--bm-primary);
  background: linear-gradient(90deg, #0095C3 0%, #6FC9E3 50%, #0095C3 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bm-shimmer 6s linear infinite;
}
.bm-hero2__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(238, 238, 255, 0.85);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.bm-hero2__pills {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bm-pill-cta {
  background: var(--bm-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 200ms var(--bm-ease-out);
  animation: bm-pulse 2.6s ease-in-out infinite;
  font-family: var(--bm-font-sans);
}
.bm-pill-cta:nth-child(2) { animation-delay: 1.3s; }
.bm-pill-cta:hover {
  background: var(--bm-primary-600);
  transform: translateY(-2px) scale(1.02);
  animation: none;
  box-shadow: 0 16px 32px -10px rgba(0,149,195,0.55);
}
.bm-hero2__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(238,238,255,0.85);
  font-size: 14.5px;
}
.bm-hero2__trust strong { color: #fff; font-family: var(--bm-font-display); font-weight: 700; font-size: 18px; }
.bm-hero2 .bm-stars { display: inline-flex; color: #FFC83D; gap: 1px; }

/* Scroll indicator */
.bm-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(238,238,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.bm-scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(238,238,255,0.6), transparent);
  animation: bm-scroll-line 2.4s ease-in-out infinite;
}
@keyframes bm-scroll-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ============================================================
   Service Plans pricing card
   ============================================================ */
.bm-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.bm-plan {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 22px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 240ms var(--bm-ease-out);
}
.bm-plan:hover { transform: translateY(-4px); box-shadow: var(--bm-shadow-lg); border-color: var(--bm-primary-100); }
.bm-plan--featured {
  background: var(--bm-secondary);
  border-color: transparent;
  color: var(--bm-mist);
  transform: translateY(-12px);
  box-shadow: 0 32px 56px -20px rgba(1,81,105,0.4), 0 8px 18px rgba(1,81,105,0.12);
}
.bm-plan--featured:hover { transform: translateY(-16px); }
.bm-plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bm-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bm-plan__name { font-family: var(--bm-font-display); font-size: 26px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.bm-plan--featured .bm-plan__name { color: var(--bm-mist); }
.bm-plan__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bm-plan__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--bm-fg-2); }
.bm-plan--featured .bm-plan__features li { color: rgba(238,238,255,0.85); }
.bm-plan__features li svg { flex-shrink: 0; margin-top: 2px; color: var(--bm-primary); }
.bm-plan--featured .bm-plan__features li svg { color: #6FC9E3; }
.bm-plan__savings {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bm-success-bg);
  color: #1A6E4D;
  text-align: center;
}
.bm-plan--featured .bm-plan__savings { background: rgba(111,201,227,0.15); color: #6FC9E3; }
.bm-plan--none .bm-plan__savings { background: var(--bm-n-50); color: var(--bm-fg-3); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.bm-faq {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 18px;
  overflow: hidden;
}
.bm-faq__item + .bm-faq__item { border-top: 1px solid var(--bm-border); }
.bm-faq__q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--bm-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--bm-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 160ms;
}
.bm-faq__q:hover { background: var(--bm-n-25); }
.bm-faq__q[aria-expanded="true"] { background: var(--bm-primary-50); }
.bm-faq__icon {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--bm-primary-50);
  color: var(--bm-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 240ms var(--bm-ease-out);
}
.bm-faq__q[aria-expanded="true"] .bm-faq__icon { transform: rotate(45deg); background: var(--bm-primary); color: #fff; }
.bm-faq__a {
  padding: 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--bm-fg-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--bm-ease-out), padding 320ms var(--bm-ease-out);
}
.bm-faq__item.is-open .bm-faq__a {
  padding: 4px 28px 24px;
  max-height: 600px;
}

/* ============================================================
   Quote Builder modal (DirtyMint-style)
   ============================================================ */
.bm-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(13, 24, 32, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  animation: bm-fade-up 320ms var(--bm-ease-out);
}
.bm-quote-modal__header {
  background: #fff;
  border-bottom: 1px solid var(--bm-border);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.bm-quote-modal__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bm-font-display);
  font-weight: 700;
  color: var(--bm-secondary);
  font-size: 15px;
}
.bm-quote-modal__brand img { height: 26px; }
.bm-quote-modal__brand span { padding-left: 14px; border-left: 1px solid var(--bm-border); color: var(--bm-fg-2); font-size: 14px; font-weight: 500; }
.bm-quote-modal__close {
  background: var(--bm-n-50);
  border: 1px solid var(--bm-border);
  width: 38px; height: 38px;
  border-radius: 999px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--bm-fg-1);
  transition: all 160ms;
}
.bm-quote-modal__close:hover { background: var(--bm-n-100); }
.bm-quote-modal__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  padding: 28px 32px;
  overflow: auto;
  background: var(--bm-n-25);
}
.bm-quote-modal__main {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 18px;
  padding: 36px 40px;
  min-height: 480px;
}
.bm-quote-modal__summary {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 18px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 0;
}
.bm-quote-modal__footer {
  background: #fff;
  border-top: 1px solid var(--bm-border);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.bm-step-title { font-family: var(--bm-font-display); font-size: 28px; font-weight: 700; color: var(--bm-secondary); letter-spacing: -0.02em; margin: 0 0 6px; line-height: 1.15; }
.bm-step-sub { font-size: 14px; color: var(--bm-primary); font-weight: 500; margin: 0 0 24px; }

.bm-option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.bm-option-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bm-option-grid--4 { grid-template-columns: repeat(4, 1fr); }

.bm-option {
  background: #fff;
  border: 1.5px solid var(--bm-border-strong);
  border-radius: 14px;
  padding: 20px 18px;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  color: inherit;
  min-height: 142px;
  justify-content: flex-start;
  transition: all 180ms var(--bm-ease-out);
}
.bm-option:hover { border-color: var(--bm-primary); transform: translateY(-2px); }
.bm-option--active {
  border-color: var(--bm-primary);
  background: var(--bm-primary-50);
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.12);
}
.bm-option__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bm-n-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--bm-secondary);
  flex-shrink: 0;
  transition: all 180ms;
}
.bm-option--active .bm-option__icon { background: var(--bm-primary); color: #fff; }
.bm-option__title { font-family: var(--bm-font-display); font-weight: 600; font-size: 15px; color: var(--bm-secondary); }
.bm-option__sub { font-size: 12px; color: var(--bm-primary); font-weight: 500; }

.bm-option-row {
  background: #fff;
  border: 1.5px solid var(--bm-border-strong);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  font-family: inherit;
  transition: all 160ms;
}
.bm-option-row:hover { border-color: var(--bm-primary); }
.bm-option-row--active { border-color: var(--bm-primary); background: var(--bm-primary-50); }

.bm-summary-title { font-family: var(--bm-font-display); font-weight: 700; font-size: 16px; color: var(--bm-secondary); margin: 0 0 16px; }
.bm-summary-row { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-top: 1px solid var(--bm-border); }
.bm-summary-row:first-of-type { border-top: none; }
.bm-summary-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bm-fg-3); }
.bm-summary-val { font-size: 14.5px; color: var(--bm-fg-1); font-weight: 500; }
.bm-summary-val--empty { color: var(--bm-fg-4); font-style: italic; font-weight: 400; }

.bm-stepper {
  display: flex;
  gap: 6px;
  align-items: center;
}
.bm-stepper__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--bm-n-200);
  transition: all 200ms;
}
.bm-stepper__dot--active { background: var(--bm-primary); width: 28px; }
.bm-stepper__dot--done { background: var(--bm-primary); }

.bm-info-tip {
  background: var(--bm-primary-50);
  border-left: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--bm-fg-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
}
.bm-info-tip svg { color: var(--bm-primary); flex-shrink: 0; margin-top: 1px; }
.bm-info-tip strong { color: var(--bm-secondary); }

/* Process card with photo */
.bm-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bm-process-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--bm-shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bm-border);
  transition: transform 320ms var(--bm-ease-out);
}
.bm-process-card:hover { transform: translateY(-4px); box-shadow: var(--bm-shadow-lg); }
.bm-process-card__photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bm-process-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--bm-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bm-font-display);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(0,149,195,0.4);
}
.bm-process-card__body { padding: 24px 26px 28px; }
.bm-process-card__title { font-family: var(--bm-font-display); font-size: 22px; font-weight: 700; color: var(--bm-secondary); margin: 0 0 8px; letter-spacing: -0.01em; }
.bm-process-card__body p { margin: 0; color: var(--bm-fg-2); font-size: 14.5px; line-height: 1.6; }

/* Story (Goal / Cause) split sections */
.bm-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bm-story--reverse > :first-child { order: 2; }
.bm-story__photo {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  box-shadow: var(--bm-shadow-lg);
}
.bm-story__body { display: flex; flex-direction: column; gap: 20px; }
.bm-story__body p { font-size: 16px; line-height: 1.65; color: var(--bm-fg-2); margin: 0; text-wrap: pretty; }

/* ============================================================
   Service detail pages (Service Plans)
   Reuses the same primitives but adds page-specific layouts.
   ============================================================ */

/* Compact service hero — shorter than landing hero, single image */
.bm-srv-hero {
  position: relative;
  min-height: 520px;
  padding: 96px 0 80px;
  overflow: hidden;
  background: var(--bm-ink);
  color: #fff;
}
.bm-srv-hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.bm-srv-hero__bg img,
.bm-srv-hero__bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  animation: bm-ken-burns 28s ease-in-out infinite;
}
.bm-srv-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,5,0.45) 0%, rgba(0,0,5,0.35) 40%, rgba(1,42,56,0.75) 100%),
    linear-gradient(90deg, rgba(0,0,5,0.6) 0%, rgba(0,0,5,0.15) 65%);
}
.bm-srv-hero .bm-container { position: relative; z-index: 2; }
.bm-srv-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6FC9E3;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.bm-srv-hero__eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: #6FC9E3; border-radius: 2px;
}
.bm-srv-hero__title {
  font-family: var(--bm-font-display);
  font-size: clamp(2.5rem, 5.8vw, 5.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 18ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.bm-srv-hero__title em {
  font-style: normal;
  color: var(--bm-primary);
  background: linear-gradient(90deg, #0095C3 0%, #6FC9E3 50%, #0095C3 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bm-shimmer 6s linear infinite;
}
.bm-srv-hero__bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 12px;
  max-width: 460px;
}
.bm-srv-hero__bullets li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(238,238,255,0.9);
  font-size: 16px;
}
.bm-srv-hero__bullets .bm-check {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(0,149,195,0.25);
  color: #6FC9E3;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bm-srv-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact form for service pages */
.bm-contact-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 24px 48px -20px rgba(1,81,105,0.18);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: start;
}
.bm-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bm-contact-form .bm-field--wide { grid-column: 1 / -1; }
.bm-contact-form textarea {
  font-family: var(--bm-font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--bm-border-strong);
  background: #fff;
  color: var(--bm-fg-1);
  outline: none;
  resize: vertical;
  min-height: 110px;
  width: 100%;
}
.bm-contact-form textarea:focus {
  border-color: var(--bm-primary);
  box-shadow: 0 0 0 4px rgba(0, 149, 195, 0.18);
}
.bm-contact-info {
  background: linear-gradient(160deg, var(--bm-secondary) 0%, var(--bm-secondary-900) 100%);
  color: var(--bm-mist);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 18px;
  align-self: stretch;
}
.bm-contact-info h3 { margin: 0; color: var(--bm-mist); font-family: var(--bm-font-display); font-weight: 700; letter-spacing: -0.01em; font-size: 22px; }
.bm-contact-info p { margin: 0; font-size: 14.5px; color: rgba(238,238,255,0.78); line-height: 1.6; }
.bm-contact-info__row {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: #6FC9E3;
}
.bm-contact-info__row svg { flex-shrink: 0; }

/* ============================================================
   Responsive — tablet (<=960) and mobile (<=640)
   ============================================================ */
@media (max-width: 960px) {
  .bm-container { padding: 0 24px; }
  .bm-section { padding: 72px 0; }
  .bm-section--tight { padding: 48px 0; }

  /* Header: hide center nav + desktop phone; show hamburger */
  .bm-nav { display: none; }
  .bm-header__phone span { display: none; }
  .bm-header__phone { padding: 10px; }
  .bm-header__hamburger { display: inline-flex; }

  /* Plans / process / steps → 2 col then 1 */
  .bm-plan-grid { grid-template-columns: 1fr; gap: 16px; }
  .bm-plan--featured { transform: none; }
  .bm-plan--featured:hover { transform: translateY(-4px); }

  .bm-process-grid { grid-template-columns: 1fr; gap: 18px; }
  .bm-process-stage { gap: 32px; }
  .bm-process-step,
  .bm-process-step:nth-child(even) { grid-template-columns: 1fr; gap: 24px; }
  .bm-process-step:nth-child(even) .bm-process-step__photo { order: 0; }
  .bm-process-step:nth-child(even) .bm-process-step__body { order: 0; text-align: left; }
  .bm-process-step:nth-child(even) .bm-process-step__body .bm-eyebrow { justify-content: flex-start; flex-direction: row; }
  .bm-process-step:nth-child(even) .bm-process-step__num { right: auto; left: -14px; }
  .bm-process-step__num { width: 72px; height: 72px; font-size: 26px; top: -16px; left: -14px; }
  .bm-process-step__photo { transform: none; }
  .bm-process-step:nth-child(even) .bm-process-step__photo { transform: none; }

  .bm-story,
  .bm-story--reverse { grid-template-columns: 1fr; gap: 32px; }
  .bm-story--reverse > :first-child { order: 0; }

  /* Clarity intro */
  .bm-clarity-intro {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .bm-clarity-intro__copy { max-width: 680px; }
  .bm-clarity-intro__tiles {
    gap: 18px !important;
  }
  .bm-clarity-tile {
    aspect-ratio: 4 / 3 !important;
    transform: none !important;
    background-position: center 42% !important;
  }

  /* Plan CTA card */
  .bm-plan-cta__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    align-items: stretch !important;
  }
  .bm-plan-cta__content { max-width: 680px; }
  .bm-plan-cta__actions .bm-btn { justify-content: center; }

  /* FAQ stack */
  .bm-faq-tabs { grid-template-columns: 1fr; gap: 18px; }
  .bm-faq-card { padding: 28px 24px; min-height: auto; }
  .bm-faq-card__big-num { font-size: 180px; top: -16px; }
  .bm-faq-card__q { font-size: 22px; }

  /* Footer columns */
  .bm-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bm-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Hero tweaks */
  .bm-hero2 { padding: 80px 0 64px; min-height: 620px; }
  .bm-hero2__pills { flex-direction: column; align-items: flex-start; }
  .bm-pill-cta { width: 100%; justify-content: center; }
  .bm-scroll-hint { display: none; }

  /* Service hero */
  .bm-srv-hero { padding: 72px 0 56px; min-height: 480px; }
  .bm-srv-hero__cta .bm-btn { width: 100%; justify-content: center; }

  /* Quote panel — full width on mobile */
  .bm-quote-panel { width: 100vw; max-width: 100vw; border-left: none; }
  .bm-qp__top { padding: 16px 20px 0; }
  .bm-qp__progress { padding: 16px 20px; }
  .bm-qp__chips { padding: 0 20px 16px; }
  .bm-qp__main { padding: 8px 20px 28px; }
  .bm-qp__footer { padding: 14px 20px; flex-wrap: wrap; }
  .bm-qp__progress-step__num { font-size: 8px; }
  .bm-qp__progress-step__label { font-size: 10px; }
  .bm-qp__option-grid--3,
  .bm-qp__option-grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* Quote modal grid → stack */
  .bm-quote-modal__body { grid-template-columns: 1fr; padding: 16px; }
  .bm-quote-modal__summary { position: static; }
  .bm-option-grid--3,
  .bm-option-grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials marquee — narrower polaroids */
  .bm-polaroid { width: 280px; }

  /* Contact card stack */
  .bm-contact-card { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .bm-contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .bm-container { padding: 0 18px; }
  .bm-section { padding: 56px 0; }

  .bm-hide-xs { display: none; }
  .bm-header__inner { height: 64px; }

  /* Drop background blobs to gentler intensity so blur doesn't kill perf */
  .bm-blob { opacity: 0.5; filter: blur(80px); width: 520px; height: 520px; }
  .bm-blob--cursor { display: none; }

  /* Plan CTA inner padding */
  .bm-plan { padding: 24px 22px; }

  /* Headings: bring h2 down a touch */
  .bm-h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .bm-step-title { font-size: 22px; }
  .bm-srv-hero__title { font-size: clamp(2rem, 9vw, 3.25rem); }

  /* Eyebrow letterspacing tightens slightly */
  .bm-eyebrow { letter-spacing: 0.1em; }

  /* Clarity intro cards become wide image-first tiles on phones */
  .bm-clarity-intro { gap: 32px !important; }
  .bm-clarity-intro__tiles {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .bm-clarity-intro__copy .bm-btn {
    width: 100%;
    justify-content: center;
  }
  .bm-clarity-tile {
    aspect-ratio: 16 / 10 !important;
    min-height: 220px;
    border-radius: 18px !important;
    background-position: center 38% !important;
  }
  .bm-clarity-tile__body {
    padding: 18px 18px 20px !important;
  }

  /* Polaroid more compact */
  .bm-polaroid { width: 240px; padding: 14px 14px 18px; }

  /* PlanCTA wrapper padding */
  .bm-plan-cta {
    padding: 36px 24px !important;
    border-radius: 24px !important;
  }
  .bm-plan-cta__grid { gap: 28px !important; }
  .bm-plan-cta__content { text-align: left; }
  .bm-plan-cta__content p {
    font-size: 15.5px !important;
    margin-bottom: 24px !important;
  }
  .bm-plan-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .bm-plan-cta__actions .bm-btn {
    width: 100%;
    min-height: 52px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .bm-plan-cta__list { gap: 10px !important; }
  .bm-plan-cta__item {
    gap: 12px !important;
    padding: 14px !important;
  }
  .bm-plan-cta__check {
    width: 32px !important;
    height: 32px !important;
    border-radius: 9px !important;
  }
  .bm-plan-cta__blob--top {
    right: -180px !important;
    top: -180px !important;
  }
  .bm-plan-cta__blob--bottom {
    left: -180px !important;
    bottom: -180px !important;
  }
}

/* ============================================================
   Ad landing page (/quote)
   Single-purpose conversion page — reuses .bm-srv-hero title
   and bullet primitives, adds its own layout shell.
   ============================================================ */

.bm-ad { position: relative; z-index: 1; }

.bm-ad-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  /* --bm-ink is not a defined token (the srv-hero reference silently no-ops),
     so use the real dark brand color as the pre-image-load backdrop. */
  background: var(--bm-secondary);
  color: #fff;
}
.bm-ad-hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.bm-ad-hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Keep the truck + house in frame when a portrait photo is cropped wide */
  object-position: center 68%;
  animation: bm-ken-burns 28s ease-in-out infinite;
}

/* Staggered entrance — delay set per element via --bm-rise-delay */
.bm-ad-rise {
  animation: bm-fade-up 720ms var(--bm-ease-out) both;
  animation-delay: var(--bm-rise-delay, 0ms);
}
.bm-ad-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,5,0.55) 0%, rgba(0,0,5,0.3) 45%, rgba(1,42,56,0.8) 100%),
    linear-gradient(90deg, rgba(0,0,5,0.62) 0%, rgba(0,0,5,0.12) 70%);
}
.bm-ad-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  padding-top: 24px;
  padding-bottom: 56px;
  width: 100%;
}
.bm-ad-hero__topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.bm-ad-hero__logo img { height: 40px; display: block; }
.bm-ad-hero__phone { color: #fff; }
.bm-ad-hero__phone:hover { color: var(--bm-primary-100); }

.bm-ad-hero__content {
  margin: auto 0;
  max-width: 620px;
}
.bm-ad-hero__title { max-width: 15ch; }
.bm-ad-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(238,238,255,0.88);
  max-width: 46ch;
  margin: 0 0 30px;
}
.bm-ad-hero__cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  margin-bottom: 36px;
}
/* The one action on the page — accent orange (the designated CTA token,
   unused elsewhere on this page) so it outranks everything on the blue hero. */
.bm-ad-cta-btn {
  min-height: 66px;
  padding: 20px 44px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--bm-accent);
  box-shadow: 0 14px 34px -8px rgba(255,107,53,0.55), 0 2px 6px rgba(0,0,5,0.15);
  animation: bm-ad-cta-pulse 2.6s var(--bm-ease-out) infinite;
}
.bm-ad-cta-btn:hover {
  background: var(--bm-accent-hover);
  box-shadow: 0 18px 40px -8px rgba(255,107,53,0.65), 0 2px 6px rgba(0,0,5,0.15);
  transform: translateY(-2px) scale(1.02);
}
.bm-ad-cta-btn:active {
  background: var(--bm-accent-hover);
  transform: translateY(1px) scale(1);
  box-shadow: 0 4px 12px -4px rgba(255,107,53,0.5);
}
.bm-ad-cta-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.35), 0 2px 6px rgba(0,0,5,0.15);
}
@keyframes bm-ad-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5), 0 14px 34px -8px rgba(255,107,53,0.55); }
  50%      { box-shadow: 0 0 0 16px rgba(255,107,53,0), 0 14px 34px -8px rgba(255,107,53,0.55); }
}
.bm-ad-cta-btn svg:last-child { transition: transform 200ms var(--bm-ease-out); }
.bm-ad-cta-btn:hover svg:last-child { transform: translateX(4px); }
.bm-ad-hero__cta-note {
  font-size: 13px;
  color: rgba(238,238,255,0.7);
  letter-spacing: 0.01em;
}
.bm-ad-hero__bullets { margin-bottom: 0; }

/* Bouncing scroll cue at the hero's bottom edge */
.bm-ad-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(238,238,255,0.35);
  background: rgba(7,42,63,0.35);
  backdrop-filter: blur(6px);
  color: rgba(238,238,255,0.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 160ms var(--bm-ease-out), color 160ms var(--bm-ease-out);
  animation: bm-ad-cue-bounce 2.2s ease-in-out infinite;
}
.bm-ad-scroll-cue svg { transform: rotate(90deg); }
.bm-ad-scroll-cue:hover { border-color: rgba(238,238,255,0.7); color: #fff; }
@keyframes bm-ad-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

/* Social proof */
.bm-ad-proof__inner {
  max-width: 720px;
  text-align: center;
}
.bm-ad-proof__rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.bm-ad-proof__stars { display: inline-flex; gap: 2px; color: var(--bm-primary); }
.bm-ad-proof__title { margin-bottom: 28px; }
.bm-ad-review {
  padding: 28px 32px;
  text-align: left;
  margin: 0 0 32px;
}
.bm-ad-review__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bm-fg-2);
  margin: 0 0 16px;
}
.bm-ad-review__meta {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px;
}
.bm-ad-review__meta strong { color: var(--bm-fg-1); }
.bm-ad-review__meta span { color: #FFC83D; }
.bm-ad-proof__cta {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* Minimal footer */
.bm-ad-footer {
  position: relative; z-index: 1;
  background: var(--bm-secondary);
  color: rgba(238,238,255,0.7);
  font-size: 13px;
  padding: 20px 0;
}
.bm-ad-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.bm-ad-footer__links { display: flex; gap: 18px; }
.bm-ad-footer__links a {
  display: inline-flex; align-items: center; gap: 6px;
  color: #6FC9E3;
}
.bm-ad-footer__links a:hover { color: var(--bm-mist); }

/* Sticky mobile CTA — sits below the quote panel (z-index 100/101) so the
   open form always covers it. Shown only once the hero CTA scrolls away. */
.bm-ad-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7,42,63,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(238,238,255,0.14);
  transform: translateY(110%);
  transition: transform 240ms var(--bm-ease-out);
  display: none;
}
.bm-ad-sticky.is-visible { transform: translateY(0); }
.bm-ad-sticky .bm-ad-cta-btn { width: 100%; justify-content: center; }

@media (max-width: 960px) {
  .bm-ad-sticky { display: block; }
  .bm-ad-hero__topbar { margin-bottom: 36px; }
}

@media (max-width: 640px) {
  .bm-ad-hero { min-height: 100svh; }
  .bm-ad-hero__logo img { height: 34px; }
  .bm-ad-hero__phone span { display: none; }
  .bm-ad-hero__title { font-size: clamp(2.1rem, 10vw, 3rem); }
  .bm-ad-hero__sub { font-size: 16px; }
  .bm-ad-hero__cta { width: 100%; }
  .bm-ad-hero__cta .bm-ad-cta-btn { width: 100%; justify-content: center; }
  .bm-ad-review { padding: 22px 20px; }
  .bm-ad-proof__cta { flex-direction: column; }
  .bm-ad-proof__cta .bm-btn { width: 100%; justify-content: center; }
  .bm-ad-footer__inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .bm-ad-sticky { transition: none; }
  .bm-ad-cta-btn,
  .bm-ad-rise,
  .bm-ad-hero__bg img,
  .bm-ad-scroll-cue { animation: none; }
}
