/* ============================================================
   ELINOM — Website Builder Module Styles
   website_builder.css
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Builder chrome colours (dark) */
  --wb-chrome-bg:        #0f1117;
  --wb-chrome-surface:   #1a1d27;
  --wb-chrome-panel:     #13151f;
  --wb-chrome-border:    #2a2d3e;
  --wb-chrome-hover:     #252836;
  --wb-chrome-active:    #2563eb;
  --wb-chrome-text:      #e2e8f0;
  --wb-chrome-muted:     #94a3b8;
  --wb-chrome-danger:    #ef4444;
  --wb-chrome-success:   #22c55e;
  --wb-chrome-warning:   #f59e0b;

  /* Panel widths */
  --wb-left-w:    280px;
  --wb-right-w:   320px;
  --wb-toolbar-h:  60px;

  /* Transitions */
  --wb-trans:     all 0.18s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  background: var(--wb-chrome-bg);
  color: var(--wb-chrome-text);
  line-height: 1.5;
}
input, textarea, select, button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--wb-chrome-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--wb-chrome-muted); }

/* ============================================================
   LAYOUT SHELL
   ============================================================ */
#wb-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* ── Top Toolbar ────────────────────────────────────────────── */
#wb-toolbar {
  height: var(--wb-toolbar-h);
  min-height: var(--wb-toolbar-h);
  background: var(--wb-chrome-surface);
  border-bottom: 1px solid var(--wb-chrome-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 16px;
  z-index: 50;
}
.wb-toolbar-left,
.wb-toolbar-center,
.wb-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-toolbar-center { flex: 1; justify-content: center; }

/* Site name in toolbar */
#wb-site-name-display {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wb-chrome-text);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Device toggle buttons */
.wb-device-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--wb-chrome-muted);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--wb-trans);
}
.wb-device-btn:hover { background: var(--wb-chrome-hover); color: var(--wb-chrome-text); }
.wb-device-btn.active {
  background: var(--wb-chrome-active);
  border-color: var(--wb-chrome-active);
  color: #fff;
}

/* ── Body area (panels + canvas) ───────────────────────────── */
#wb-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* ============================================================
   LEFT PANEL
   ============================================================ */
#wb-left-panel {
  width: var(--wb-left-w);
  min-width: var(--wb-left-w);
  background: var(--wb-chrome-panel);
  border-right: 1px solid var(--wb-chrome-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Panel tabs */
.wb-panel-tabs {
  display: flex;
  border-bottom: 1px solid var(--wb-chrome-border);
  background: var(--wb-chrome-surface);
}
.wb-tab-btn {
  flex: 1;
  padding: 11px 4px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--wb-chrome-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--wb-trans);
  white-space: nowrap;
}
.wb-tab-btn:hover { color: var(--wb-chrome-text); }
.wb-tab-btn.active {
  color: var(--wb-chrome-active);
  border-bottom-color: var(--wb-chrome-active);
}

/* Tab content areas */
.wb-tab-content { display: none; flex: 1; overflow-y: auto; padding: 12px; }
.wb-tab-content.active { display: flex; flex-direction: column; gap: 8px; }

/* ── Pages list ─────────────────────────────────────────────── */
.wb-page-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--wb-trans);
  border: 1px solid transparent;
}
.wb-page-item:hover { background: var(--wb-chrome-hover); }
.wb-page-item.active {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.3);
}
.wb-page-item-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--wb-chrome-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--wb-chrome-muted);
  flex-shrink: 0;
}
.wb-page-item.active .wb-page-item-icon { background: var(--wb-chrome-active); color: #fff; }
.wb-page-item-info { flex: 1; overflow: hidden; }
.wb-page-item-title { font-weight: 600; font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wb-page-item-meta { font-size: 0.7rem; color: var(--wb-chrome-muted); }
.wb-page-item-actions { display: flex; gap: 4px; opacity: 0; transition: var(--wb-trans); }
.wb-page-item:hover .wb-page-item-actions { opacity: 1; }
.wb-page-item-actions button {
  width: 22px; height: 22px;
  background: transparent; border: none; border-radius: 4px;
  color: var(--wb-chrome-muted); cursor: pointer; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.wb-page-item-actions button:hover { background: var(--wb-chrome-hover); color: var(--wb-chrome-text); }

/* ── Section palette ────────────────────────────────────────── */
.wb-section-palette-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: grab;
  border: 1px dashed var(--wb-chrome-border);
  transition: var(--wb-trans);
  background: var(--wb-chrome-hover);
}
.wb-section-palette-item:hover {
  border-color: var(--wb-chrome-active);
  background: rgba(37,99,235,.1);
}
.wb-section-palette-item:active { cursor: grabbing; }
.wb-section-palette-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--wb-chrome-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.wb-section-palette-info { flex: 1; }
.wb-section-palette-name { font-weight: 600; font-size: 0.8rem; }
.wb-section-palette-desc { font-size: 0.7rem; color: var(--wb-chrome-muted); }
.wb-add-section-btn {
  width: 100%;
  padding: 8px;
  background: var(--wb-chrome-active);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--wb-trans);
  margin-top: 4px;
}
.wb-add-section-btn:hover { opacity: 0.9; }

/* ============================================================
   CANVAS AREA
   ============================================================ */
#wb-canvas-wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #1e2133;
}
#wb-canvas-header {
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wb-chrome-surface);
  border-bottom: 1px solid var(--wb-chrome-border);
}
.wb-page-breadcrumb {
  font-size: 0.75rem;
  color: var(--wb-chrome-muted);
  display: flex; align-items: center; gap: 6px;
}
.wb-page-breadcrumb b { color: var(--wb-chrome-text); font-weight: 600; }

#wb-canvas-scroll {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 24px;
}
#wb-canvas-frame {
  background: #fff;
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
  border-radius: 4px;
  overflow: hidden;
  transition: width 0.3s ease;
  /* default desktop */
  width: 100%;
  max-width: 1280px;
  min-height: 600px;
}
#wb-canvas-frame.tablet { max-width: 768px; }
#wb-canvas-frame.mobile { max-width: 375px; }

/* Section overlays inside the canvas */
.wb-section-wrapper {
  position: relative;
  cursor: pointer;
}
.wb-section-overlay {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: border-color 0.15s;
  pointer-events: none;
  z-index: 10;
}
.wb-section-wrapper:hover .wb-section-overlay { border-color: rgba(37,99,235,.5); }
.wb-section-wrapper.selected .wb-section-overlay { border-color: var(--wb-chrome-active); }
.wb-section-toolbar {
  position: absolute;
  top: -36px;
  right: 8px;
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--wb-chrome-active);
  border-radius: 6px;
  padding: 4px 6px;
  z-index: 20;
}
.wb-section-wrapper.selected .wb-section-toolbar { display: flex; }
.wb-section-toolbar button {
  width: 24px; height: 24px;
  background: transparent; border: none;
  border-radius: 4px; color: #fff; cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.wb-section-toolbar button:hover { background: rgba(255,255,255,.2); }

/* Empty page state */
.wb-canvas-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 32px; gap: 16px; color: var(--wb-chrome-muted);
  text-align: center;
}
.wb-canvas-empty-icon { font-size: 3rem; opacity: 0.3; }
.wb-canvas-empty h3 { font-size: 1rem; font-weight: 600; color: #6b7280; }
.wb-canvas-empty p { font-size: 0.85rem; max-width: 280px; line-height: 1.6; }

/* ============================================================
   RIGHT PANEL — Properties
   ============================================================ */
#wb-right-panel {
  width: var(--wb-right-w);
  min-width: var(--wb-right-w);
  background: var(--wb-chrome-panel);
  border-left: 1px solid var(--wb-chrome-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wb-right-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--wb-chrome-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wb-right-title {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--wb-chrome-muted);
}
#wb-props-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Property groups */
.wb-prop-group {
  background: var(--wb-chrome-surface);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 8px;
  overflow: hidden;
}
.wb-prop-group-header {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--wb-chrome-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--wb-trans);
}
.wb-prop-group-header:hover { color: var(--wb-chrome-text); }
.wb-prop-group-header .wb-chevron { transition: transform 0.2s; font-size: 0.7rem; }
.wb-prop-group-header.collapsed .wb-chevron { transform: rotate(-90deg); }
.wb-prop-group-body {
  padding: 4px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--wb-chrome-border);
}
.wb-prop-group-body.hidden { display: none; }

/* Field rows */
.wb-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-field-row .wb-field { flex: 1; }
.wb-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wb-chrome-muted);
  text-transform: capitalize;
}
.wb-input {
  width: 100%;
  padding: 7px 10px;
  background: var(--wb-chrome-bg);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 6px;
  color: var(--wb-chrome-text);
  font-size: 0.82rem;
  transition: var(--wb-trans);
  outline: none;
}
.wb-input:focus { border-color: var(--wb-chrome-active); }
.wb-input::placeholder { color: var(--wb-chrome-border); }
.wb-textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}
.wb-select {
  width: 100%;
  padding: 7px 10px;
  background: var(--wb-chrome-bg);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 6px;
  color: var(--wb-chrome-text);
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}
.wb-select:focus { border-color: var(--wb-chrome-active); }

