/* ============================================================
   BEAVER BUILDER → THEME LAYER (customize palette per site)
   Site-wide defaults so any Beaver Builder content matches the site design
   out of the box. Scoped to .fl-builder-content; NO !important, loaded late,
   so per-module Builder settings still win. Update the tokens below to the
   site's real palette/fonts (mirror css/global.css :root).
   ============================================================ */
.fl-builder-content {
  --ink: #16181d; --ink-soft: #3f444e; --muted: #6b7280;
  --line: #e8eaee; --line-2: #dfe2e8;
  --brand: #4b66ff; --brand-600: #3a52e6;
  --r-pill: 999px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fl-builder-content .fl-heading,
.fl-builder-content .fl-heading .fl-heading-text {
  font-family: var(--sans); color: var(--ink); font-weight: 800; letter-spacing: -0.02em; line-height: 1.18;
}
.fl-builder-content .fl-rich-text,
.fl-builder-content .fl-rich-text p,
.fl-builder-content .fl-rich-text li { font-family: var(--sans); color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.fl-builder-content .fl-rich-text a { color: var(--brand-600); font-weight: 600; text-decoration: none; }
.fl-builder-content .fl-rich-text a:hover { text-decoration: underline; }

.fl-builder-content .fl-button-wrap a.fl-button {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, var(--brand), var(--brand-600));
  border: 1px solid transparent; border-radius: var(--r-pill);
  padding: 13px 24px; font-family: var(--sans); font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  transition: transform .18s, box-shadow .18s;
}
.fl-builder-content .fl-button-wrap a.fl-button:hover { transform: translateY(-2px); }
.fl-builder-content a.fl-button .fl-button-text,
.fl-builder-content a.fl-button .fl-button-icon { color: #fff; }

.fl-builder-content .fl-separator { border-top-color: var(--line); }

.fl-builder-content input[type="text"],
.fl-builder-content input[type="email"],
.fl-builder-content input[type="tel"],
.fl-builder-content input[type="url"],
.fl-builder-content textarea,
.fl-builder-content select {
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--surface, #fff);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.fl-builder-content input:focus, .fl-builder-content textarea:focus, .fl-builder-content select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(75,102,255,.15);
}
