/* ── FBP Global Trigger Buttons ──
   Lightweight CSS loaded on every page so [data-fbp-trigger] buttons
   can be placed anywhere in WordPress (Elementor, Gutenberg, menus, etc.)
   and look consistent with the calculator's gate screen buttons.
   No external font dependency — uses system font stack for instant render.
*/

a.fbp-btn-pill,
button.fbp-btn-pill {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
}

a.fbp-btn-pill--primary,
button.fbp-btn-pill--primary {
  color: #fff;
  background: #F04000;
}

a.fbp-btn-pill--primary:hover,
button.fbp-btn-pill--primary:hover {
  background: #D03800;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgb(240 64 0 / 0.3);
  color: #fff;
  text-decoration: none;
}

a.fbp-btn-pill--outline,
button.fbp-btn-pill--outline {
  color: #0f0e17;
  background: transparent;
  border: 1.5px solid #e2ddd8;
  font-weight: 500;
}

a.fbp-btn-pill--outline:hover,
button.fbp-btn-pill--outline:hover {
  border-color: #F04000;
  color: #F04000;
  text-decoration: none;
}