/* Colour picker row */
.wb-color-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-color-swatch {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 2px solid var(--wb-chrome-border);
  cursor: pointer;
  flex-shrink: 0;
}
.wb-color-input {
  flex: 1;
  padding: 7px 10px;
  background: var(--wb-chrome-bg);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 6px;
  color: var(--wb-chrome-text);
  font-size: 0.82rem;
  outline: none;
}
.wb-color-input:focus { border-color: var(--wb-chrome-active); }
input[type="color"] { padding: 2px; border-radius: 6px; border: 2px solid var(--wb-chrome-border); }

/* Toggle switch */
.wb-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.wb-toggle {
  position: relative;
  width: 34px; height: 18px;
  cursor: pointer;
}
.wb-toggle input { opacity: 0; width: 0; height: 0; }
.wb-toggle-slider {
  position: absolute; inset: 0;
  background: var(--wb-chrome-border);
  border-radius: 9px;
  transition: var(--wb-trans);
}
.wb-toggle-slider::before {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  top: 3px; left: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--wb-trans);
}
.wb-toggle input:checked + .wb-toggle-slider { background: var(--wb-chrome-active); }
.wb-toggle input:checked + .wb-toggle-slider::before { transform: translateX(16px); }

/* Image upload */
.wb-img-upload {
  border: 2px dashed var(--wb-chrome-border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--wb-trans);
  color: var(--wb-chrome-muted);
  font-size: 0.78rem;
}
.wb-img-upload:hover { border-color: var(--wb-chrome-active); color: var(--wb-chrome-text); }
.wb-img-preview {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* Repeating items (services, testimonials, etc.) */
.wb-repeat-item {
  background: var(--wb-chrome-bg);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.wb-repeat-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.wb-repeat-item-title { font-weight: 600; font-size: 0.78rem; }
.wb-repeat-item-actions { display: flex; gap: 4px; }
.wb-repeat-item-actions button {
  width: 22px; height: 22px;
  background: transparent; border: none; border-radius: 4px;
  color: var(--wb-chrome-muted); cursor: pointer; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.wb-repeat-item-actions button:hover { color: var(--wb-chrome-danger); background: rgba(239,68,68,.1); }
.wb-repeat-item-body { display: flex; flex-direction: column; gap: 8px; }
.wb-repeat-item-body.collapsed { display: none; }
.wb-add-item-btn {
  width: 100%;
  padding: 8px;
  background: transparent;
  border: 1px dashed var(--wb-chrome-border);
  border-radius: 8px;
  color: var(--wb-chrome-muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--wb-trans);
}
.wb-add-item-btn:hover { border-color: var(--wb-chrome-active); color: var(--wb-chrome-active); }

/* ============================================================
   BUTTONS
   ============================================================ */
.wb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  transition: var(--wb-trans);
  white-space: nowrap;
}
.wb-btn-primary { background: var(--wb-chrome-active); color: #fff; }
.wb-btn-primary:hover { opacity: 0.9; }
.wb-btn-ghost {
  background: transparent;
  color: var(--wb-chrome-muted);
  border: 1px solid var(--wb-chrome-border);
}
.wb-btn-ghost:hover { background: var(--wb-chrome-hover); color: var(--wb-chrome-text); }
.wb-btn-danger { background: var(--wb-chrome-danger); color: #fff; }
.wb-btn-danger:hover { opacity: 0.85; }
.wb-btn-success { background: var(--wb-chrome-success); color: #fff; }
.wb-btn-success:hover { opacity: 0.9; }
.wb-btn-sm { padding: 5px 10px; font-size: 0.75rem; border-radius: 6px; }
.wb-btn-xs { padding: 3px 8px; font-size: 0.7rem; border-radius: 4px; }
.wb-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   MODALS
   ============================================================ */
.wb-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.wb-modal {
  background: var(--wb-chrome-surface);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 16px;
  width: 90%;
  max-width: 860px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.wb-modal-sm { max-width: 480px; }
.wb-modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--wb-chrome-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wb-modal-title { font-size: 1.1rem; font-weight: 700; }
.wb-modal-close {
  width: 32px; height: 32px;
  background: var(--wb-chrome-hover); border: none; border-radius: 8px;
  color: var(--wb-chrome-muted); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.wb-modal-close:hover { color: var(--wb-chrome-text); }
.wb-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.wb-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--wb-chrome-border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* Template grid inside modal */
.wb-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.wb-template-card {
  border: 2px solid var(--wb-chrome-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--wb-trans);
  background: var(--wb-chrome-bg);
}
.wb-template-card:hover { border-color: var(--wb-chrome-active); transform: translateY(-2px); }
.wb-template-card.selected { border-color: var(--wb-chrome-active); background: rgba(37,99,235,.08); }
.wb-template-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.wb-template-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wb-template-info { padding: 12px; }
.wb-template-name { font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.wb-template-industry {
  font-size: 0.72rem; color: var(--wb-chrome-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.wb-template-card-actions { display: flex; margin-top: 10px; }
.wb-template-card-actions .wb-btn { width: 100%; }

.wb-publish-url {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--wb-chrome-border);
  background: var(--wb-chrome-hover);
  color: #cbd5e1;
  font-size: 0.78rem;
  word-break: break-all;
}

.wb-recovery-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.wb-recovery-list {
  display: flex;
  flex-direction: column;
  min-height: 120px;
}

/* Industry filter buttons */
.wb-filter-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.wb-filter-btn {
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--wb-chrome-hover);
  border: 1px solid var(--wb-chrome-border);
  color: var(--wb-chrome-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wb-trans);
}
.wb-filter-btn.active, .wb-filter-btn:hover {
  background: var(--wb-chrome-active);
  border-color: var(--wb-chrome-active);
  color: #fff;
}

/* ============================================================
   MEDIA LIBRARY
   ============================================================ */
.wb-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}
.wb-media-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--wb-trans);
  background: var(--wb-chrome-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--wb-chrome-muted);
  position: relative;
}
.wb-media-item img { width: 100%; height: 100%; object-fit: cover; }
.wb-media-item:hover { border-color: var(--wb-chrome-active); }
.wb-media-item.selected { border-color: var(--wb-chrome-active); }
.wb-media-item-overlay {
  position: absolute; inset: 0;
  background: rgba(37,99,235,.3);
  display: none; align-items: center; justify-content: center;
}
.wb-media-item.selected .wb-media-item-overlay { display: flex; }

/* ============================================================
   STATUS INDICATORS
   ============================================================ */
.wb-badge {
  display: inline-flex; align-items: center;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wb-badge-draft     { background: rgba(100,116,139,.2); color: #94a3b8; }
.wb-badge-published { background: rgba(34,197,94,.15);  color: #22c55e; }
.wb-badge-saving    { background: rgba(245,158,11,.15); color: #f59e0b; }

/* ── Saving indicator in toolbar ────────────────────────────── */
#wb-save-indicator {
  font-size: 0.72rem;
  color: var(--wb-chrome-muted);
  display: flex; align-items: center; gap: 5px;
}
#wb-save-indicator.saving { color: var(--wb-chrome-warning); }
#wb-save-indicator.saved  { color: var(--wb-chrome-success); }

/* Auto-save dot */
.dot-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#wb-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.wb-toast {
  background: var(--wb-chrome-surface);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 10px;
  animation: slideIn 0.25s ease forwards;
  pointer-events: all;
  max-width: 320px;
}
.wb-toast.success { border-color: var(--wb-chrome-success); }
.wb-toast.error   { border-color: var(--wb-chrome-danger); }
.wb-toast-icon { font-size: 1rem; }
@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateX(120%); }
}
.wb-toast.hiding { animation: fadeOut 0.25s ease forwards; }

/* ============================================================
   DASHBOARD / SITE LIST VIEW
   ============================================================ */
#wb-dashboard {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  background: var(--wb-chrome-bg);
}
.wb-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.wb-dash-title { font-size: 1.6rem; font-weight: 800; }
.wb-dash-subtitle { font-size: 0.9rem; color: var(--wb-chrome-muted); margin-top: 4px; }

.wb-dashboard-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  margin-bottom: 28px;
}

.wb-dashboard-panel {
  background: linear-gradient(180deg, rgba(19, 27, 48, 0.9), rgba(13, 18, 31, 0.95));
  border: 1px solid var(--wb-chrome-border);
  border-radius: 16px;
  padding: 18px;
}

.wb-dashboard-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.wb-dashboard-panel-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.wb-dashboard-panel-header p {
  color: var(--wb-chrome-muted);
  font-size: 0.8rem;
}

.wb-empty-panel {
  padding: 16px;
  border: 1px dashed var(--wb-chrome-border);
  border-radius: 12px;
  color: var(--wb-chrome-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.wb-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.wb-dashboard-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--wb-chrome-border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.65);
  color: var(--wb-chrome-text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.wb-dashboard-notice i {
  margin-top: 2px;
  color: var(--wb-chrome-warning);
}

.wb-dashboard-notice.warning {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}
.wb-site-card {
  background: var(--wb-chrome-surface);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--wb-trans);
  cursor: pointer;
}
.wb-site-card:hover {
  border-color: var(--wb-chrome-active);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.1);
}
.wb-site-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.wb-site-card-thumb-content {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.wb-site-card-thumb-name {
  font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,.85);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  max-width: 200px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wb-site-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wb-site-card-body { padding: 16px; }
.wb-site-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.wb-site-card-meta { font-size: 0.78rem; color: var(--wb-chrome-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wb-site-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.wb-activity-item,
.wb-recovery-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.wb-activity-item + .wb-activity-item,
.wb-recovery-item + .wb-recovery-item {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.wb-activity-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(14,165,233,.18));
  border: 1px solid rgba(96,165,250,.22);
}

.wb-activity-copy,
.wb-recovery-copy {
  min-width: 0;
  flex: 1;
}

.wb-activity-title,
.wb-recovery-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--wb-chrome-text);
}

.wb-activity-meta,
.wb-recovery-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--wb-chrome-muted);
}

/* New site card */
.wb-site-card-new {
  background: transparent;
  border: 2px dashed var(--wb-chrome-border);
  align-items: center; justify-content: center;
  display: flex; flex-direction: column;
  min-height: 240px;
  gap: 12px;
  color: var(--wb-chrome-muted);
  transition: var(--wb-trans);
}
.wb-site-card-new:hover {
  border-color: var(--wb-chrome-active);
  color: var(--wb-chrome-active);
  background: rgba(37,99,235,.05);
}
.wb-site-card-new-icon { font-size: 2.5rem; }
.wb-site-card-new-text { font-weight: 600; font-size: 0.9rem; }

/* ============================================================
   RESPONSIVE  (collapse panels below 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --wb-left-w: 240px;
    --wb-right-w: 260px;
  }

  .wb-dashboard-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  #wb-left-panel,
  #wb-right-panel { display: none; }
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.wb-spinner {
  width: 20px; height: 20px;
  border: 3px solid var(--wb-chrome-border);
  border-top-color: var(--wb-chrome-active);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Public site rendered inside canvas ────────────────────── */
#wb-site-renderer {
  width: 100%;
  min-height: 100%;
  background: #fff;
}

