/* ──────────────────────────────────────────────────────────────────────
   YellowBird overrides — our own CSS, loaded AFTER the vendored Webflow
   stylesheets. Use this file for any tweaks or fixes. Never edit the
   vendored files directly.
   ────────────────────────────────────────────────────────────────────── */

/* ── HubSpot form placeholder ────────────────────────────────────────── */
.hs-form-placeholder {
  padding: 24px;
  border: 2px dashed #ddd;
  border-radius: 8px;
  text-align: center;
  background: #fafafa;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.hs-form-placeholder code {
  background: #eee;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
}
.hs-form-placeholder__hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}

/* ── Testimonial carousel (vanilla JS replacement for Webflow slider) ── */
/* When yb-carousel.js initialises, it adds a .yb-carousel class to the
   .testimonial11_slider element and a .yb-carousel--active body class.
   Slides become a single visible item with prev/next buttons. */
.yb-carousel .w-slider-mask {
  position: relative;
  overflow: hidden;
}
.yb-carousel .w-slide {
  display: none;
}
.yb-carousel .w-slide.is-active {
  display: block;
}
.yb-carousel .slider-arrow {
  cursor: pointer;
  user-select: none;
}
.yb-carousel .testimonial11_slide-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}
.yb-carousel .testimonial11_slide-nav > div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.15s;
}
.yb-carousel .testimonial11_slide-nav > div.is-active {
  background: rgba(0,0,0,0.6);
}

/* ============================================================
   Custom lead-capture forms (yb-forms.js) — match live Webflow
   forms. Uses Poppins (the font this rebuild loads).
   ============================================================ */
.yb-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
}
.yb-field { display: flex; flex-direction: column; }
.yb-field label {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
  color: #1a1a1a;
}
.yb-form input,
.yb-form select {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 7px;
  padding: 10px 12px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}
.yb-form input.yb-invalid { border-color: #d0021b; }
.yb-error {
  display: none;
  font-size: 12px;
  color: #d0021b;
  margin-top: 4px;
}
.yb-submit {
  background: #F7C600;
  color: #000000;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  width: 100%;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease;
}
.yb-submit:hover { background: #e0b400; }
.yb-submit:disabled { opacity: 0.6; cursor: default; }
.yb-status { font-size: 13px; }
.yb-status-error { color: #d0021b; }
.yb-thankyou {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 8px 0;
}
.yb-pro-panel {
  background: #f9f6e8;
  border: 1px solid #F7C600;
  border-radius: 10px;
  padding: 20px;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
}
.yb-pro-heading { font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0; }
.yb-pro-body { font-size: 14px; color: #1a1a1a; margin: 8px 0 16px; }
.yb-pro-btn {
  display: inline-block;
  width: auto;
  background: #F7C600;
  color: #000000;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 0.2s ease;
}
.yb-pro-btn:hover { background: #e0b400; }
[hidden] { display: none !important; }