/* ============================================================
   LIVE SECTION PREVIEWS (WYSIWYG Canvas) — Premium Enhanced
   ============================================================ */
.wb-live-section {
  padding: 64px 0;
  font-family: var(--c-font-b, 'Inter', sans-serif);
  color: inherit;
  line-height: 1.6;
  overflow: hidden;
  position: relative;
}
.wb-live-section h1, .wb-live-section h2, .wb-live-section h3 {
  font-family: var(--c-font-h, 'Poppins', sans-serif);
  line-height: 1.2;
}
.wb-live-section img { max-width: 100%; display: block; }
.wb-lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section header pattern ────────────────────────────────── */
.wb-lp-section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* ── Tags ──────────────────────────────────────────────────── */
.wb-lp-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary, #2563eb);
  margin-bottom: 12px;
}
.wb-lp-tag-pill {
  background: rgba(37,99,235,.08);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,.15);
}

/* ── Glowing pill tag ──────────────────────────────────────── */
.wb-lp-tag-glow {
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
  border: 1px solid rgba(37,99,235,.20);
  box-shadow: 0 0 16px rgba(37,99,235,.08);
}

/* ── Gradient text utility ─────────────────────────────────── */
.wb-lp-gradient-text {
  background: linear-gradient(135deg, var(--c-primary, #2563eb) 0%, var(--c-secondary, #7c3aed) 50%, var(--c-accent, #f59e0b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glassmorphism card ────────────────────────────────────── */
.wb-lp-glass-card {
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.35);
}
.wb-lp-glass-card:hover {
  background: rgba(255,255,255,.85);
  border-color: rgba(37,99,235,.18);
}

/* ── Shine button animation ────────────────────────────────── */
.wb-lp-btn-shine {
  position: relative;
  overflow: hidden;
}
.wb-lp-btn-shine::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-25deg);
  animation: wb-btn-shine 3s ease-in-out infinite;
}
@keyframes wb-btn-shine {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}

/* ── Floating icon ─────────────────────────────────────────── */
.wb-lp-icon-float {
  animation: wb-float 3s ease-in-out infinite;
}
@keyframes wb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── Typography ────────────────────────────────────────────── */
.wb-lp-title {
  font-family: var(--c-font-h);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.wb-lp-hero-title {
  font-family: var(--c-font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.wb-lp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-muted, #6b7280);
  line-height: 1.7;
  max-width: 540px;
}
.wb-lp-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--c-muted, #6b7280);
  max-width: 580px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.6;
}
.wb-lp-text {
  font-size: 0.95rem;
  color: var(--c-muted, #6b7280);
  line-height: 1.75;
  max-width: 600px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.wb-lp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--c-radius, 8px);
  background: var(--c-primary, #2563eb); color: #fff;
  font-family: var(--c-font-h); font-weight: 600;
  font-size: 0.88rem; cursor: default; text-decoration: none;
  border: none; transition: all .25s;
  box-shadow: 0 4px 14px rgba(37,99,235,.25);
}
.wb-lp-btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.wb-lp-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--c-radius, 8px);
  background: transparent; color: var(--c-primary, #2563eb);
  border: 2px solid var(--c-primary, #2563eb);
  font-family: var(--c-font-h); font-weight: 600;
  font-size: 0.88rem; cursor: default; text-decoration: none;
  transition: all .25s;
}

/* ── Cards ─────────────────────────────────────────────────── */
.wb-lp-card {
  background: var(--c-surface, #f8fafc);
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: var(--c-radius, 12px);
  padding: 28px;
  transition: all .3s ease;
}
.wb-lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}

/* ── Empty / placeholder blocks ────────────────────────────── */
.wb-lp-empty-block {
  text-align: center;
  padding: 48px 24px;
  color: var(--c-muted);
  font-size: 0.85rem;
  background: var(--c-surface);
  border-radius: var(--c-radius);
  border: 2px dashed var(--c-border);
}

/* ── Forms ─────────────────────────────────────────────────── */
.wb-lp-form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: var(--c-radius, 8px);
  font-family: var(--c-font-b);
  font-size: 0.88rem;
  background: #fff;
  color: var(--c-text, #1a1a1a);
  outline: none;
  transition: border-color .2s;
}
.wb-lp-form-input:disabled {
  background: var(--c-surface, #f8fafc);
  opacity: 0.75;
  cursor: not-allowed;
}
.wb-lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.wb-lp-hero-split {
  display: flex;
  gap: 56px;
  align-items: center;
}
.wb-lp-hero-centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.wb-lp-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wb-lp-hero-text-center {
  align-items: center;
  text-align: center;
}
.wb-lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wb-lp-hero-text-center .wb-lp-hero-actions { justify-content: center; }

/* Trust badge */
.wb-lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.wb-lp-hero-text-center .wb-lp-hero-trust { justify-content: center; }
.wb-lp-hero-trust-avatars {
  display: flex;
}
.wb-lp-avatar-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.65rem; font-weight: 700;
  margin-left: -8px;
  border: 2px solid #fff;
}
.wb-lp-avatar-dot:first-child { margin-left: 0; }
.wb-lp-hero-trust-text {
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* Hero media */
.wb-lp-hero-media {
  flex: 1;
  min-width: 0;
}
.wb-lp-hero-img {
  width: 100%;
  border-radius: var(--c-radius, 12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
/* Hero image wrapper & glow */
.wb-lp-hero-img-wrapper {
  position: relative;
}
.wb-lp-hero-img-glow {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, var(--c-primary, #2563eb), var(--c-secondary, #7c3aed));
  border-radius: 50%;
  filter: blur(60px);
  opacity: .15;
  z-index: -1;
}
/* Hero decorative blobs */
.wb-lp-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.wb-lp-deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .06;
}
.wb-lp-deco-blob-1 {
  width: 400px; height: 400px;
  background: var(--c-primary, #2563eb);
  top: -120px; right: -80px;
  animation: wb-blob-drift 8s ease-in-out infinite alternate;
}
.wb-lp-deco-blob-2 {
  width: 300px; height: 300px;
  background: var(--c-secondary, #7c3aed);
  bottom: -100px; left: -60px;
  animation: wb-blob-drift 10s ease-in-out infinite alternate-reverse;
}
.wb-lp-deco-grid {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background-image: radial-gradient(var(--c-border, #e5e7eb) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .3;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000 40%, transparent 100%);
}
@keyframes wb-blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}
.wb-lp-hero-placeholder {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}
.wb-lp-hero-centered .wb-lp-hero-media {
  margin-top: 36px;
}
.wb-lp-hero-placeholder-inner {
  padding: 12px 16px 24px;
}
.wb-lp-browser-dots {
  display: flex; gap: 6px; margin-bottom: 12px;
}
.wb-lp-browser-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-border);
}
.wb-lp-browser-bar {
  height: 24px;
  background: var(--c-border);
  border-radius: 6px;
  margin-bottom: 16px;
  opacity: .5;
}
.wb-lp-browser-content {
  display: flex; flex-direction: column; gap: 10px;
}
.wb-lp-browser-content div {
  height: 12px;
  background: var(--c-border);
  border-radius: 4px;
  opacity: .35;
}
.wb-lp-browser-content div:nth-child(1) { width: 80%; }
.wb-lp-browser-content div:nth-child(2) { width: 60%; }
.wb-lp-browser-content div:nth-child(3) { width: 40%; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.wb-lp-about-grid {
  display: flex;
  gap: 56px;
  align-items: center;
}
.wb-lp-about-text { flex: 1; }
.wb-lp-about-media { flex: 1; min-width: 0; }
.wb-lp-about-img {
  width: 100%;
  border-radius: var(--c-radius, 12px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transition: transform .4s ease;
}
.wb-lp-about-media:hover .wb-lp-about-img {
  transform: scale(1.02);
}
.wb-lp-about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.wb-lp-about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.wb-lp-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.08));
  color: var(--c-primary);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,99,235,.10);
}

/* About placeholder deco */
.wb-lp-about-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-surface) 0%, rgba(37,99,235,.05) 100%);
  border-radius: var(--c-radius, 12px);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.wb-lp-about-deco {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(37,99,235,.03) 20px, rgba(37,99,235,.03) 40px);
}
.wb-lp-about-stat-float {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.wb-lp-float-1 { top: 16%; left: 10%; }
.wb-lp-float-2 { bottom: 16%; right: 10%; }
.wb-lp-about-stat-num {
  font-family: var(--c-font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-primary);
}
.wb-lp-about-stat-lbl {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.wb-lp-services-grid {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}
.wb-lp-service-card {
  background: var(--c-surface, #f8fafc);
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: var(--c-radius, 12px);
  padding: 28px;
  position: relative;
  transition: all .3s ease;
  overflow: hidden;
}
.wb-lp-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary, var(--c-primary)));
  opacity: 0;
  transition: opacity .3s;
}
.wb-lp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.wb-lp-service-card:hover::before { opacity: 1; }

.wb-lp-service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.wb-lp-service-icon { font-size: 1.5rem; }
.wb-lp-service-title {
  font-family: var(--c-font-h);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.wb-lp-service-desc {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.6;
}
.wb-lp-service-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--c-primary);
  font-weight: 600;
  opacity: 0;
  transition: opacity .2s;
}
.wb-lp-service-card:hover .wb-lp-service-arrow { opacity: 1; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.wb-lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.wb-lp-testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 12px);
  padding: 28px;
  position: relative;
  transition: all .3s;
  overflow: hidden;
}
.wb-lp-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary, var(--c-primary)), var(--c-accent, var(--c-primary)));
  opacity: 0;
  transition: opacity .3s;
}
.wb-lp-testimonial-card:hover::before { opacity: 1; }
.wb-lp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}
.wb-lp-testimonial-quote-icon {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--c-primary);
  opacity: .15;
  position: absolute;
  top: 16px; right: 20px;
}
.wb-lp-testimonial-stars {
  color: var(--c-accent, #f59e0b);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.wb-lp-testimonial-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.wb-lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wb-lp-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary, #7c3aed));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.wb-lp-testimonial-name { font-weight: 700; font-size: 0.85rem; }
.wb-lp-testimonial-role { font-size: 0.75rem; color: var(--c-muted); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.wb-lp-stats-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.wb-lp-stat-item {
  text-align: center;
  padding: 28px 36px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 12px);
  min-width: 140px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.wb-lp-stat-glass {
  background: rgba(255,255,255,.60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
}
.wb-lp-stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary, var(--c-primary)), var(--c-accent, var(--c-primary)));
  opacity: 0;
  transition: opacity .3s;
}
.wb-lp-stat-item:hover::before { opacity: 1; }
.wb-lp-stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.wb-lp-stat-value {
  font-family: var(--c-font-h);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.wb-lp-stat-number {
  font-size: inherit;
  font-weight: inherit;
}
.wb-lp-stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: .7;
  margin-left: 2px;
}
.wb-lp-stat-divider {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent, var(--c-primary)));
  border-radius: 2px;
  margin: 10px auto;
}
.wb-lp-stat-label {
  font-size: 0.82rem;
  color: var(--c-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.wb-lp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.wb-lp-team-card {
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 14px);
  padding: 28px 20px;
  transition: all .3s;
}
.wb-lp-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.wb-lp-team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary, #7c3aed));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid rgba(37,99,235,.15);
}
.wb-lp-team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wb-lp-team-avatar span { color: #fff; font-size: 1.5rem; font-weight: 700; }
.wb-lp-team-name { font-weight: 700; font-size: 0.95rem; }
.wb-lp-team-role { font-size: 0.78rem; color: var(--c-primary); margin-top: 2px; font-weight: 500; }
.wb-lp-team-bio { font-size: 0.78rem; color: var(--c-muted); margin-top: 8px; line-height: 1.5; }
.wb-lp-team-socials { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.wb-lp-team-social-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.wb-lp-gallery-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.wb-lp-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--c-radius, 12px);
  overflow: hidden;
  background: var(--c-surface);
  cursor: pointer;
}
.wb-lp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wb-lp-gallery-item:hover img { transform: scale(1.05); }
.wb-lp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}
.wb-lp-gallery-item:hover .wb-lp-gallery-overlay { opacity: 1; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.wb-lp-cta-wrapper {
  position: relative;
  overflow: hidden;
}
.wb-lp-cta-wrapper .wb-lp-text {
  color: rgba(255,255,255,.85);
}
.wb-lp-cta-wrapper .wb-lp-btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.wb-lp-cta-wrapper .wb-lp-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.wb-lp-cta-inner {
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.wb-lp-cta-deco {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.1), transparent 60%);
  top: -100px; right: -60px;
  pointer-events: none;
}
.wb-lp-cta-deco-2 {
  top: auto; right: auto;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(124,58,237,.1), transparent 60%);
}
.wb-lp-cta-rings {
  position: absolute;
  width: 200px; height: 200px;
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 0 40px rgba(255,255,255,.03), 0 0 0 80px rgba(255,255,255,.015);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.wb-lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.wb-lp-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.wb-lp-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}
.wb-lp-contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.wb-lp-contact-map {
  margin-top: 20px;
  border-radius: var(--c-radius, 12px);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.wb-lp-contact-form-wrap { }
.wb-lp-contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 14px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.wb-lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.wb-lp-faq-item {
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: var(--c-radius, 10px);
  overflow: hidden;
  transition: border-color .2s, box-shadow .3s;
}
.wb-lp-faq-item:hover {
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 4px 16px rgba(37,99,235,.06);
}
.wb-lp-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--c-surface, #f8fafc);
}
.wb-lp-faq-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--c-primary);
  opacity: .5;
  min-width: 22px;
}
.wb-lp-faq-toggle {
  margin-left: auto;
  color: var(--c-primary);
  font-size: 1.1rem;
  font-weight: 300;
}
.wb-lp-faq-a {
  padding: 0 20px 16px 20px;
  padding-left: 54px;
  font-size: 0.85rem;
  color: var(--c-muted, #6b7280);
  line-height: 1.65;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.wb-lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
  text-align: center;
}
.wb-lp-pricing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 14px);
  padding: 32px 24px;
  position: relative;
  transition: all .3s;
}
.wb-lp-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.wb-lp-pricing-featured {
  border: 2px solid var(--c-primary);
  box-shadow: 0 8px 32px rgba(37,99,235,.15);
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(37,99,235,.03) 0%, var(--c-surface) 100%);
}
.wb-lp-pricing-ribbon {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}
.wb-lp-pricing-badge {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--c-primary); margin-bottom: 8px;
}
.wb-lp-pricing-name {
  font-family: var(--c-font-h);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 8px;
}
.wb-lp-pricing-price { margin: 16px 0; }
.wb-lp-pricing-amount { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; }
.wb-lp-pricing-period { font-size: 0.82rem; color: var(--c-muted); }
.wb-lp-pricing-desc { font-size: 0.82rem; color: var(--c-muted); margin-bottom: 20px; }
.wb-lp-pricing-features {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wb-lp-pricing-feature {
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-lp-pricing-feature-icon { font-weight: 700; }
.wb-lp-pricing-feature-off { color: var(--c-muted); opacity: .6; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.wb-lp-blog-grid {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}
.wb-lp-blog-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 12px);
  overflow: hidden;
  transition: all .3s;
}
.wb-lp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.wb-lp-blog-thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: var(--c-surface);
}
.wb-lp-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.wb-lp-blog-card:hover .wb-lp-blog-thumb img { transform: scale(1.05); }
.wb-lp-blog-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--c-surface), rgba(37,99,235,.05));
}
.wb-lp-blog-category {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}
.wb-lp-blog-body { padding: 20px; }
.wb-lp-blog-title { font-family: var(--c-font-h); font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.wb-lp-blog-excerpt { font-size: 0.82rem; color: var(--c-muted); line-height: 1.55; }
.wb-lp-blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.wb-lp-blog-date { font-size: 0.72rem; color: var(--c-muted); }
.wb-lp-blog-read-more { font-size: 0.78rem; color: var(--c-primary); font-weight: 600; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.wb-lp-video-wrap {
  border-radius: var(--c-radius, 14px);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.wb-lp-video-placeholder {
  text-align: center;
  color: #666;
}
.wb-lp-video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.wb-lp-footer-wrap {
  background: #0f172a;
  color: #e2e8f0;
  padding: 56px 0 0;
}
.wb-lp-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.wb-lp-footer-brand { flex: 1; min-width: 220px; }
.wb-lp-footer-logo {
  font-family: var(--c-font-h);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.wb-lp-footer-tagline { font-size: 0.85rem; color: #94a3b8; line-height: 1.65; }
.wb-lp-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.wb-lp-footer-social-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  font-size: 0.8rem;
}
.wb-lp-footer-col { min-width: 120px; }
.wb-lp-footer-col-title { font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; }
.wb-lp-footer-link {
  display: block;
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  padding: 4px 0;
  transition: color .2s, transform .2s;
}
.wb-lp-footer-link:hover {
  color: #e2e8f0;
  transform: translateX(3px);
}
.wb-lp-footer-bottom {
  margin-top: 40px;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}

/* ============================================================
   FEATURES SECTION (NEW)
   ============================================================ */
.wb-lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.wb-lp-feature-card {
  padding: 0;
  border-radius: var(--c-radius, 12px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.wb-lp-feature-card:hover {
  border-color: rgba(37,99,235,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
}
.wb-lp-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent, var(--c-primary)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.wb-lp-feature-card:hover::after { transform: scaleX(1); }
/* Feature image */
.wb-lp-feature-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.wb-lp-feature-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.wb-lp-feature-card:hover .wb-lp-feature-img {
  transform: scale(1.06);
}
.wb-lp-feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.04) 100%);
  pointer-events: none;
}
/* Feature text area */
.wb-lp-feature-card > .wb-lp-feature-icon,
.wb-lp-feature-card > .wb-lp-feature-title,
.wb-lp-feature-card > .wb-lp-feature-desc,
.wb-lp-feature-card > .wb-lp-feature-link {
  padding-left: 24px;
  padding-right: 24px;
}
.wb-lp-feature-icon {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}
.wb-lp-feature-title {
  font-family: var(--c-font-h);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.wb-lp-feature-desc { font-size: 0.85rem; color: var(--c-muted); line-height: 1.6; }
.wb-lp-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-primary);
  padding-bottom: 22px;
  margin-top: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.wb-lp-feature-card:hover .wb-lp-feature-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PARTNERS / LOGOS SECTION (NEW)
   ============================================================ */
.wb-lp-partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 16px;
}
.wb-lp-partner-item {
  min-width: 0; flex: 0 1 150px; height: 52px;
  border-radius: var(--c-radius, 12px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  transition: all .3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.wb-lp-partner-item:hover {
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 8px 24px rgba(37,99,235,.10);
  transform: translateY(-2px);
}
.wb-lp-partner-item img { max-height: 100%; max-width: 100%; object-fit: contain; filter: grayscale(1) opacity(.6); transition: filter .3s; }
.wb-lp-partner-item:hover img { filter: grayscale(0) opacity(1); }
.wb-lp-partner-has-logo svg { width: 100%; height: 100%; }
.wb-lp-partner-name {
  font-family: var(--c-font-h);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   PROCESS / STEPS SECTION (NEW)
   ============================================================ */
.wb-lp-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  position: relative;
}
.wb-lp-process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.wb-lp-process-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary, #7c3aed));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--c-font-h);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(37,99,235,.25);
  position: relative;
  z-index: 1;
  transition: transform .3s, box-shadow .3s;
}
.wb-lp-process-step:hover .wb-lp-process-number {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,99,235,.35);
}
.wb-lp-process-connector {
  position: absolute;
  left: 25px;
  top: 76px;
  width: 2px;
  height: calc(100% - 52px);
  background: linear-gradient(to bottom, var(--c-primary), var(--c-border));
  opacity: .3;
}
.wb-lp-process-step:last-child .wb-lp-process-connector { display: none; }
.wb-lp-process-content { flex: 1; padding-top: 6px; }
.wb-lp-process-title { font-family: var(--c-font-h); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.wb-lp-process-desc { font-size: 0.88rem; color: var(--c-muted); line-height: 1.6; }

/* ============================================================
   NEWSLETTER SECTION (NEW)
   ============================================================ */
.wb-lp-newsletter-wrapper {
  background: linear-gradient(135deg, rgba(37,99,235,.06) 0%, rgba(124,58,237,.04) 100%);
  border-top: 1px solid rgba(37,99,235,.1);
  border-bottom: 1px solid rgba(37,99,235,.1);
}
.wb-lp-newsletter-inner {
  text-align: center;
  max-width: 580px;
}
.wb-lp-newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.wb-lp-newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.wb-lp-newsletter-input {
  flex: 1;
  min-width: 0;
}
.wb-lp-newsletter-note {
  font-size: 0.72rem;
  color: var(--c-muted);
  margin-top: 10px;
}

/* ============================================================
   PORTFOLIO SECTION (NEW)
   ============================================================ */
.wb-lp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.wb-lp-portfolio-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius, 12px);
  overflow: hidden;
  transition: all .3s;
}
.wb-lp-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.wb-lp-portfolio-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.wb-lp-portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.wb-lp-portfolio-card:hover .wb-lp-portfolio-thumb img { transform: scale(1.08); }
.wb-lp-portfolio-thumb-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary, #7c3aed));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--c-font-h);
}
.wb-lp-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.wb-lp-portfolio-card:hover .wb-lp-portfolio-overlay { opacity: 1; }
.wb-lp-portfolio-view {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}
.wb-lp-portfolio-info { padding: 18px 20px; }
.wb-lp-portfolio-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-primary);
}
.wb-lp-portfolio-title { font-family: var(--c-font-h); font-size: 0.98rem; font-weight: 700; margin-top: 4px; }
.wb-lp-portfolio-desc { font-size: 0.8rem; color: var(--c-muted); margin-top: 6px; line-height: 1.5; }

/* ============================================================
   COUNTDOWN SECTION (NEW)
   ============================================================ */
.wb-lp-countdown-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}
.wb-sec-countdown .wb-lp-title { color: #f1f5f9; }
.wb-sec-countdown .wb-lp-subtitle { color: #94a3b8; }
.wb-lp-countdown-inner { text-align: center; max-width: 700px; }
.wb-lp-countdown-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.wb-lp-countdown-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 80px;
}
.wb-lp-countdown-num {
  font-family: var(--c-font-h);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
}
.wb-lp-countdown-unit {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-top: 4px;
}
.wb-lp-countdown-sep {
  font-size: 1.5rem;
  font-weight: 300;
  color: #475569;
}
.wb-lp-countdown-date {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #64748b;
}

/* ============================================================
   MAP SECTION (NEW)
   ============================================================ */
.wb-lp-map-wrap {
  border-radius: var(--c-radius, 14px);
  overflow: hidden;
  height: 350px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  margin-top: 8px;
}
.wb-lp-map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.88rem;
}
.wb-lp-map-pin { font-size: 3rem; margin-bottom: 12px; }

/* ── Highlights (legacy compat) ────────────────────────────── */
.wb-lp-highlights {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wb-lp-highlights li {
  font-size: 0.85rem;
  color: var(--c-text, #1a1a1a);
}

/* ── Inline editing in canvas ─────────────────────────────── */
[data-inline-field] {
  outline: none;
  cursor: text;
  border-radius: 3px;
  transition: box-shadow .15s;
}
[data-inline-field]:hover {
  box-shadow: 0 0 0 2px rgba(37,99,235,.25);
}
[data-inline-field]:focus {
  box-shadow: 0 0 0 2px rgba(37,99,235,.5);
  background: rgba(37,99,235,.04);
}

/* ── Drag-and-drop section indicators ─────────────────────── */
.wb-section-wrapper {
  position: relative;
  cursor: pointer;
}
.wb-section-wrapper.wb-drag-over::before {
  content: '';
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 4px;
  background: var(--wb-chrome-active);
  border-radius: 2px;
  z-index: 30;
}
.wb-section-wrapper.wb-dragging {
  opacity: 0.4;
  outline: 2px dashed var(--wb-chrome-active);
}

/* ── Utility ─────────────────────────────────────────────────── */
.wb-hidden { display: none !important; }
.wb-divider { height: 1px; background: var(--wb-chrome-border); margin: 4px 0; }
.wb-text-muted { color: var(--wb-chrome-muted); }
.wb-text-danger { color: var(--wb-chrome-danger); }
.wb-text-success { color: var(--wb-chrome-success); }

/* ============================================================
   ONBOARDING HERO (first-run empty state)
   ============================================================ */
.wb-onboarding-hero {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 40px 52px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,28,72,.96) 0%, rgba(10,14,38,.98) 100%);
  border: 1px solid rgba(60,80,160,.3);
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,.38), inset 0 1px 0 rgba(100,130,255,.07);
}
.wb-onboarding-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  border-radius: 24px 24px 0 0;
}
.wb-onb-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wb-onb-glow-1 {
  width: 500px; height: 500px;
  top: -200px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59,130,246,.1) 0%, transparent 68%);
}
.wb-onb-glow-2 {
  width: 300px; height: 300px;
  top: 20px; left: -80px;
  background: radial-gradient(circle, rgba(139,92,246,.09) 0%, transparent 68%);
}
.wb-onb-glow-3 {
  width: 300px; height: 300px;
  top: 20px; right: -80px;
  background: radial-gradient(circle, rgba(6,182,212,.09) 0%, transparent 68%);
}
.wb-onb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59,130,246,.14), rgba(139,92,246,.1));
  border: 1px solid rgba(96,165,250,.22);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wb-onboarding-icon {
  width: 82px; height: 82px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 55%, #06b6d4 100%);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff;
  margin: 0 auto 26px;
  box-shadow: 0 16px 48px rgba(59,130,246,.38), 0 0 0 10px rgba(59,130,246,.07);
}
.wb-onboarding-icon i {
  animation: wb-globe-spin 6s linear infinite;
  display: inline-block;
}
@keyframes wb-globe-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.wb-onboarding-hero h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #e8f0ff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.wb-onb-title-accent {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wb-onboarding-hero > p {
  font-size: 0.92rem;
  color: rgba(200,218,255,.85);
  max-width: 500px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.wb-onboarding-steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 36px;
  max-width: 680px;
  flex-wrap: wrap;
}
.wb-onboarding-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  background: linear-gradient(160deg, rgba(28,38,88,.72), rgba(16,22,56,.82));
  border: 1px solid rgba(60,80,155,.3);
  border-radius: 16px;
  padding: 22px 18px 20px;
  min-width: 160px;
  max-width: 210px;
  flex: 1;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wb-onboarding-step:hover {
  border-color: rgba(96,165,250,.38);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.wb-onboarding-step-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.wb-onboarding-step:nth-child(1) .wb-onboarding-step-icon { background: linear-gradient(135deg,rgba(59,130,246,.25),rgba(37,99,235,.15)); color: #93c5fd; border: 1px solid rgba(59,130,246,.2); }
.wb-onboarding-step:nth-child(2) .wb-onboarding-step-icon { background: linear-gradient(135deg,rgba(139,92,246,.25),rgba(109,40,217,.15)); color: #c4b5fd; border: 1px solid rgba(139,92,246,.2); }
.wb-onboarding-step:nth-child(3) .wb-onboarding-step-icon { background: linear-gradient(135deg,rgba(6,182,212,.25),rgba(14,165,233,.15)); color: #7dd3fc; border: 1px solid rgba(6,182,212,.2); }
.wb-onboarding-step-num {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: rgba(148,163,184,.75);
}
.wb-onboarding-step strong {
  display: block;
  font-size: 0.85rem;
  color: #dce8ff;
  font-weight: 700;
}
.wb-onboarding-step span {
  font-size: 0.73rem;
  color: rgba(180,200,230,.78);
  line-height: 1.5;
}
.wb-onb-cta {
  padding: 13px 40px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 28px rgba(37,99,235,.38) !important;
  letter-spacing: 0.1px;
}
.wb-onb-hint {
  margin-top: 20px;
  font-size: 0.71rem;
  color: rgba(148,163,184,.68);
  letter-spacing: 0.2px;
}

/* ── Section toolbar polish ──────────────────────────────────── */
.wb-section-toolbar-label {
  font-size: 0.7rem;
  opacity: 0.85;
  padding: 0 4px;
  white-space: nowrap;
}
.wb-drag-handle {
  cursor: grab !important;
}
.wb-drag-handle:active {
  cursor: grabbing !important;
}

/* ── Props panel collapsing ──────────────────────────────────── */
.wb-prop-group.collapsed .wb-prop-group-body { display: none; }
.wb-prop-group.collapsed .wb-prop-group-header i.fa { transform: rotate(-90deg); }
.wb-prop-group-header i.fa { transition: transform 0.18s; }

/* ── Repeat item body shown/hidden via inline style (JS) ─────── */
.wb-repeat-item-header { padding: 8px 10px; }
.wb-repeat-item-body   { padding: 10px 10px 6px; }

/* ── Theme panel helpers ─────────────────────────────────────── */
.wb-panel-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--wb-chrome-muted);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--wb-chrome-border);
}
.wb-theme-section { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.wb-color-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--wb-chrome-text);
}
.wb-color-row label { flex: 1; }
.wb-color-row input[type=color] { width: 40px; height: 26px; border: none; cursor: pointer; border-radius: 4px; }

/* ── wb-field-inline (colour fields next to label) ───────────── */
.wb-field-inline { flex-direction: row; align-items: center; justify-content: space-between; }
.wb-field-inline input[type=color] { width: 44px; height: 28px; border: none; cursor: pointer; border-radius: 4px; }

/* ── Stats card icon accent ──────────────────────────────────── */
.wb-stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--wb-chrome-active) 0%, #7c3aed 100%);
  color: #fff;
  flex-shrink: 0;
}

/* ============================================================
   PAGE TABS (canvas header)
   ============================================================ */
#wb-canvas-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
#wb-page-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  overflow-x: auto;
  padding: 0 4px;
}
#wb-page-tabs::-webkit-scrollbar { height: 0; }
.wb-page-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--wb-chrome-muted);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--wb-trans);
}
.wb-page-tab:hover { background: var(--wb-chrome-hover); color: var(--wb-chrome-text); }
.wb-page-tab.active {
  background: rgba(37,99,235,.18);
  color: var(--wb-chrome-active);
}

/* ============================================================
   ZOOM CONTROLS (canvas header)
   ============================================================ */
.wb-zoom-controls {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding-right: 8px;
}
.wb-zoom-btn {
  width: 24px; height: 24px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--wb-chrome-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: var(--wb-trans);
}
.wb-zoom-btn:hover { background: var(--wb-chrome-hover); color: var(--wb-chrome-text); }
.wb-zoom-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--wb-chrome-muted);
  min-width: 40px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.wb-zoom-label:hover { color: var(--wb-chrome-text); }

/* ================================================================
   PREMIUM REDESIGN — MODERN WEBSITE BUILDER
   ================================================================ */

/* ── Dashboard Hero Banner ─────────────────────────────────────── */
.wb-dash-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(130deg,
    rgba(15,23,60,.96) 0%,
    rgba(30,18,74,.95) 45%,
    rgba(10,40,80,.95) 100%);
  border: 1px solid rgba(99,130,255,.28);
  box-shadow: 0 8px 48px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.05);
}
.wb-dash-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wb-dash-hero-glow-1 {
  top: -100px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(99,102,241,.22), transparent 65%);
}
.wb-dash-hero-glow-2 {
  bottom: -80px; left: 30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(14,165,233,.18), transparent 65%);
}
.wb-dash-hero-glow-3 {
  top: 10px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(236,72,153,.12), transparent 65%);
}
.wb-dash-hero-left {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.wb-dash-hero-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  box-shadow: 0 12px 40px rgba(99,102,241,.45), inset 0 0 0 1px rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.wb-dash-hero-text { flex: 1; min-width: 0; }
.wb-dash-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(99,102,241,.22), rgba(14,165,233,.18));
  border: 1px solid rgba(99,130,255,.3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 10px;
}
.wb-dash-hero-badge .fa { font-size: 0.65rem; color: #f59e0b; }
.wb-dash-hero .wb-dash-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #f0f4ff;
  margin: 0;
}
.wb-dash-title-accent {
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wb-dash-hero .wb-dash-subtitle {
  font-size: 0.875rem;
  color: rgba(180,200,255,.7);
  margin-top: 8px;
  max-width: 500px;
  line-height: 1.65;
}
.wb-dash-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(15,23,42,.42);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 10px 30px rgba(15,23,42,.18);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 300px;
}
.wb-dash-brand-logo {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(34,211,238,.18));
}
.wb-dash-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.wb-dash-brand-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.wb-dash-brand-meta strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-dash-brand-meta span {
  font-size: 0.74rem;
  color: rgba(226,232,240,.68);
  margin-top: 3px;
}
.wb-dash-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  z-index: 1;
  flex-shrink: 0;
  width: 300px;
  max-width: 100%;
}
.wb-dash-hero .wb-btn { flex-shrink: 0; }
.wb-dash-hero-actions .wb-btn {
  align-self: stretch;
  justify-content: flex-start;
}
.wb-dash-hero-actions .wb-dash-brand { align-self: stretch; }
.wb-dash-hero-hint {
  font-size: 0.72rem;
  color: rgba(148,163,184,.65);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  align-self: stretch;
}
.wb-dash-hero-hint .fa { color: #f59e0b; font-size: 0.68rem; }

/* ── Large button variant ──────────────────────────────────────── */
.wb-btn-lg { padding: 11px 26px; font-size: 0.88rem; border-radius: 10px; }

/* ── Stat Cards ────────────────────────────────────────────────── */
.wb-dash-overview-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2.5fr;
  gap: 14px;
  margin-bottom: 24px;
  align-items: stretch;
}
.wb-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid rgba(99,130,255,.18);
  background: linear-gradient(135deg, rgba(20,28,60,.9) 0%, rgba(14,20,48,.95) 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
  transition: var(--wb-trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.wb-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
}
.wb-stat-card-total::before    { background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%); }
.wb-stat-card-published::before { background: linear-gradient(90deg, #22c55e 0%, #10b981 100%); }
.wb-stat-card-draft::before    { background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%); }
.wb-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
}
.wb-stat-card-total::after    { background: linear-gradient(90deg, var(--wb-chrome-active) 0%, #7c3aed 100%); }
.wb-stat-card-published::after { background: linear-gradient(90deg, #22c55e 0%, #10b981 100%); }
.wb-stat-card-draft::after    { background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%); }
.wb-stat-card:hover {
  border-color: rgba(99,130,255,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.wb-stat-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wb-stat-card-total    .wb-stat-card-icon { background: linear-gradient(135deg,rgba(59,130,246,.2),rgba(139,92,246,.15)); color: #93c5fd; }
.wb-stat-card-published .wb-stat-card-icon { background: linear-gradient(135deg,rgba(34,197,94,.2),rgba(16,185,129,.15));  color: #86efac; }
.wb-stat-card-draft    .wb-stat-card-icon { background: linear-gradient(135deg,rgba(245,158,11,.2),rgba(249,115,22,.15)); color: #fcd34d; }
.wb-stat-card-body { flex: 1; min-width: 0; }
.wb-stat-card-value {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--wb-chrome-text);
}
.wb-stat-card-total    .wb-stat-card-value { background: linear-gradient(90deg,#93c5fd,#c4b5fd); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.wb-stat-card-published .wb-stat-card-value { background: linear-gradient(90deg,#86efac,#6ee7b7); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.wb-stat-card-draft    .wb-stat-card-value { background: linear-gradient(90deg,#fcd34d,#fdba74); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.wb-stat-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--wb-chrome-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* ── Dashboard panels refresh ─────────────────────────────────── */
.wb-dashboard-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(16,22,50,.98) 0%, rgba(10,14,30,.99) 100%);
  border: 1px solid rgba(50,65,110,.55);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 36px rgba(0,0,0,.32), inset 0 1px 0 rgba(120,140,255,.06);
  overflow: hidden;
}
.wb-dashboard-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  border-radius: 20px 20px 0 0;
  opacity: .65;
}
.wb-dashboard-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.wb-panel-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wb-panel-title-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(139,92,246,.2));
  border: 1px solid rgba(96,165,250,.2);
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.wb-dashboard-panel-header h3 {
  font-size: 0.97rem;
  font-weight: 700;
  background: linear-gradient(90deg, #dce8ff 55%, #8ba3cf 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.wb-dashboard-panel-header p {
  color: rgba(148,163,184,.65);
  font-size: 0.74rem;
  margin-top: 0;
  line-height: 1.4;
}
.wb-activity-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 6px #22d3ee, 0 0 14px rgba(34,211,238,.35);
  animation: wb-live-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes wb-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.65); }
}

/* ── Activity items ────────────────────────────────────────────── */
.wb-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 12px;
  border-radius: 12px;
  border-left: 3px solid transparent;
  margin-bottom: 3px;
  transition: background 0.18s, border-color 0.18s;
}
.wb-activity-item:last-child { margin-bottom: 0; }
.wb-activity-item:hover { background: rgba(255,255,255,.04); }
.wb-activity-item[data-label="Published"] { border-left-color: rgba(34,197,94,.5); }
.wb-activity-item[data-label="Published"] .wb-activity-icon {
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(16,185,129,.14));
  border-color: rgba(34,197,94,.28);
  color: #4ade80;
}
.wb-activity-item[data-label="Edited"] { border-left-color: rgba(59,130,246,.5); }
.wb-activity-item[data-label="Edited"] .wb-activity-icon {
  background: linear-gradient(135deg, rgba(59,130,246,.22), rgba(14,165,233,.14));
  border-color: rgba(96,165,250,.28);
  color: #93c5fd;
}
.wb-activity-item[data-label="Checkpoint"] { border-left-color: rgba(245,158,11,.5); }
.wb-activity-item[data-label="Checkpoint"] .wb-activity-icon {
  background: linear-gradient(135deg, rgba(245,158,11,.22), rgba(234,179,8,.14));
  border-color: rgba(253,224,71,.28);
  color: #fcd34d;
}
.wb-activity-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(14,165,233,.1));
  border: 1px solid rgba(96,165,250,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  color: #93c5fd;
  transition: background 0.18s, border-color 0.18s;
}
.wb-activity-copy { flex: 1; min-width: 0; }
.wb-activity-title {
  font-size: 0.83rem;
  color: rgba(220,228,255,.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-activity-title strong { color: #e2e8ff; font-weight: 600; }
.wb-activity-meta {
  font-size: 0.72rem;
  color: rgba(148,163,184,.55);
  margin-top: 2px;
}
.wb-activity-item .wb-btn-xs {
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
.wb-activity-item:hover .wb-btn-xs { opacity: 1; }
.wb-empty-panel {
  padding: 28px 16px;
  border: 1px dashed rgba(60,80,130,.45);
  border-radius: 14px;
  color: rgba(148,163,184,.45);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}

/* ── Template Gallery ─────────────────────────────────────────── */
.wb-tpl-gallery {
  margin-bottom: 36px;
}
.wb-tpl-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.wb-tpl-gallery-header > :first-child {
  flex: 1 1 340px;
  min-width: 0;
}
.wb-tpl-gallery-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(100deg, #e2e8f0 55%, #64748b 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.wb-tpl-gallery-sub {
  color: var(--wb-chrome-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.wb-tpl-filter-row {
  flex: 1 1 460px;
  min-width: 0;
  max-width: 100%;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wb-tpl-filter-row::-webkit-scrollbar { display: none; }
.wb-tpl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
/* Template gallery card */
.wb-tpl-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--wb-chrome-border);
  background: var(--wb-chrome-surface);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.wb-tpl-card:hover {
  border-color: rgba(37,99,235,.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(37,99,235,.2);
}
.wb-tpl-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0f172a;
}
.wb-tpl-card-thumb svg { width: 100%; height: 100%; display: block; }
.wb-tpl-card-thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.wb-tpl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,12,26,.5) 0%, rgba(9,12,26,.85) 100%);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 16px;
}
.wb-tpl-card:hover .wb-tpl-card-overlay { opacity: 1; }
.wb-tpl-overlay-btn {
  width: 140px;
  justify-content: center;
  font-size: 0.82rem;
  padding: 9px 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}
.wb-tpl-use-btn {
  width: 140px;
  justify-content: center;
  font-size: 0.82rem;
  padding: 9px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  transition: var(--wb-trans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.wb-tpl-use-btn:hover { background: rgba(255,255,255,.2); }
.wb-tpl-card-body {
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.wb-tpl-card-info { min-width: 0; flex: 1; }
.wb-tpl-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wb-chrome-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-tpl-card-industry {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--wb-chrome-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}
.wb-tpl-card-badge {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(124,58,237,.2), rgba(37,99,235,.18));
  border: 1px solid rgba(124,58,237,.3);
  color: #c4b5fd;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
@media (max-width: 1200px) { .wb-tpl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .wb-tpl-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Site cards enhanced ───────────────────────────────────────── */
.wb-sites-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.wb-site-card {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: all 0.2s ease;
}
.wb-site-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28), 0 0 0 1px rgba(37,99,235,.25);
}
.wb-site-card-thumb {
  border-radius: 16px 16px 0 0;
  height: 148px;
}
.wb-site-card-thumb-inner {
  width: 100%; height: 100%;
  border-radius: 16px 16px 0 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
}
.wb-site-card-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wb-chrome-success);
  box-shadow: 0 0 6px var(--wb-chrome-success);
}
.wb-site-card-status-dot.draft { background: var(--wb-chrome-muted); box-shadow: none; }
.wb-site-card-body { padding: 16px 18px; }
.wb-site-card-title { font-size: 0.93rem; font-weight: 700; }

/* ── Site card "New" tile ──────────────────────────────────────── */
.wb-site-card-new {
  border-radius: 16px;
  border: 2px dashed rgba(37,99,235,.3);
  background: rgba(37,99,235,.03);
}
.wb-site-card-new:hover {
  border-color: var(--wb-chrome-active);
  background: rgba(37,99,235,.07);
  box-shadow: 0 12px 32px rgba(37,99,235,.12);
}

/* ── Builder toolbar polish ────────────────────────────────────── */
#wb-toolbar {
  background: rgba(22,25,42,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(40,44,64,.8);
  box-shadow: 0 2px 16px rgba(0,0,0,.22);
}
#wb-site-name-display {
  font-size: 0.88rem;
  font-weight: 700;
}

/* ── Left panel polish ─────────────────────────────────────────── */
#wb-left-panel    { background: rgba(16,19,32,.98); }
#wb-right-panel   { background: rgba(16,19,32,.98); }
.wb-panel-tabs    { background: rgba(22,25,42,.9); }

/* ── Canvas header polish ──────────────────────────────────────── */
#wb-canvas-header {
  background: rgba(26,29,46,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(40,44,64,.6);
}

/* ── Canvas scroll background ──────────────────────────────────── */
#wb-canvas-scroll {
  background: radial-gradient(ellipse at 50% 25%, rgba(37,99,235,.04), transparent 55%), var(--wb-canvas-bg, #1a1d2a);
}

/* ── Section wrapper hover glow ────────────────────────────────── */
.wb-section-wrapper:hover .wb-section-overlay {
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 2px rgba(37,99,235,.07);
}

/* ── Page tab active glow ──────────────────────────────────────── */
.wb-page-tab.active {
  background: rgba(37,99,235,.18);
  color: #60a5fa;
  box-shadow: 0 0 10px rgba(37,99,235,.18);
}

/* ── Modal glass refinements ───────────────────────────────────── */
.wb-modal {
  background: rgba(22,25,42,.98);
  backdrop-filter: blur(16px);
  border-color: rgba(42,46,68,.9);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.04);
}
.wb-modal-overlay { backdrop-filter: blur(5px); }
.wb-modal-header {
  border-bottom-color: rgba(40,44,64,.8);
}

/* ── Toast refinements ─────────────────────────────────────────── */
.wb-toast {
  background: rgba(22,25,42,.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(40,44,64,.8);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.wb-toast.success { border-color: rgba(34,197,94,.35); }
.wb-toast.error   { border-color: rgba(239,68,68,.35); }
.wb-toast.info    { border-color: rgba(59,130,246,.35); }

/* ── Prop group border radius ──────────────────────────────────── */
.wb-prop-group { border-radius: 10px; border-color: rgba(40,44,64,.75); }
.wb-prop-group-header { border-radius: 10px 10px 0 0; }
.wb-prop-group.collapsed .wb-prop-group-header { border-radius: 10px; }

/* ── Onboarding hero refinements ───────────────────────────────── */
.wb-onboarding-hero {
  border-color: rgba(60,80,160,.3);
}

/* ── Wizard step header ────────────────────────────────────────── */
.wb-wizard-steps .wb-wizard-step.active {
  color: var(--wb-chrome-active);
}
.wb-wizard-steps .wb-wizard-step.active::before {
  background: var(--wb-chrome-active);
  box-shadow: 0 0 8px rgba(37,99,235,.4);
}


/* ============================================================
   COMMAND PALETTE  (Ctrl+K)
   ============================================================ */
.wb-cmd-palette {
  width: 90%;
  max-width: 560px;
  background: var(--wb-chrome-surface);
  border: 1px solid var(--wb-chrome-border);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  overflow: hidden;
  margin-top: -10vh;
}
.wb-cmd-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--wb-chrome-border);
}
.wb-cmd-search-icon {
  color: var(--wb-chrome-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.wb-cmd-search {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--wb-chrome-text);
  font-size: 0.92rem;
  font-family: inherit;
}
.wb-cmd-search::placeholder { color: var(--wb-chrome-border); }
.wb-cmd-kbd {
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--wb-chrome-border);
  background: var(--wb-chrome-bg);
  color: var(--wb-chrome-muted);
  font-size: 0.65rem;
  font-family: inherit;
}
.wb-cmd-results {
  max-height: 340px;
  overflow-y: auto;
  padding: 6px;
}
.wb-cmd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--wb-chrome-text);
  transition: background 0.1s;
}
.wb-cmd-item i {
  width: 20px;
  text-align: center;
  color: var(--wb-chrome-muted);
  font-size: 0.82rem;
}
.wb-cmd-item:hover,
.wb-cmd-item.active {
  background: rgba(37,99,235,.12);
}
.wb-cmd-item.active i { color: var(--wb-chrome-active); }
.wb-cmd-item mark {
  background: rgba(37,99,235,.25);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}

/* ============================================================
   SERVICE / FEATURE CARD IMAGE HEADER
   ============================================================ */
.wb-lp-svc-card-img-wrap {
  width: calc(100% + 56px);
  height: 168px;
  margin: -28px -28px 20px;
  overflow: hidden;
  border-radius: var(--c-radius, 12px) var(--c-radius, 12px) 0 0;
  flex-shrink: 0;
}
.wb-lp-svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.wb-lp-service-card:hover .wb-lp-svc-card-img,
.wb-lp-feature-card:hover  .wb-lp-svc-card-img { transform: scale(1.05); }

/* ============================================================
   FOOTER — REDESIGNED WITH BRAND-COLOUR SOCIAL ICONS
   ============================================================ */
.wb-lp-footer-upper {
  padding: 56px 0 40px;
  background: #0f172a;
}
.wb-lp-footer-upper-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.wb-lp-footer-soc-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.wb-lp-footer-soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.88rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  flex-shrink: 0;
}
.wb-lp-footer-soc-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
}
.wb-lp-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.wb-lp-footer-legal-links {
  display: flex;
  gap: 20px;
}
.wb-lp-footer-legal-links a {
  font-size: 0.75rem;
  color: #475569;
  text-decoration: none;
  transition: color .2s;
}
.wb-lp-footer-legal-links a:hover { color: #94a3b8; }

/* ============================================================
   INDUSTRY CATEGORY CAROUSEL ROWS
   ============================================================ */
.wb-cat-all-rows {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.wb-cat-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.wb-cat-row-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.wb-cat-row-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wb-chrome-text);
  letter-spacing: -0.02em;
}
.wb-cat-row-count {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--wb-chrome-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-left: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--wb-chrome-border);
  padding: 2px 7px;
  border-radius: 99px;
}
.wb-cat-view-all-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: #60a5fa;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 7px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.wb-cat-view-all-btn:hover {
  background: rgba(37,99,235,.1);
  color: #93c5fd;
}
.wb-cat-carousel { position: relative; }
.wb-cat-carousel-single .wb-cat-carousel-track {
  overflow: visible;
}
.wb-cat-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.wb-cat-carousel-track::-webkit-scrollbar { display: none; }
.wb-cat-carousel-track .wb-tpl-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 210px;
  max-width: 320px;
  scroll-snap-align: start;
}
.wb-cat-carousel-single .wb-cat-carousel-track .wb-tpl-card {
  flex-basis: min(320px, 100%);
}
@media (max-width: 1180px) {
  .wb-cat-carousel-track .wb-tpl-card { flex: 0 0 calc(33.33% - 11px); }
}
@media (max-width: 820px) {
  .wb-cat-carousel-track .wb-tpl-card { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 520px) {
  .wb-cat-carousel-track .wb-tpl-card { flex: 0 0 calc(80% - 8px); }
}
.wb-cat-arr {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--wb-chrome-surface);
  border: 1px solid var(--wb-chrome-border);
  color: var(--wb-chrome-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
}
.wb-cat-carousel:hover .wb-cat-arr {
  opacity: 1;
  pointer-events: auto;
}
.wb-cat-arr:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,.45);
}
.wb-cat-arr-prev { left: -18px; }
.wb-cat-arr-next { right: -18px; }
.wb-cat-arr:disabled { opacity: 0 !important; pointer-events: none !important; }

@media (max-width: 1080px) {
  .wb-tpl-filter-row {
    justify-content: flex-start;
    flex-basis: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERRIDES — Website Builder-specific
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .wb-dash-overview-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .wb-lp-hero-split {
    flex-direction: column !important;
    gap: 24px !important;
  }
}
@media (max-width: 768px) {
  .wb-lp-form-row {
    grid-template-columns: 1fr !important;
  }
  .wb-lp-portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 600px) {
  .wb-dash-overview-row {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 520px) {
  .wb-tpl-grid {
    grid-template-columns: 1fr !important;
  }
}

