/* ── Futurobots Public Styles ────────────────────────────────────────────── */

/* ── Variables ─────────────────────────────────────────────────────────── */
/*
 * Astra-aware: we use Astra's CSS variables where they exist,
 * with safe fallbacks so the plugin works on any theme.
 * --ast-global-color-* are Astra's palette variables (available in Astra 3+).
 */
:root {
    --fbm-primary:      #0066FF;
    --fbm-primary-dark: #0050CC;
    --fbm-bg:           #f7f8fc;
    --fbm-card-bg:      #ffffff;
    --fbm-border:       #e2e8f0;
    /* Inherit Astra's body text color if available, otherwise use our own */
    --fbm-text:         var(--ast-global-color-0, #1a202c);
    --fbm-muted:        var(--ast-global-color-2, #64748b);
    --fbm-success:      #16a34a;
    --fbm-radius:       10px;
    --fbm-shadow:       0 2px 12px rgba(0,0,0,0.08);
}

/* ════════════════════════════════════════════════════════════════════════
   RESERVATION PAGE
════════════════════════════════════════════════════════════════════════ */

/* ── Astra button override — fix white-on-white bug ── */
#fbm-reservation-wrap .fbm-cat-tab,
#fbm-reservation-wrap .fbm-robot-card,
#fbm-reservation-wrap .fbm-model-card,
#fbm-reservation-wrap .fbm-duration-card,
#fbm-reservation-wrap .fbm-coverage-card,
#fbm-reservation-wrap .fbm-delivery-week-card {
    color: #1a202c;
    color: var(--fbm-text);
}

#fbm-reservation-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    font-family: var(--ast-body-font-family, inherit);
    font-size:   var(--ast-body-font-size, inherit);
    color:       var(--fbm-text);
}

/* ── Progress bar (4 dots, no numbers) ─────────────────────────────── */
.fbm-progress {
    margin-bottom: 32px;
    padding: 0 8px;
}
.fbm-progress-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
}
.fbm-prog-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px;
    flex-shrink: 0;
}
.fbm-prog-dot {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
    min-height: 14px;
    border-radius: 50% !important;
    background: var(--fbm-border) !important;
    border: none !important;
    display: block !important;
    transition: background 0.25s, box-shadow 0.25s;
    padding: 0 !important;
    line-height: 1 !important;
}
.fbm-prog-step span {
    font-size: 12px !important;
    color: var(--fbm-muted) !important;
    font-weight: 500 !important;
    white-space: nowrap;
    background: none !important;
    padding: 0 !important;
}
.fbm-prog-line {
    flex: 1 !important;
    height: 2px !important;
    min-width: 20px;
    background: var(--fbm-border);
    margin: 0 6px;
    margin-bottom: 22px;
    transition: background 0.25s;
    display: block !important;
}
/* Active */
.fbm-prog-step.active .fbm-prog-dot {
    background: var(--fbm-primary) !important;
    box-shadow: 0 0 0 4px rgba(0,102,255,0.18);
    width: 16px !important;
    height: 16px !important;
}
.fbm-prog-step.active span { color: var(--fbm-primary) !important; font-weight: 700 !important; }
/* Completed */
.fbm-prog-step.completed .fbm-prog-dot { background: var(--fbm-success) !important; }
.fbm-prog-step.completed + .fbm-prog-line { background: var(--fbm-success); }
.fbm-prog-step.completed span { color: var(--fbm-success) !important; }

/* ── Price bar ──────────────────────────────────────────────────────── */
#fbm-price-bar {
    background: var(--fbm-primary);
    color: #fff;
    border-radius: var(--fbm-radius);
    padding: 12px 20px;
    margin-bottom: 24px;
}
.fbm-price-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fbm-price-bar-model { font-size: 14px; opacity: 0.9; }
.fbm-price-bar-total { font-size: 18px; }

/* ── Steps ──────────────────────────────────────────────────────────── */
.fbm-step { display: none; }
.fbm-step.active { display: block; }

.fbm-step-card {
    background: #fff;
    border: 1px solid var(--fbm-border);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
}

.fbm-step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--fbm-text);
}
.fbm-step-subtitle {
    color: var(--fbm-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

/* ── Category tabs ──────────────────────────────────────────────────── */
.fbm-cat-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.fbm-cat-tab {
    background: var(--fbm-bg);
    border: 2px solid var(--fbm-border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.18s;
    color: var(--fbm-text) !important;
}
.fbm-cat-tab:hover { border-color: var(--fbm-primary); color: var(--fbm-primary) !important; }
.fbm-cat-tab.active { background: var(--fbm-primary); border-color: var(--fbm-primary); color: #fff !important; }

/* ── Robot card selected state ──────────────────────────────────────── */
.fbm-robot-card.selected {
    border-color: var(--fbm-primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
.fbm-robot-card.selected .fbm-robot-name { color: var(--fbm-primary); }

/* ── Model panel ────────────────────────────────────────────────────── */
#fbm-model-panel {
    background: var(--fbm-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
}
.fbm-model-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
#fbm-model-panel-title { font-size: 16px; font-weight: 700; color: var(--fbm-text); }
.fbm-model-panel-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--fbm-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    color: var(--fbm-muted) !important;
}
.fbm-model-panel-close:hover { color: var(--fbm-text) !important; }

/* ── Step 1 hint ────────────────────────────────────────────────────── */
.fbm-step1-hint {
    text-align: center;
    color: var(--fbm-muted);
    font-size: 14px;
    padding: 16px 0 0;
    font-style: italic;
}

/* ── Plan sections (step 2) ─────────────────────────────────────────── */
.fbm-plan-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--fbm-border);
}
.fbm-plan-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.fbm-plan-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--fbm-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fbm-plan-section-sub {
    font-size: 14px;
    color: var(--fbm-muted);
    margin-bottom: 16px;
    margin-top: 0;
}
.fbm-optional-tag {
    font-size: 11px;
    font-weight: 600;
    background: #f0fdf4;
    color: var(--fbm-success);
    border: 1px solid #bbf7d0;
    border-radius: 50px;
    padding: 2px 10px;
}

/* ── Selected model info (top of step 2) ────────────────────────────── */
.fbm-selected-info { margin-bottom: 28px; }
.fbm-sel-robot {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--fbm-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 10px;
    padding: 14px 16px;
}
.fbm-sel-robot img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.fbm-sel-robot strong { display: block; font-size: 16px; font-weight: 700; color: var(--fbm-text); }
.fbm-sel-robot span { font-size: 14px; color: var(--fbm-primary); font-weight: 600; }

/* ── Duration note ──────────────────────────────────────────────────── */
.fbm-duration-note { font-size: 11px; color: var(--fbm-success); margin-top: 6px; font-weight: 600; }

/* ── Coverage desc ──────────────────────────────────────────────────── */
.fbm-coverage-desc { font-size: 13px; color: var(--fbm-muted); line-height: 1.6; margin-top: 8px; }

/* ── Upgrade desc ───────────────────────────────────────────────────── */
.fbm-upgrade-desc { font-size: 13px; color: var(--fbm-muted); margin-top: 3px; }
.fbm-no-upgrades { color: var(--fbm-muted); font-size: 14px; font-style: italic; }

/* ── Review note ────────────────────────────────────────────────────── */
.fbm-review-note {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #0369a1;
    margin-bottom: 20px;
}

/* ── Selected states ────────────────────────────────────────────────── */
.fbm-duration-card.selected,
.fbm-coverage-card.selected {
    border-color: var(--fbm-primary);
    background: #f0f6ff;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}
.fbm-model-card.selected {
    border-color: var(--fbm-primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}

/* ── Category cards ─────────────────────────────────────────────────── */
.fbm-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.fbm-category-card {
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    padding: 32px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    font-family: inherit;
}
.fbm-category-card:hover {
    border-color: var(--fbm-primary);
    box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
    transform: translateY(-2px);
}
.fbm-category-name  { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.fbm-category-count { font-size: 13px; color: var(--fbm-muted); }

/* ── Robot cards ────────────────────────────────────────────────────── */
.fbm-robot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.fbm-robot-card {
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: inherit;
    padding: 0;
}
.fbm-robot-card:hover  { border-color: var(--fbm-primary); transform: translateY(-2px); box-shadow: var(--fbm-shadow); }
.fbm-robot-card img, .fbm-robot-no-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    background: var(--fbm-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
}
.fbm-robot-info         { padding: 12px 14px; }
.fbm-robot-manufacturer { font-size: 11px; color: var(--fbm-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.fbm-robot-name         { font-size: 16px; font-weight: 700; margin: 2px 0 4px; }
.fbm-robot-count        { font-size: 12px; color: var(--fbm-primary); }

/* ── Model cards ────────────────────────────────────────────────────── */
.fbm-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.fbm-model-card {
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: inherit;
    padding: 0;
}
.fbm-model-card:hover { border-color: var(--fbm-primary); transform: translateY(-2px); box-shadow: var(--fbm-shadow); }
.fbm-model-card img, .fbm-model-no-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    background: var(--fbm-bg);
    display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.fbm-model-card-info  { padding: 12px 14px; }
.fbm-model-card-name  { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.fbm-model-card-price { font-size: 20px; font-weight: 700; color: var(--fbm-primary); }
.fbm-model-card-price small { font-size: 13px; font-weight: 400; color: var(--fbm-muted); }

/* ── Spec comparison ────────────────────────────────────────────────── */
.fbm-spec-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.fbm-spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.fbm-spec-table th, .fbm-spec-table td { border: 1px solid var(--fbm-border); padding: 10px 12px; }
.fbm-spec-table thead th { background: var(--fbm-bg); font-weight: 700; }
.fbm-spec-table th:first-child { text-align: left; }
.fbm-spec-table td:not(:first-child) { text-align: center; }

/* ── Duration cards ─────────────────────────────────────────────────── */
.fbm-duration-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.fbm-duration-card {
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    padding: 24px 30px;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
    transition: all 0.2s;
    font-family: inherit;
}
.fbm-duration-card:hover { border-color: var(--fbm-primary); transform: translateY(-2px); box-shadow: var(--fbm-shadow); }
.fbm-duration-label { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.fbm-duration-price { font-size: 28px; font-weight: 700; color: var(--fbm-primary); }
.fbm-duration-price span { font-size: 14px; font-weight: 400; color: var(--fbm-muted); }

/* ── Coverage cards ─────────────────────────────────────────────────── */
.fbm-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.fbm-coverage-card {
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    padding: 24px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: inherit;
    position: relative;
}
.fbm-coverage-card:hover  { border-color: var(--fbm-primary); box-shadow: var(--fbm-shadow); }
.fbm-coverage-name  { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.fbm-coverage-price { font-size: 20px; font-weight: 700; color: var(--fbm-primary); margin-bottom: 10px; }
.fbm-coverage-tooltip { font-size: 13px; color: var(--fbm-muted); line-height: 1.6; }

/* ── Upgrade cards ──────────────────────────────────────────────────── */
.fbm-upgrades-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.fbm-upgrade-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    padding: 16px 18px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.fbm-upgrade-card:has(.fbm-upgrade-check:checked) { border-color: var(--fbm-primary); background: #f0f6ff; }
.fbm-upgrade-card input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--fbm-primary); cursor: pointer; }
.fbm-upgrade-info    { flex: 1; }
.fbm-upgrade-name    { font-size: 15px; font-weight: 600; }
.fbm-upgrade-tooltip { font-size: 13px; color: var(--fbm-muted); margin-top: 2px; }
.fbm-upgrade-price   { font-size: 16px; font-weight: 700; color: var(--fbm-primary); white-space: nowrap; }

/* ── Delivery options ───────────────────────────────────────────────── */
.fbm-delivery-options    { margin-bottom: 24px; }
.fbm-delivery-group      { margin-bottom: 28px; }
.fbm-delivery-group-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--fbm-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.fbm-delivery-week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}
.fbm-delivery-week-card {
    background: var(--fbm-card-bg);
    border: 2px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    padding: 16px 18px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: border-color 0.18s, background 0.18s, transform 0.12s;
}
.fbm-delivery-week-card:hover {
    border-color: var(--fbm-primary);
    background: #f0f6ff;
    transform: translateY(-2px);
}
.fbm-delivery-week-card.selected {
    border-color: var(--fbm-primary);
    background: var(--fbm-primary);
}
.fbm-dwc-range {
    font-size: 15px;
    font-weight: 700;
    color: var(--fbm-text);
    margin-bottom: 4px;
}
.fbm-delivery-week-card.selected .fbm-dwc-range,
.fbm-delivery-week-card.selected .fbm-dwc-days {
    color: #fff;
}
.fbm-dwc-days {
    font-size: 12px;
    color: var(--fbm-muted);
}

/* ── Customer info form ─────────────────────────────────────────────── */
.fbm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.fbm-field { display: flex; flex-direction: column; gap: 6px; }
.fbm-field-full { grid-column: 1 / -1; }
.fbm-field label { font-size: 14px; font-weight: 600; color: var(--fbm-text); }
.fbm-required { color: #e53e3e; }
.fbm-field input, .fbm-field select, .fbm-field textarea {
    border: 1px solid var(--fbm-border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--fbm-text);
    transition: border-color 0.2s;
    background: #fff;
}
.fbm-field input:focus, .fbm-field select:focus, .fbm-field textarea:focus {
    outline: none;
    border-color: var(--fbm-primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}
.fbm-field-error { border-color: #e53e3e !important; }
.fbm-field-msg { font-size: 12px; color: #e53e3e; margin-top: 2px; }

/* ── Review ─────────────────────────────────────────────────────────── */
.fbm-review-grid {
    background: var(--fbm-bg);
    border: 1px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    padding: 20px;
    margin-bottom: 20px;
}
.fbm-review-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--fbm-border);
    gap: 16px;
    font-size: 14px;
}
.fbm-review-label { color: var(--fbm-muted); font-weight: 600; flex-shrink: 0; min-width: 130px; }
.fbm-review-value { text-align: right; }
.fbm-review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 2px solid var(--fbm-primary);
    font-weight: 700;
    font-size: 16px;
}
.fbm-review-price { font-size: 24px; color: var(--fbm-primary); }
.fbm-review-divider { height: 1px; background: var(--fbm-border); margin: 10px 0; }

/* ── Terms check ────────────────────────────────────────────────────── */
.fbm-terms-check {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.fbm-terms-check input { margin-right: 8px; accent-color: var(--fbm-primary); width: 16px; height: 16px; vertical-align: middle; }

/* ── Action buttons ─────────────────────────────────────────────────── */
.fbm-step-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; }
.fbm-btn-back, .fbm-btn-next, .fbm-btn-submit {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    border: 2px solid transparent;
}
.fbm-btn-back   { background: #fff !important; border-color: var(--fbm-border) !important; color: #64748b !important; }
.fbm-btn-back:hover { border-color: var(--fbm-primary) !important; color: var(--fbm-primary) !important; }
.fbm-btn-next   { background: var(--fbm-primary) !important; color: #fff !important; border-color: var(--fbm-primary) !important; }
.fbm-btn-next:hover { background: var(--fbm-primary-dark) !important; }
.fbm-btn-next:disabled { background: #94a3b8 !important; border-color: #94a3b8 !important; color: #fff !important; opacity: 0.6; cursor: not-allowed; }
.fbm-btn-submit { background: var(--fbm-success) !important; color: #fff !important; border-color: var(--fbm-success) !important; }
.fbm-btn-submit:hover:not(:disabled) { background: #15803d !important; }
.fbm-btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Errors ─────────────────────────────────────────────────────────── */
.fbm-errors { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 6px; padding: 12px 16px; color: #b91c1c; font-size: 14px; }

/* ── Success ────────────────────────────────────────────────────────── */
.fbm-success-box { text-align: center; padding: 60px 20px; }
.fbm-success-icon {
    width: 72px; height: 72px;
    background: var(--fbm-success);
    color: #fff;
    border-radius: 50%;
    font-size: 36px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.fbm-success-box h2 { font-size: 28px; margin-bottom: 16px; }
.fbm-success-box p  { font-size: 16px; color: var(--fbm-muted); max-width: 500px; margin: 0 auto 12px; }

/* ════════════════════════════════════════════════════════════════════════
   MODEL PAGE
════════════════════════════════════════════════════════════════════════ */
.fbm-model-page {
    padding: 0 0 80px;
    font-family: var(--ast-body-font-family, inherit);
    font-size:   var(--ast-body-font-size, inherit);
    color:       var(--fbm-text);
}
.fbm-model-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.fbm-model-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0;
}
.fbm-model-hero-media iframe,
.fbm-model-hero-media video { width: 100%; aspect-ratio: 16/9; border-radius: var(--fbm-radius); }
.fbm-model-hero-img { width: 100%; border-radius: var(--fbm-radius); }
.fbm-model-manufacturer { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--fbm-muted); margin-bottom: 8px; }
.fbm-model-title { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.fbm-model-category { font-size: 13px; color: var(--fbm-primary); font-weight: 600; margin-bottom: 16px; }
.fbm-model-description { font-size: 16px; color: var(--fbm-muted); line-height: 1.7; margin-bottom: 24px; }

.fbm-model-pricing { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.fbm-price-pill {
    background: var(--fbm-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex; align-items: baseline; gap: 6px;
}
.fbm-price-amount { font-size: 22px; font-weight: 700; color: var(--fbm-primary); }
.fbm-price-label  { font-size: 13px; color: var(--fbm-muted); }

.fbm-reserve-btn {
    display: inline-block;
    background: var(--fbm-primary);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.fbm-reserve-btn:hover { background: var(--fbm-primary-dark); }
.fbm-reserve-btn-large { padding: 18px 40px; font-size: 18px; }
.fbm-unavailable { display: inline-block; background: #fee2e2; color: #dc2626; padding: 10px 20px; border-radius: 8px; font-weight: 600; }

/* ── Gallery ────────────────────────────────────────────────────────── */
.fbm-model-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    gap: 12px;
    margin-bottom: 48px;
}
.fbm-gallery-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }

/* ── Sections ───────────────────────────────────────────────────────── */
.fbm-model-section { margin-bottom: 48px; }
.fbm-model-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; border-bottom: 2px solid var(--fbm-border); padding-bottom: 12px; }

/* ── Specs table ────────────────────────────────────────────────────── */
.fbm-specs-table { width: 100%; border-collapse: collapse; }
.fbm-specs-table th, .fbm-specs-table td { padding: 12px 16px; border-bottom: 1px solid var(--fbm-border); text-align: left; }
.fbm-specs-table th { width: 40%; background: var(--fbm-bg); font-weight: 600; color: var(--fbm-muted); }
.fbm-specs-table tr:last-child th, .fbm-specs-table tr:last-child td { border-bottom: none; }

/* ── Feature list ───────────────────────────────────────────────────── */
.fbm-feature-list { list-style: none; padding: 0; margin: 0; }
.fbm-feature-list li { padding: 10px 0; border-bottom: 1px solid var(--fbm-border); font-size: 15px; line-height: 1.6; }
.fbm-feature-list li:last-child { border-bottom: none; }

/* ── Use cases ──────────────────────────────────────────────────────── */
.fbm-use-cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; }
.fbm-use-case-card { background: var(--fbm-bg); border: 1px solid var(--fbm-border); border-radius: var(--fbm-radius); padding: 20px; text-align: center; }
.fbm-use-case-icon { font-size: 32px; margin-bottom: 10px; }
.fbm-use-case-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.fbm-use-case-card p  { font-size: 13px; color: var(--fbm-muted); margin: 0; }

/* ── Siblings ───────────────────────────────────────────────────────── */
.fbm-siblings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; }
.fbm-sibling-card { background: var(--fbm-card-bg); border: 1px solid var(--fbm-border); border-radius: var(--fbm-radius); padding: 20px; text-align: center; }
.fbm-sibling-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; margin-bottom: 12px; }
.fbm-sibling-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fbm-sibling-card p  { font-size: 14px; color: var(--fbm-muted); }
.fbm-sibling-link { display: inline-block; color: var(--fbm-primary); font-size: 14px; font-weight: 600; text-decoration: none; margin-top: 8px; }

/* ── CTA ────────────────────────────────────────────────────────────── */
.fbm-model-cta { background: var(--fbm-primary); color: #fff; border-radius: 16px; padding: 48px; text-align: center; }
.fbm-model-cta h2 { font-size: 28px; color: #fff; margin-bottom: 12px; }
.fbm-model-cta p  { font-size: 16px; opacity: 0.9; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .fbm-model-hero { grid-template-columns: 1fr; gap: 24px; }
    .fbm-model-title { font-size: 26px; }
    .fbm-prog-step span { display: none; }
    .fbm-step-card { padding: 20px 16px; }
    .fbm-form-grid { grid-template-columns: 1fr; }
    .fbm-duration-grid { flex-direction: column; }
    .fbm-step-actions { flex-direction: column-reverse; }
    .fbm-btn-back, .fbm-btn-next, .fbm-btn-submit { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════════
   BROWSE ROBOTS PAGE
════════════════════════════════════════════════════════════════════════ */
#fbm-browse-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    font-family: var(--ast-body-font-family, inherit);
    color: var(--fbm-text);
}

/* ── Header ─────────────────────────────────────────────────────────── */
.fbm-browse-header {
    padding: 56px 0 40px;
    text-align: center;
}
.fbm-browse-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--fbm-text);
}
.fbm-browse-subtitle {
    font-size: 1.1rem;
    color: var(--fbm-muted);
    margin: 0;
}

/* ── Filter bar ─────────────────────────────────────────────────────── */
.fbm-browse-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}
.fbm-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border: 2px solid var(--fbm-border);
    border-radius: 50px;
    background: var(--fbm-card-bg);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    color: var(--fbm-text);
    transition: all 0.18s;
}
.fbm-filter-btn:hover {
    border-color: var(--fbm-primary);
    color: var(--fbm-primary);
}
.fbm-filter-btn.active {
    background: var(--fbm-primary);
    border-color: var(--fbm-primary);
    color: #fff;
}
.fbm-filter-count {
    background: rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 1px 8px;
    font-size: 12px;
    font-weight: 700;
}
.fbm-filter-btn:not(.active) .fbm-filter-count {
    background: var(--fbm-bg);
    color: var(--fbm-muted);
}

/* ── Results count ──────────────────────────────────────────────────── */
.fbm-browse-meta {
    font-size: 13px;
    color: var(--fbm-muted);
    margin-bottom: 24px;
    text-align: center;
}

/* ── Grid ───────────────────────────────────────────────────────────── */
.fbm-browse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Card ───────────────────────────────────────────────────────────── */
.fbm-browse-card {
    background: var(--fbm-card-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.fbm-browse-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.fbm-browse-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--fbm-bg);
    text-decoration: none;
}
.fbm-browse-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.fbm-browse-card:hover .fbm-browse-card-img { transform: scale(1.04); }
.fbm-browse-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--fbm-muted);
}
.fbm-browse-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}
.fbm-browse-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fbm-browse-card-mfr {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fbm-primary);
    margin-bottom: 6px;
}
.fbm-browse-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.fbm-browse-card-name a {
    color: var(--fbm-text);
    text-decoration: none;
}
.fbm-browse-card-name a:hover { color: var(--fbm-primary); }
.fbm-browse-card-desc {
    font-size: 13px;
    color: var(--fbm-muted);
    margin: 0 0 16px;
    line-height: 1.55;
    flex: 1;
}
.fbm-browse-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--fbm-border);
}
.fbm-browse-card-price { line-height: 1; }
.fbm-browse-price-from   { font-size: 11px; color: var(--fbm-muted); display: block; margin-bottom: 2px; }
.fbm-browse-price-amount { font-size: 1.4rem; font-weight: 800; color: var(--fbm-text); }
.fbm-browse-price-period { font-size: 13px; color: var(--fbm-muted); }
.fbm-browse-card-btn {
    display: inline-block;
    padding: 9px 18px;
    background: var(--fbm-primary);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s;
}
.fbm-browse-card-btn:hover { background: var(--fbm-primary-dark); color: #fff; }

/* ── Empty state ────────────────────────────────────────────────────── */
.fbm-browse-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--fbm-muted);
    font-size: 1.1rem;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .fbm-browse-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px) {
    .fbm-browse-grid { grid-template-columns: 1fr; gap: 16px; }
    .fbm-browse-filters { gap: 8px; }
    .fbm-filter-btn { padding: 8px 16px; font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════════════
   LIST YOUR ROBOT — OWNER FORM
════════════════════════════════════════════════════════════════════════ */
#fbm-owner-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
    font-family: var(--ast-body-font-family, inherit);
    color: var(--fbm-text);
}

/* ── Intro ──────────────────────────────────────────────────────────── */
.fbm-owner-intro { padding: 56px 0 40px; text-align: center; }
.fbm-owner-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 14px;
}
.fbm-owner-subtitle {
    font-size: 1.05rem;
    color: var(--fbm-muted);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.fbm-owner-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.fbm-owner-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--fbm-card-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 12px;
    padding: 14px 20px;
    text-align: left;
    max-width: 200px;
}
.fbm-owner-step strong { display: block; font-size: 14px; margin-bottom: 2px; }
.fbm-owner-step span   { font-size: 12px; color: var(--fbm-muted); }
.fbm-owner-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--fbm-primary);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fbm-owner-step-arrow { font-size: 20px; color: var(--fbm-muted); }

/* ── Sections ───────────────────────────────────────────────────────── */
.fbm-owner-section {
    background: var(--fbm-card-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}
.fbm-owner-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fbm-owner-section-icon { font-size: 1.2rem; }

/* ── Grid & fields ──────────────────────────────────────────────────── */
.fbm-owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fbm-owner-field { display: flex; flex-direction: column; gap: 6px; }
.fbm-owner-field-full { grid-column: 1 / -1; }
.fbm-owner-field label { font-size: 13px; font-weight: 600; color: var(--fbm-text); }
.fbm-req { color: #dc2626; }
.fbm-owner-field input,
.fbm-owner-field select,
.fbm-owner-field textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--fbm-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--fbm-text);
    background: #fff;
    transition: border-color 0.18s;
    width: 100%;
    box-sizing: border-box;
}
.fbm-owner-field input:focus,
.fbm-owner-field select:focus,
.fbm-owner-field textarea:focus {
    outline: none;
    border-color: var(--fbm-primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,.08);
}
.fbm-owner-input-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--fbm-border);
    border-radius: 8px;
    padding: 0 14px;
    background: #fff;
    transition: border-color .18s;
}
.fbm-owner-input-prefix:focus-within { border-color: var(--fbm-primary); box-shadow: 0 0 0 3px rgba(0,102,255,.08); }
.fbm-owner-input-prefix span  { color: var(--fbm-muted); font-weight: 700; }
.fbm-owner-input-prefix small { color: var(--fbm-muted); font-size: 13px; }
.fbm-owner-input-prefix input { border: none !important; box-shadow: none !important; padding: 10px 0; flex: 1; }
.fbm-owner-hint { font-size: 12px; color: var(--fbm-muted); margin: 4px 0 0; }

/* ── Submit ─────────────────────────────────────────────────────────── */
.fbm-owner-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.fbm-owner-terms {
    font-size: 13px;
    color: var(--fbm-muted);
    flex: 1;
    line-height: 1.5;
}
.fbm-owner-terms a { color: var(--fbm-primary); }
.fbm-owner-submit-btn {
    padding: 14px 32px;
    background: var(--fbm-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s, transform .12s;
}
.fbm-owner-submit-btn:hover { background: var(--fbm-primary-dark); transform: translateY(-1px); }
.fbm-owner-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Errors ─────────────────────────────────────────────────────────── */
.fbm-owner-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
    color: #dc2626;
    font-size: 14px;
}
.fbm-owner-errors p { margin: 4px 0; }

/* ── Success ────────────────────────────────────────────────────────── */
.fbm-owner-success {
    text-align: center;
    padding: 60px 24px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
}
.fbm-owner-success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 32px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.fbm-owner-success h2 { font-size: 1.8rem; margin: 0 0 12px; }
.fbm-owner-success p  { color: var(--fbm-muted); font-size: 15px; margin: 6px 0; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .fbm-owner-grid { grid-template-columns: 1fr; }
    .fbm-owner-steps { flex-direction: column; align-items: stretch; }
    .fbm-owner-step-arrow { display: none; }
    .fbm-owner-step { max-width: 100%; }
    .fbm-owner-submit-row { flex-direction: column; align-items: stretch; }
    .fbm-owner-submit-btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════════
   HOME PAGE
════════════════════════════════════════════════════════════════════════ */
#fbm-home-wrap {
    font-family: var(--ast-body-font-family, inherit);
}

/* ── Shared section helpers ──────────────────────────────────────────── */
.fbm-home-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.fbm-home-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fbm-primary);
    margin-bottom: 12px;
}
.fbm-home-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #0a0f1e;
    margin: 0 0 12px;
    text-align: center;
    line-height: 1.25;
}
.fbm-home-section-sub {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ── Shared buttons ──────────────────────────────────────────────────── */
.fbm-home-btn-primary {
    display: inline-block;
    background: var(--fbm-primary);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
}
.fbm-home-btn-primary:hover { background: var(--fbm-primary-dark); transform: translateY(-1px); }
.fbm-home-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid rgba(255,255,255,.4);
    transition: border-color .2s;
}
.fbm-home-btn-ghost:hover { border-color: rgba(255,255,255,.8); }
.fbm-home-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--fbm-primary) !important;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid var(--fbm-primary);
    transition: background .2s, color .2s;
}
.fbm-home-btn-outline:hover { background: var(--fbm-primary); color: #fff !important; }
.fbm-home-btn-white {
    display: inline-block;
    background: #fff;
    color: #0a0f1e !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s, transform .15s;
}
.fbm-home-btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
.fbm-home-btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.fbm-home-hero {
    background: #0a0f1e;
    padding: 140px 0 60px;
    overflow: hidden;
}
.fbm-home-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.fbm-home-badge {
    display: inline-block;
    background: rgba(0,102,255,.15);
    color: #60a5fa;
    border: 1px solid rgba(0,102,255,.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.fbm-home-h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.15;
}
.fbm-home-hero-sub {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 500px;
}
.fbm-home-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.fbm-home-hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
}
.fbm-home-hero-trust span:first-child { color: #f59e0b; letter-spacing: 2px; }

.fbm-home-hero-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.fbm-home-hero-video-wrap video,
.fbm-home-hero-video-wrap img {
    width: 100%;
    display: block;
    border-radius: 16px;
    max-height: 460px;
    object-fit: cover;
}
.fbm-home-hero-video-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fbm-home-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: fbm-pulse 2s infinite;
}
@keyframes fbm-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

/* ── Stats bar ───────────────────────────────────────────────────────── */
.fbm-home-stats-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}
.fbm-home-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.fbm-home-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 40px;
}
.fbm-home-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fbm-primary);
    line-height: 1;
}
.fbm-home-stat span {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}
.fbm-home-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* ── How it works ────────────────────────────────────────────────────── */
.fbm-home-how {
    background: #f8fafc;
    padding: 80px 0;
}
.fbm-home-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 0 -12px;
}
.fbm-home-step {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    margin: 0 12px;
    border: 1px solid #e2e8f0;
    position: relative;
}
.fbm-home-step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.fbm-home-step-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
}
.fbm-home-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0f1e;
    margin: 0 0 10px;
}
.fbm-home-step p { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }
.fbm-home-step-arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    align-self: center;
    flex-shrink: 0;
    margin: 0 -4px;
}

/* ── Featured robots ─────────────────────────────────────────────────── */
.fbm-home-robots {
    background: #fff;
    padding: 80px 0;
}
.fbm-home-robots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fbm-home-robot-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.fbm-home-robot-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    transform: translateY(-3px);
}
.fbm-home-robot-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8fafc;
}
.fbm-home-robot-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.fbm-home-robot-card:hover .fbm-home-robot-img-wrap img { transform: scale(1.04); }
.fbm-home-robot-no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.fbm-home-robot-cat-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}
.fbm-home-robot-body { padding: 18px; }
.fbm-home-robot-mfr { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fbm-primary); margin-bottom: 6px; }
.fbm-home-robot-name { font-size: 1rem; font-weight: 700; color: #0a0f1e; margin: 0 0 8px; }
.fbm-home-robot-name a { color: inherit; text-decoration: none; }
.fbm-home-robot-desc { font-size: 13px; color: #64748b; margin: 0 0 14px; line-height: 1.5; }
.fbm-home-robot-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.fbm-home-robot-price { font-size: 13px; color: #64748b; }
.fbm-home-robot-price strong { font-size: 1rem; color: #0a0f1e; font-weight: 700; }
.fbm-home-robot-btn {
    background: var(--fbm-primary);
    color: #fff !important;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .2s;
}
.fbm-home-robot-btn:hover { background: var(--fbm-primary-dark); }

/* ── Videos ──────────────────────────────────────────────────────────── */
.fbm-home-videos {
    background: #0a0f1e;
    padding: 80px 0;
}
.fbm-home-videos .fbm-home-section-label { color: #60a5fa; }
.fbm-home-videos .fbm-home-section-title { color: #fff; }
.fbm-home-videos .fbm-home-section-sub { color: #94a3b8; }
.fbm-home-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fbm-home-video-item {}
.fbm-home-video-label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Why rent ────────────────────────────────────────────────────────── */
.fbm-home-why {
    background: #f8fafc;
    padding: 80px 0;
}
.fbm-home-why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.fbm-home-why-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    object-fit: cover;
    max-height: 440px;
}
.fbm-home-why-text .fbm-home-section-title { text-align: left; }
.fbm-home-why-points { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.fbm-home-why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.fbm-home-why-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.fbm-home-why-point strong { display: block; font-size: 15px; color: #0a0f1e; margin-bottom: 4px; }
.fbm-home-why-point p { font-size: 14px; color: #64748b; margin: 0; line-height: 1.5; }

/* ── Owner CTA ───────────────────────────────────────────────────────── */
.fbm-home-owner-cta {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1f3c 100%);
    padding: 80px 0;
}
.fbm-home-owner-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.fbm-home-owner-cta-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.fbm-home-owner-cta-text p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0 0 24px;
}
.fbm-home-owner-cta-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.fbm-home-owner-cta-bullets div {
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fbm-home-owner-cta-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* ── Reviews ─────────────────────────────────────────────────────────── */
.fbm-home-reviews {
    background: #f8fafc;
    padding: 80px 0;
}
.fbm-home-review-rating {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.fbm-home-stars { color: #f59e0b; font-size: 1.8rem; letter-spacing: 4px; }
.fbm-home-review-rating strong { font-size: 1.3rem; color: #0a0f1e; }
.fbm-home-review-rating span { font-size: 14px; color: #64748b; }
.fbm-home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fbm-home-review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    position: relative;
}
.fbm-home-review-quote {
    font-size: 3rem;
    font-family: Georgia, serif;
    color: var(--fbm-primary);
    line-height: .8;
    margin-bottom: 12px;
    opacity: .5;
}
.fbm-home-review-text { font-size: 14px; color: #374151; line-height: 1.7; margin: 0 0 20px; }
.fbm-home-reviewer { display: flex; align-items: center; gap: 12px; }
.fbm-home-reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--fbm-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fbm-home-reviewer strong { display: block; font-size: 14px; color: #0a0f1e; }
.fbm-home-reviewer span { font-size: 12px; color: #64748b; }

/* ── Blog ────────────────────────────────────────────────────────────── */
.fbm-home-blog { background: #fff; padding: 80px 0; }
.fbm-home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fbm-home-blog-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
    display: block;
}
.fbm-home-blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.fbm-home-blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
    position: relative;
}
.fbm-home-blog-cat {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--fbm-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}
.fbm-home-blog-body { padding: 20px; }
.fbm-home-blog-body time { font-size: 12px; color: #94a3b8; }
.fbm-home-blog-body h3 { font-size: 15px; font-weight: 700; color: #0a0f1e; margin: 8px 0 8px; line-height: 1.4; }
.fbm-home-blog-body p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0 0 12px; }
.fbm-home-blog-read { font-size: 13px; font-weight: 600; color: var(--fbm-primary); }

/* ── Final CTA ───────────────────────────────────────────────────────── */
.fbm-home-final-cta {
    background: #0a0f1e;
    padding: 100px 0;
    text-align: center;
}
.fbm-home-final-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.fbm-home-final-cta p {
    font-size: 17px;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.fbm-home-final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .fbm-home-robots-grid { grid-template-columns: repeat(2, 1fr); }
    .fbm-home-stat strong { font-size: 1.4rem; }
    .fbm-home-videos-grid { grid-template-columns: 1fr; }
    .fbm-home-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .fbm-home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .fbm-home-hero { padding: 100px 0 40px; }
    .fbm-home-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .fbm-home-hero-media { order: -1; }
    .fbm-home-hero-text { text-align: center; }
    .fbm-home-hero-sub { margin-left: auto; margin-right: auto; }
    .fbm-home-hero-btns { justify-content: center; }
    .fbm-home-hero-trust { justify-content: center; }
    .fbm-home-stats-inner { gap: 0; }
    .fbm-home-stat { padding: 8px 20px; }
    .fbm-home-stat-divider { display: none; }
    .fbm-home-steps { flex-direction: column; }
    .fbm-home-step-arrow { align-self: center; transform: rotate(90deg); }
    .fbm-home-robots-grid { grid-template-columns: repeat(2, 1fr); }
    .fbm-home-why-inner { grid-template-columns: 1fr; }
    .fbm-home-why-img { order: -1; }
    .fbm-home-owner-cta-inner { grid-template-columns: 1fr; }
    .fbm-home-owner-cta-img { display: none; }
    .fbm-home-reviews-grid { grid-template-columns: 1fr; }
    .fbm-home-blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .fbm-home-robots-grid { grid-template-columns: 1fr; }
    .fbm-home-hero-btns { flex-direction: column; align-items: stretch; }
    .fbm-home-btn-primary, .fbm-home-btn-ghost { text-align: center; }
    .fbm-home-final-btns { flex-direction: column; align-items: stretch; }
}

/* ════════════════════════════════════════════════════════════════════════
   HOW IT WORKS PAGE
════════════════════════════════════════════════════════════════════════ */
#fbm-hiw-wrap { font-family: var(--ast-body-font-family, inherit); }
.fbm-hiw-inner      { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.fbm-hiw-inner-wide { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


/* ── Hero ───────────────────────────────────────────────────────────── */
.fbm-hiw-hero { background:#0a0f1e; padding:140px 0 40px; text-align:center; }
.fbm-hiw-hero-title { font-size:clamp(2rem,4vw,3rem); font-weight:800; color:#fff; margin:0 0 12px; line-height:1.15; }
.fbm-hiw-hero-sub { font-size:18px; color:#60a5fa; font-weight:600; margin:0; }

/* ── Steps section */
.fbm-hiw-steps-section { background:#f8fafc; padding:56px 0 64px; }

/* ── Tabs */
.fbm-hiw-tabs { display:flex; align-items:center; justify-content:center; gap:0; margin-bottom:36px; flex-wrap:wrap; }
.fbm-hiw-tab { display:flex; flex-direction:column; align-items:center; gap:6px; padding:18px 28px; background:#fff; border:2px solid #e2e8f0; border-radius:14px; cursor:pointer; transition:all .2s; min-width:160px; }
.fbm-hiw-tab:hover { border-color:var(--fbm-primary); }
.fbm-hiw-tab.active { background:var(--fbm-primary); border-color:var(--fbm-primary); }
.fbm-tab-num { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#94a3b8; }
.fbm-hiw-tab.active .fbm-tab-num { color:rgba(255,255,255,.7); }
.fbm-tab-icon { font-size:1.6rem; line-height:1; }
.fbm-tab-title { font-size:14px; font-weight:700; color:#0a0f1e; }
.fbm-hiw-tab.active .fbm-tab-title { color:#fff; }
.fbm-hiw-tab-connector { width:40px; height:2px; background:#e2e8f0; flex-shrink:0; }

/* ── Panels */
.fbm-hiw-panel { display:none; grid-template-columns:1fr 1fr; gap:56px; align-items:center; background:#fff; border:1px solid #e2e8f0; border-radius:20px; padding:48px; }
.fbm-hiw-panel.active { display:grid; }
.fbm-hiw-panel-step { font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--fbm-primary); margin-bottom:10px; }
.fbm-hiw-panel-text h2 { font-size:clamp(1.5rem,2.5vw,2rem); font-weight:800; color:#0a0f1e; margin:0 0 14px; line-height:1.2; }
.fbm-hiw-panel-lead { font-size:16px; color:#374151; line-height:1.6; margin:0 0 20px; }
.fbm-hiw-bullets { list-style:none; padding:0; margin:0 0 28px; display:flex; flex-direction:column; gap:10px; }
.fbm-hiw-bullets li { font-size:14.5px; color:#374151; padding-left:20px; position:relative; line-height:1.5; }
.fbm-hiw-bullets li::before { content:"✓"; position:absolute; left:0; color:var(--fbm-primary); font-weight:700; }
.fbm-hiw-bullets a { color:var(--fbm-primary); text-decoration:none; font-weight:600; }
.fbm-hiw-bullets strong { color:#0a0f1e; }
.fbm-hiw-panel-visual img { width:100%; border-radius:16px; object-fit:cover; max-height:380px; box-shadow:0 16px 48px rgba(0,0,0,.1); }
.fbm-hiw-visual-card { background:#f8fafc; border:1px solid #e2e8f0; border-radius:16px; padding:28px; display:flex; flex-direction:column; gap:20px; }
.fbm-hiw-vc-row { display:flex; gap:14px; align-items:flex-start; }
.fbm-hiw-vc-icon { font-size:1.5rem; flex-shrink:0; }
.fbm-hiw-vc-row strong { display:block; font-size:14px; color:#0a0f1e; margin-bottom:3px; }
.fbm-hiw-vc-row p { font-size:13px; color:#64748b; margin:0; }
.fbm-hiw-choices { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:4px; }
.fbm-hiw-choice { background:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:14px; display:flex; gap:10px; align-items:flex-start; }
.fbm-hiw-choice span { font-size:1.3rem; flex-shrink:0; }
.fbm-hiw-choice strong { display:block; font-size:13px; color:#0a0f1e; margin-bottom:3px; }
.fbm-hiw-choice p { font-size:12px; color:#64748b; margin:0; line-height:1.4; }

/* ── Included strip */
.fbm-hiw-included { background:#0a0f1e; padding:28px 0; }
.fbm-hiw-included-label { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#475569; text-align:center; margin-bottom:16px; }
.fbm-hiw-included-strip { display:flex; justify-content:center; flex-wrap:wrap; }
.fbm-hiw-inc { display:flex; align-items:center; gap:8px; padding:8px 24px; border-right:1px solid rgba(255,255,255,.08); font-size:13.5px; color:#94a3b8; white-space:nowrap; }
.fbm-hiw-inc:last-child { border-right:none; }
.fbm-hiw-inc span { color:#cbd5e1; }

/* ── FAQ */
.fbm-hiw-faq { background:#fff; padding:64px 0; }
.fbm-hiw-faq-title { font-size:clamp(1.4rem,2.5vw,1.8rem); font-weight:700; color:#0a0f1e; text-align:center; margin:0 0 32px; }
.fbm-hiw-faq-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.fbm-hiw-faq-item { background:#f8fafc; border:1px solid #e2e8f0; border-radius:14px; padding:22px 24px; }
.fbm-hiw-faq-item h3 { font-size:14.5px; font-weight:700; color:#0a0f1e; margin:0 0 8px; line-height:1.4; }
.fbm-hiw-faq-item p { font-size:14px; color:#374151; margin:0; line-height:1.6; }
.fbm-hiw-faq-item a { color:var(--fbm-primary); text-decoration:none; font-weight:600; }

/* ── CTA */
.fbm-hiw-cta { background:#0a0f1e; padding:80px 0; text-align:center; }
.fbm-hiw-cta h2 { font-size:clamp(2rem,3.5vw,2.8rem); font-weight:800; color:#fff; margin:0 0 12px; }
.fbm-hiw-cta p { font-size:16px; color:#94a3b8; max-width:480px; margin:0 auto 32px; line-height:1.7; }
.fbm-hiw-cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.fbm-hiw-btn-primary { display:inline-block; background:var(--fbm-primary); color:#fff !important; padding:14px 28px; border-radius:8px; font-size:15px; font-weight:600; text-decoration:none !important; transition:background .2s,transform .15s; }
.fbm-hiw-btn-primary:hover { background:var(--fbm-primary-dark); transform:translateY(-1px); }
.fbm-hiw-btn-ghost { display:inline-block; background:transparent; color:#fff !important; padding:14px 28px; border-radius:8px; font-size:15px; font-weight:600; text-decoration:none !important; border:2px solid rgba(255,255,255,.3); transition:border-color .2s; }
.fbm-hiw-btn-ghost:hover { border-color:rgba(255,255,255,.7); }

/* ── Responsive */
@media (max-width:1024px) { .fbm-hiw-tab { min-width:130px; padding:14px 18px; } .fbm-hiw-tab-connector { width:20px; } }
@media (max-width:768px) {
    .fbm-hiw-tabs { gap:8px; }
    .fbm-hiw-tab-connector { display:none; }
    .fbm-hiw-tab { min-width:130px; padding:12px 16px; border-radius:10px; }
    .fbm-hiw-panel { grid-template-columns:1fr; padding:24px 20px; gap:24px; }
    .fbm-hiw-panel-visual { order:-1; }
    .fbm-hiw-choices { grid-template-columns:1fr; }
    .fbm-hiw-inc { padding:6px 14px; font-size:12.5px; border-right:none; border-bottom:1px solid rgba(255,255,255,.08); width:50%; }
    .fbm-hiw-faq-grid { grid-template-columns:1fr; }
}
@media (max-width:480px) {
    .fbm-hiw-tabs { flex-direction:column; align-items:stretch; }
    .fbm-hiw-tab { flex-direction:row; justify-content:flex-start; }
    .fbm-hiw-cta-btns { flex-direction:column; align-items:stretch; }
    .fbm-hiw-inc { width:100%; }
}

/* ════════════════════════════════════════════════════════════════════════
   ABOUT FUTUROBOTS PAGE  [futurobots_about]
   ════════════════════════════════════════════════════════════════════════ */

/* ── Shared layout ── */
#fbm-about-wrap { font-family: inherit; }
.fbm-about-inner { max-width:1200px; margin:0 auto; padding:0 24px; }
.fbm-about-inner-narrow { max-width:780px; }
.fbm-about-section-label {
    font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
    color:#2563eb; margin-bottom:12px; display:block;
}

/* ── Hero ── */
.fbm-about-hero {
    background:#0a0f1e;
    padding:140px 0 60px;
    overflow:hidden;
}
.fbm-about-hero .fbm-about-inner {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.fbm-about-badge {
    display:inline-block;
    background:rgba(0,102,255,.15);
    color:#60a5fa;
    border:1px solid rgba(0,102,255,.3);
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}
.fbm-about-hero-title {
    font-size:clamp(2rem,4vw,3.2rem);
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin:0 0 20px;
}
.fbm-about-hero-sub {
    font-size:18px;
    color:#94a3b8;
    line-height:1.7;
    margin:0 0 32px;
    max-width:520px;
}
.fbm-about-hero-visual img {
    width:100%;
    border-radius:16px;
    display:block;
    object-fit:cover;
    max-height:420px;
}

/* ── Mission ── */
.fbm-about-mission {
    padding:80px 24px;
    background:#f8fafc;
}
.fbm-about-mission .fbm-about-inner { text-align:center; }
.fbm-about-mission-quote {
    font-size:clamp(1.3rem,2.5vw,1.9rem);
    font-weight:700;
    color:#0f172a;
    line-height:1.4;
    margin:0 0 24px;
    font-style:italic;
}
.fbm-about-mission-body {
    font-size:17px;
    color:#475569;
    line-height:1.8;
    margin:0;
}

/* ── Story ── */
.fbm-about-story { padding:80px 0; }
.fbm-about-story-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
}
.fbm-about-story-text h2 {
    font-size:clamp(1.5rem,2.5vw,2.2rem);
    font-weight:800;
    color:#0f172a;
    margin:0 0 20px;
    line-height:1.2;
}
.fbm-about-story-text p {
    font-size:16px;
    color:#475569;
    line-height:1.8;
    margin:0 0 16px;
}
.fbm-about-story-visual img {
    width:100%;
    border-radius:16px;
    display:block;
    object-fit:cover;
    max-height:460px;
}

/* ── Who We Serve ── */
.fbm-about-serve {
    padding:80px 0;
    background:#f8fafc;
}
.fbm-about-serve-title {
    font-size:clamp(1.4rem,2.5vw,2rem);
    font-weight:800;
    color:#0f172a;
    text-align:center;
    max-width:680px;
    margin:0 auto 48px;
    line-height:1.3;
}
.fbm-about-serve-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}
.fbm-about-serve-card {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 1px 4px rgba(0,0,0,.06);
    transition:transform .2s, box-shadow .2s;
}
.fbm-about-serve-card:hover {
    transform:translateY(-4px);
    box-shadow:0 8px 24px rgba(0,0,0,.10);
}
.fbm-about-serve-img {
    width:100%;
    height:200px;
    overflow:hidden;
}
.fbm-about-serve-img img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .3s;
}
.fbm-about-serve-card:hover .fbm-about-serve-img img { transform:scale(1.04); }
.fbm-about-serve-card h3 {
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    margin:20px 20px 8px;
}
.fbm-about-serve-card p {
    font-size:14px;
    color:#64748b;
    line-height:1.65;
    margin:0 20px 20px;
}

/* ── Why We're Different ── */
.fbm-about-diff {
    padding:80px 0;
    background:#0a0f1e;
}
.fbm-about-diff-title {
    font-size:clamp(1.6rem,3vw,2.4rem);
    font-weight:800;
    color:#fff;
    text-align:center;
    margin:0 auto 48px;
}
.fbm-about-diff-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}
.fbm-about-diff-card {
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:28px 24px;
}
.fbm-about-diff-icon {
    font-size:28px;
    margin-bottom:16px;
    display:block;
}
.fbm-about-diff-card h3 {
    font-size:15px;
    font-weight:700;
    color:#fff;
    margin:0 0 10px;
    line-height:1.3;
}
.fbm-about-diff-card p {
    font-size:14px;
    color:#94a3b8;
    line-height:1.7;
    margin:0;
}

/* ── Commitment ── */
.fbm-about-commit { padding:80px 24px; }
.fbm-about-commit h2 {
    font-size:clamp(1.5rem,2.5vw,2.2rem);
    font-weight:800;
    color:#0f172a;
    margin:0 0 24px;
}
.fbm-about-commit-body {
    font-size:17px;
    color:#475569;
    line-height:1.8;
    margin:0 0 16px;
    max-width:640px;
    margin-left:auto;
    margin-right:auto;
}

/* ── CTA ── */
.fbm-about-cta {
    background:#0a0f1e;
    padding:80px 24px;
}
.fbm-about-cta h2 {
    font-size:clamp(1.8rem,3vw,2.8rem);
    font-weight:800;
    color:#fff;
    margin:0 0 16px;
}
.fbm-about-cta p {
    font-size:18px;
    color:#94a3b8;
    margin:0 0 36px;
}
.fbm-about-cta-btns {
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
}
.fbm-about-btn-primary {
    display:inline-block;
    background:#2563eb;
    color:#fff !important;
    padding:16px 32px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    text-decoration:none !important;
    transition:background .2s, transform .15s;
}
.fbm-about-btn-primary:hover { background:#1d4ed8; transform:translateY(-2px); }
.fbm-about-btn-ghost {
    display:inline-block;
    background:transparent;
    color:#fff !important;
    padding:16px 32px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    text-decoration:none !important;
    border:2px solid rgba(255,255,255,.25);
    transition:border-color .2s;
}
.fbm-about-btn-ghost:hover { border-color:rgba(255,255,255,.6); }

/* ── Business Model ── */
.fbm-about-model {
    padding:80px 0;
    background:#f8fafc;
}
.fbm-about-model-grid {
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:32px;
    align-items:center;
    margin-bottom:40px;
}
.fbm-about-model-card {
    background:#fff;
    border-radius:16px;
    padding:32px 28px;
    box-shadow:0 2px 12px rgba(0,0,0,.07);
    border:2px solid #e2e8f0;
}
.fbm-about-model-icon { font-size:36px; margin-bottom:12px; display:block; }
.fbm-about-model-card h3 { font-size:18px; font-weight:800; color:#0f172a; margin:0 0 10px; }
.fbm-about-model-card p { font-size:14px; color:#64748b; line-height:1.7; margin:0; }
.fbm-about-model-arrow {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}
.fbm-about-model-arrow-line {
    width:2px;
    height:40px;
    background:linear-gradient(to bottom, #2563eb, #60a5fa);
}
.fbm-about-model-center {
    background:#2563eb;
    color:#fff;
    border-radius:12px;
    padding:14px 18px;
    text-align:center;
}
.fbm-about-model-center-logo {
    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:4px;
}
.fbm-about-model-center p {
    font-size:11px;
    color:rgba(255,255,255,.8);
    margin:0;
}
.fbm-about-model-note {
    background:#fff;
    border-left:4px solid #2563eb;
    border-radius:0 12px 12px 0;
    padding:20px 24px;
    font-size:16px;
    color:#475569;
    line-height:1.7;
    box-shadow:0 1px 4px rgba(0,0,0,.05);
}
.fbm-about-model-note strong { color:#0f172a; }

/* ── What We Do ── */
.fbm-about-whatwedo { padding:80px 0; }
.fbm-about-whatwedo-title {
    font-size:clamp(1.4rem,2.5vw,2rem);
    font-weight:800;
    color:#0f172a;
    text-align:center;
    margin:0 auto 48px;
}
.fbm-about-whatwedo-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}
.fbm-about-whatwedo-item {
    border-top:3px solid #2563eb;
    padding-top:20px;
}
.fbm-about-whatwedo-num {
    font-size:36px;
    font-weight:900;
    color:#e2e8f0;
    margin-bottom:12px;
    line-height:1;
}
.fbm-about-whatwedo-item h3 {
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    margin:0 0 10px;
}
.fbm-about-whatwedo-item p {
    font-size:14px;
    color:#64748b;
    line-height:1.7;
    margin:0;
}

/* ── For Owners ── */
.fbm-about-forowners {
    background:#0a0f1e;
    padding:80px 0;
}
.fbm-about-forowners-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
}
.fbm-about-forowners-text h2 {
    font-size:clamp(1.6rem,3vw,2.4rem);
    font-weight:800;
    color:#fff;
    margin:0 0 20px;
}
.fbm-about-forowners-text p {
    font-size:16px;
    color:#94a3b8;
    line-height:1.8;
    margin:0 0 28px;
}
.fbm-about-btn-outline {
    display:inline-block;
    background:transparent;
    color:#60a5fa !important;
    padding:14px 28px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    text-decoration:none !important;
    border:2px solid #2563eb;
    transition:background .2s, color .2s;
}
.fbm-about-btn-outline:hover { background:#2563eb; color:#fff !important; }
.fbm-about-forowners-visual img {
    width:100%;
    border-radius:16px;
    display:block;
    object-fit:cover;
    max-height:380px;
}

/* ── Responsive ── */
@media (max-width:900px) {
    .fbm-about-hero .fbm-about-inner { grid-template-columns:1fr; gap:36px; }
    .fbm-about-hero { padding:100px 0 40px; }
    .fbm-about-hero-visual { order:-1; }
    .fbm-about-story-grid { grid-template-columns:1fr; gap:36px; }
    .fbm-about-story-visual { order:-1; }
    .fbm-about-serve-grid { grid-template-columns:1fr 1fr; }
    .fbm-about-diff-grid { grid-template-columns:1fr 1fr; }
    .fbm-about-model-grid { grid-template-columns:1fr; }
    .fbm-about-model-arrow { flex-direction:row; }
    .fbm-about-model-arrow-line { width:40px; height:2px; }
    .fbm-about-whatwedo-grid { grid-template-columns:1fr 1fr; }
    .fbm-about-forowners-grid { grid-template-columns:1fr; gap:36px; }
    .fbm-about-forowners-visual { order:-1; }
}
@media (max-width:600px) {
    .fbm-about-serve-grid { grid-template-columns:1fr; }
    .fbm-about-diff-grid { grid-template-columns:1fr; }
    .fbm-about-whatwedo-grid { grid-template-columns:1fr; }
    .fbm-about-cta-btns { flex-direction:column; align-items:stretch; }
    .fbm-about-model-grid { grid-template-columns:1fr; }
    .fbm-about-model-arrow { flex-direction:column; }
    .fbm-about-model-arrow-line { width:2px; height:24px; }
}

/* ════════════════════════════════════════════════════════════════════════
   SINGLE MODEL PAGE  (fbm-sm-* classes)
════════════════════════════════════════════════════════════════════════ */

/* ── Base & container ──────────────────────────────────────────────── */
.fbm-model-page {
    font-family: var(--ast-body-font-family, inherit);
    color: var(--fbm-text);
    padding-bottom: 0;
}
.fbm-sm-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.fbm-sm-hero {
    background: #fff;
    padding: 56px 0 64px;
    border-bottom: 1px solid var(--fbm-border);
}
.fbm-sm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Media column */
.fbm-sm-media { position: relative; }
.fbm-sm-video-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.fbm-sm-video-wrap iframe,
.fbm-sm-video-wrap video { width: 100%; aspect-ratio: 16/9; border-radius: 16px; display: block; }
.fbm-sm-hero-img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 16px 48px rgba(0,0,0,.10); object-fit: cover; }

/* Info column */
.fbm-sm-hero-info { padding-top: 8px; }
.fbm-sm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
}
.fbm-sm-breadcrumb span { color: var(--fbm-muted); font-weight: 500; }
.fbm-sm-sep { color: var(--fbm-border) !important; }
.fbm-sm-cat-tag {
    background: #eff6ff;
    color: var(--fbm-primary);
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.fbm-sm-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0a0f1e;
    line-height: 1.15;
    margin: 0 0 16px;
}
.fbm-sm-desc {
    font-size: 16px;
    color: var(--fbm-muted);
    line-height: 1.75;
    margin: 0 0 28px;
}

/* Pricing */
.fbm-sm-price-row { margin-bottom: 28px; }
.fbm-sm-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.fbm-sm-price-from {
    font-size: 13px;
    color: var(--fbm-muted);
    font-weight: 500;
    margin-right: 4px;
}
.fbm-sm-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0a0f1e;
    line-height: 1;
}
.fbm-sm-price-mo {
    font-size: 16px;
    color: var(--fbm-muted);
    font-weight: 500;
}
.fbm-sm-price-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fbm-sm-price-tier {
    background: var(--fbm-bg);
    border: 1px solid var(--fbm-border);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 100px;
}
.fbm-sm-tier-label { font-size: 11px; color: var(--fbm-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.fbm-sm-tier-price { font-size: 18px; font-weight: 700; color: var(--fbm-primary); }

/* Reserve button */
.fbm-sm-reserve-btn {
    display: inline-block;
    background: var(--fbm-primary);
    color: #fff !important;
    text-decoration: none !important;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: background .2s, transform .15s;
    margin-bottom: 10px;
}
.fbm-sm-reserve-btn:hover { background: var(--fbm-primary-dark); transform: translateY(-2px); }
.fbm-sm-reserve-btn-lg { padding: 18px 40px; font-size: 17px; }
.fbm-sm-reserve-note {
    font-size: 13px;
    color: var(--fbm-muted);
    margin: 0;
}
.fbm-sm-unavailable {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
}
.fbm-sm-unavailable a { color: #b91c1c; text-decoration: underline; }

/* ── Gallery ────────────────────────────────────────────────────────── */
.fbm-sm-gallery-section {
    background: var(--fbm-bg);
    padding: 32px 0;
    border-bottom: 1px solid var(--fbm-border);
}
.fbm-sm-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.fbm-sm-gallery-thumb {
    flex-shrink: 0;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.fbm-sm-gallery-thumb img { width: 100%; height: 150px; object-fit: cover; display: block; border-radius: 10px; transition: transform .3s; }
.fbm-sm-gallery-thumb:hover img { transform: scale(1.04); }

/* ── Sections ───────────────────────────────────────────────────────── */
.fbm-sm-section { padding: 64px 0; border-bottom: 1px solid var(--fbm-border); }
.fbm-sm-section:last-child { border-bottom: none; }
.fbm-sm-section-light { background: #f8fafc; }
.fbm-sm-section-dark  { background: #0a0f1e; border-bottom: none; }
.fbm-sm-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0a0f1e;
    margin: 0 0 32px;
}
.fbm-sm-section-title-light { color: #fff; }

/* ── Specs grid ─────────────────────────────────────────────────────── */
.fbm-sm-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.fbm-sm-spec-card {
    background: #fff;
    border: 1px solid var(--fbm-border);
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 3px solid var(--fbm-primary);
}
.fbm-sm-spec-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--fbm-muted);
    margin-bottom: 6px;
}
.fbm-sm-spec-value {
    font-size: 16px;
    font-weight: 700;
    color: #0a0f1e;
    line-height: 1.3;
}

/* ── Can do / Can't do ──────────────────────────────────────────────── */
.fbm-sm-cando-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.fbm-sm-cando-col {
    border-radius: 14px;
    padding: 28px;
}
.fbm-sm-cando-yes {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.fbm-sm-cando-no {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.fbm-sm-cando-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.fbm-sm-cando-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #0a0f1e;
}
.fbm-sm-cando-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.fbm-sm-cando-yes .fbm-sm-cando-icon { background: #16a34a; color: #fff; }
.fbm-sm-cando-no  .fbm-sm-cando-icon { background: #dc2626; color: #fff; }
.fbm-sm-cando-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fbm-sm-cando-col li {
    font-size: 14.5px;
    line-height: 1.5;
    color: #374151;
    padding-left: 20px;
    position: relative;
}
.fbm-sm-cando-yes li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.fbm-sm-cando-no  li::before { content: "✕"; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* ── Use cases ──────────────────────────────────────────────────────── */
.fbm-sm-usecases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.fbm-sm-usecase {
    background: #fff;
    border: 1px solid var(--fbm-border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.fbm-sm-usecase:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-3px); }
.fbm-sm-usecase-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.fbm-sm-usecase-title { font-size: 14px; font-weight: 700; color: #0a0f1e; margin-bottom: 6px; }
.fbm-sm-usecase-desc { font-size: 13px; color: var(--fbm-muted); line-height: 1.5; margin: 0; }

/* ── What's included ────────────────────────────────────────────────── */
.fbm-sm-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.fbm-sm-included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #e2e8f0;
    font-weight: 500;
}
.fbm-sm-included-check {
    width: 24px;
    height: 24px;
    background: var(--fbm-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Other models (siblings) ────────────────────────────────────────── */
.fbm-sm-siblings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.fbm-sm-sibling {
    display: flex;
    gap: 0;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--fbm-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
}
.fbm-sm-sibling:hover { box-shadow: 0 8px 28px rgba(0,0,0,.10); transform: translateY(-3px); }
.fbm-sm-sibling-img { overflow: hidden; }
.fbm-sm-sibling-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .3s; }
.fbm-sm-sibling:hover .fbm-sm-sibling-img img { transform: scale(1.04); }
.fbm-sm-sibling-info { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.fbm-sm-sibling-name { font-size: 15px; font-weight: 700; color: #0a0f1e; }
.fbm-sm-sibling-price { font-size: 13px; color: var(--fbm-primary); font-weight: 600; }
.fbm-sm-sibling-cta { font-size: 13px; color: var(--fbm-muted); margin-top: 4px; }
.fbm-sm-sibling:hover .fbm-sm-sibling-cta { color: var(--fbm-primary); }

/* ── Bottom CTA ─────────────────────────────────────────────────────── */
.fbm-sm-bottom-cta {
    background: var(--fbm-primary);
    padding: 56px 0;
}
.fbm-sm-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.fbm-sm-cta-inner h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.fbm-sm-cta-inner p {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    margin: 0;
    max-width: 480px;
    line-height: 1.6;
}
.fbm-sm-bottom-cta .fbm-sm-reserve-btn {
    background: #fff;
    color: var(--fbm-primary) !important;
    white-space: nowrap;
    flex-shrink: 0;
}
.fbm-sm-bottom-cta .fbm-sm-reserve-btn:hover { background: #f0f6ff; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .fbm-sm-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .fbm-sm-hero { padding: 32px 0 48px; }
    .fbm-sm-cando-grid { grid-template-columns: 1fr; }
    .fbm-sm-cta-inner { flex-direction: column; text-align: center; }
    .fbm-sm-cta-inner p { margin: 0 auto; }
}
@media (max-width: 600px) {
    .fbm-sm-section { padding: 48px 0; }
    .fbm-sm-specs-grid { grid-template-columns: 1fr 1fr; }
    .fbm-sm-usecases { grid-template-columns: 1fr 1fr; }
    .fbm-sm-included-grid { grid-template-columns: 1fr; }
    .fbm-sm-siblings { grid-template-columns: 1fr 1fr; }
    .fbm-sm-price-amount { font-size: 2rem; }
}
@media (max-width: 420px) {
    .fbm-sm-specs-grid { grid-template-columns: 1fr; }
    .fbm-sm-siblings { grid-template-columns: 1fr; }
    .fbm-sm-usecases { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   CONTACT US PAGE
════════════════════════════════════════════════════════════════════════ */
#fbm-contact-wrap { font-family: var(--ast-body-font-family, inherit); }
.fbm-contact-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Hero ── */
.fbm-contact-hero {
    background: #0a0f1e;
    padding: 100px 0 80px;
    text-align: center;
}
.fbm-contact-label {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: #60a5fa; margin-bottom: 16px;
}
.fbm-contact-h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: #fff; margin: 0 0 16px; line-height: 1.15;
}
.fbm-contact-sub {
    font-size: 17px; color: #94a3b8; max-width: 560px;
    margin: 0 auto; line-height: 1.7;
}

/* ── Three cards ── */
.fbm-contact-cards-section { padding: 64px 0; background: #f8fafc; }
.fbm-contact-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.fbm-contact-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 32px 28px; display: flex; flex-direction: column; gap: 12px;
    transition: box-shadow .2s, transform .2s;
}
.fbm-contact-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.fbm-contact-card-icon { font-size: 2rem; }
.fbm-contact-card h3 { font-size: 18px; font-weight: 700; color: #0a0f1e; margin: 0; }
.fbm-contact-card p { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; flex: 1; }
.fbm-contact-card-link {
    font-size: 14px; font-weight: 600; color: var(--fbm-primary);
    text-decoration: none !important; margin-top: 4px; display: inline-block;
}
.fbm-contact-card-link:hover { color: var(--fbm-primary-dark); }

/* ── Form section ── */
.fbm-contact-form-section { padding: 80px 0 96px; }
.fbm-contact-form-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start;
}
.fbm-contact-form-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800;
    color: #0a0f1e; margin: 0 0 8px;
}
.fbm-contact-form-sub { font-size: 15px; color: #64748b; margin: 0 0 28px; line-height: 1.6; }
.fbm-contact-form-wrap {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

/* Formidable Forms overrides */
.fbm-contact-form-wrap .frm_form_field { margin-bottom: 18px; }
.fbm-contact-form-wrap input[type="text"],
.fbm-contact-form-wrap input[type="email"],
.fbm-contact-form-wrap input[type="tel"],
.fbm-contact-form-wrap textarea,
.fbm-contact-form-wrap select {
    width: 100% !important; padding: 11px 14px !important;
    border: 1.5px solid #e2e8f0 !important; border-radius: 8px !important;
    font-size: 15px !important; font-family: inherit !important;
    color: #1a202c !important; background: #fff !important;
    transition: border-color .2s !important; box-sizing: border-box !important;
}
.fbm-contact-form-wrap input:focus,
.fbm-contact-form-wrap textarea:focus,
.fbm-contact-form-wrap select:focus {
    outline: none !important; border-color: var(--fbm-primary) !important;
    box-shadow: 0 0 0 3px rgba(0,102,255,.1) !important;
}
.fbm-contact-form-wrap .frm_submit button,
.fbm-contact-form-wrap input[type="submit"] {
    background: var(--fbm-primary) !important; color: #fff !important;
    border: none !important; border-radius: 8px !important;
    padding: 13px 32px !important; font-size: 15px !important;
    font-weight: 700 !important; font-family: inherit !important;
    cursor: pointer !important; transition: background .2s !important;
}
.fbm-contact-form-wrap .frm_submit button:hover,
.fbm-contact-form-wrap input[type="submit"]:hover {
    background: var(--fbm-primary-dark) !important;
}

/* ── Side info column ── */
.fbm-contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.fbm-contact-info-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 20px;
}
.fbm-contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.fbm-contact-info-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: #94a3b8; margin-bottom: 4px;
}
.fbm-contact-info-value {
    font-size: 15px; font-weight: 600; color: #0a0f1e;
    text-decoration: none !important; display: block; line-height: 1.4;
}
a.fbm-contact-info-value:hover { color: var(--fbm-primary); }

.fbm-contact-reserve-box {
    background: #0a0f1e; border-radius: 14px; padding: 28px 24px;
    margin-top: 8px; text-align: center;
}
.fbm-contact-reserve-box p {
    font-size: 14px; color: #94a3b8; margin: 0 0 16px; line-height: 1.6;
}
.fbm-contact-reserve-btn {
    display: inline-block; background: var(--fbm-primary);
    color: #fff !important; text-decoration: none !important;
    padding: 12px 24px; border-radius: 8px; font-size: 14px;
    font-weight: 700; transition: background .2s;
}
.fbm-contact-reserve-btn:hover { background: var(--fbm-primary-dark); }

/* ── Responsive ── */
@media (max-width: 960px) {
    .fbm-contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .fbm-contact-info-col { flex-direction: row; flex-wrap: wrap; }
    .fbm-contact-info-card { flex: 1 1 240px; }
    .fbm-contact-reserve-box { flex: 1 1 100%; }
}
@media (max-width: 720px) {
    .fbm-contact-cards { grid-template-columns: 1fr; gap: 16px; }
    .fbm-contact-hero { padding: 80px 0 60px; }
}
@media (max-width: 480px) {
    .fbm-contact-info-col { flex-direction: column; }
    .fbm-contact-form-wrap { padding: 20px 16px; }
}

/* ── FURI invite card (contact page) ── */
.fbm-furi-invite-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1.5px solid var(--fbm-border);
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
}
.fbm-furi-invite-avatar {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, #0066FF, #0d1b3e);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800; color: #fff;
}
.fbm-furi-invite-name {
    font-weight: 700; font-size: 15px; color: var(--fbm-text);
    margin: 0 0 6px;
}
.fbm-furi-invite-name span { font-weight: 400; color: var(--fbm-muted); font-size: 13px; }
.fbm-furi-invite-tagline { font-size: 14px; color: var(--fbm-muted); line-height: 1.6; margin: 0; }
.fbm-furi-open-btn {
    display: flex; align-items: center; gap: 10px;
    background: var(--fbm-primary); color: #fff !important;
    border: none; border-radius: 10px;
    padding: 14px 28px; font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: inherit;
    text-decoration: none !important;
    transition: background .2s;
    width: 100%;
    justify-content: center;
}
.fbm-furi-open-btn:hover { background: var(--fbm-primary-dark); }
.fbm-furi-note { text-align: center; font-size: 12px; color: var(--fbm-muted); margin: 10px 0 0; }

/* ════════════════════════════════════════════════════════════════════════
   FAQ PAGE
════════════════════════════════════════════════════════════════════════ */

/* ── Variables (dark footer bg reused) ── */
:root { --fbm-footer-bg: #0a0f1e; }

/* ── Hero ── */
#fbm-faq-wrap { font-family: var(--ast-body-font-family, inherit); color: var(--fbm-text); }

.fbm-faq-hero {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 100%);
    padding: 100px 0 80px;
    text-align: center;
}
.fbm-faq-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.fbm-faq-inner-wide { max-width: 1100px; }

.fbm-faq-label {
    display: inline-block;
    background: rgba(0,102,255,.18);
    color: #60a5fa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.fbm-faq-h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.fbm-faq-sub {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Body section ── */
.fbm-faq-body {
    background: var(--fbm-bg);
    padding: 64px 0 80px;
}

/* ── Category tabs ── */
.fbm-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}
.fbm-faq-tab {
    background: #fff;
    border: 1.5px solid var(--fbm-border);
    color: var(--fbm-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .2s;
}
.fbm-faq-tab:hover { border-color: var(--fbm-primary); color: var(--fbm-primary); }
.fbm-faq-tab.active {
    background: var(--fbm-primary);
    border-color: var(--fbm-primary);
    color: #fff;
}

/* ── FAQ groups ── */
.fbm-faq-group { margin-bottom: 56px; }
.fbm-faq-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fbm-text);
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--fbm-primary);
    display: inline-block;
}

/* ── Accordion items ── */
.fbm-faq-item {
    background: #fff;
    border: 1px solid var(--fbm-border);
    border-radius: var(--fbm-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.fbm-faq-item:hover { box-shadow: var(--fbm-shadow); }
.fbm-faq-item.open { border-color: var(--fbm-primary); box-shadow: 0 0 0 2px rgba(0,102,255,.08); }

.fbm-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fbm-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color .2s;
}
.fbm-faq-q:hover { color: var(--fbm-primary); }
.fbm-faq-item.open .fbm-faq-q { color: var(--fbm-primary); }

.fbm-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--fbm-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--fbm-muted);
    transition: all .2s;
    line-height: 1;
}
.fbm-faq-item.open .fbm-faq-icon {
    background: var(--fbm-primary);
    border-color: var(--fbm-primary);
    color: #fff;
}

.fbm-faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--fbm-muted);
}
.fbm-faq-item.open .fbm-faq-a { display: block; }
.fbm-faq-a p { margin: 0 0 12px; }
.fbm-faq-a p:last-child { margin-bottom: 0; }
.fbm-faq-a ol { margin: 0 0 12px; padding-left: 20px; }
.fbm-faq-a ol li { margin-bottom: 8px; }
.fbm-faq-a a { color: var(--fbm-primary); text-decoration: underline; }
.fbm-faq-a strong { color: var(--fbm-text); font-weight: 600; }

/* ── Bottom CTA ── */
.fbm-faq-cta {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 100%);
    padding: 80px 0;
    text-align: center;
}
.fbm-faq-cta h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.fbm-faq-cta p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0 0 32px;
}
.fbm-faq-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.fbm-faq-btn-primary {
    display: inline-block;
    background: var(--fbm-primary);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: background .2s;
}
.fbm-faq-btn-primary:hover { background: var(--fbm-primary-dark); }

.fbm-faq-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,.3);
    transition: border-color .2s;
}
.fbm-faq-btn-ghost:hover { border-color: rgba(255,255,255,.7); }

/* ── Responsive ── */
@media (max-width: 720px) {
    .fbm-faq-tabs { gap: 8px; }
    .fbm-faq-tab  { font-size: 13px; padding: 8px 16px; }
    .fbm-faq-hero { padding: 72px 0 56px; }
    .fbm-faq-body { padding: 48px 0 60px; }
    .fbm-faq-q    { font-size: 0.95rem; padding: 16px 18px; }
    .fbm-faq-a    { padding: 0 18px 16px; }
}
@media (max-width: 480px) {
    .fbm-faq-cta-btns { flex-direction: column; align-items: center; }
    .fbm-faq-btn-primary,
    .fbm-faq-btn-ghost  { width: 100%; max-width: 320px; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════════════
   RENT HUMANOID ROBOT PAGE  (v2 — complete rewrite)
════════════════════════════════════════════════════════════════════════ */
#fbm-humanoid-wrap { font-family: var(--ast-body-font-family, inherit); color: #1a202c; }
/* shared layout */
#fbm-humanoid-wrap * { box-sizing:border-box; }
.fbm-hr-wrap   { width:100%; }
.fbm-hr-inner  { max-width:1100px; margin:0 auto; padding:0 24px; }

/* ── buttons ── */
.fbm-hr-btn-blue,
.fbm-hr-btn-white {
    display:inline-block; text-decoration:none !important;
    padding:14px 32px; border-radius:8px; font-weight:700;
    font-size:1rem; cursor:pointer; transition:opacity .2s;
}
.fbm-hr-btn-blue  { background:#0066FF; color:#fff !important; }
.fbm-hr-btn-blue:hover  { opacity:.88; }
.fbm-hr-btn-white { background:#fff; color:#0066FF !important; border:2px solid #0066FF; }
.fbm-hr-btn-white:hover { background:#f0f7ff; }

/* ── HERO ── */
.fbm-hr-hero {
    background:#0a0f1e !important;
    padding:100px 0 90px !important;
    text-align:center !important;
}
.fbm-hr-hero-label {
    display:inline-block; background:rgba(99,179,237,.15);
    color:#63b3ed; font-size:12px; font-weight:700;
    letter-spacing:2px; text-transform:uppercase;
    padding:6px 16px; border-radius:100px; margin-bottom:20px;
}
.fbm-hr-h1 {
    font-size:clamp(2.2rem,5vw,3.4rem) !important;
    font-weight:900 !important; color:#ffffff !important;
    margin:0 0 20px !important; line-height:1.1 !important;
}
.fbm-hr-hero-sub {
    color:#94a3b8 !important; font-size:1.1rem !important;
    max-width:640px; margin:0 auto 28px !important;
    line-height:1.7 !important;
}
.fbm-hr-hero-checks {
    display:flex; justify-content:center; flex-wrap:wrap;
    gap:10px 28px; margin-bottom:36px;
}
.fbm-hr-hero-checks span { color:#60a5fa; font-size:14px; font-weight:500; }
.fbm-hr-hero-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.fbm-hr-hero .fbm-hr-btn-white { color:#fff !important; background:transparent; border-color:rgba(255,255,255,.45); }
.fbm-hr-hero .fbm-hr-btn-white:hover { background:rgba(255,255,255,.1); }

/* ── STATS ── */
.fbm-hr-stats { background:#ffffff; border-bottom:1px solid #e2e8f0; padding:28px 0; }
.fbm-hr-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); text-align:center; }
.fbm-hr-stat { padding:12px 0; border-right:1px solid #e2e8f0; }
.fbm-hr-stat:last-child { border-right:none; }
.fbm-hr-stat-num   { font-size:2rem; font-weight:900; color:#0066FF; line-height:1; }
.fbm-hr-stat-label { font-size:13px; color:#64748b; margin-top:4px; }

/* ── SECTION HEADERS ── */
.fbm-hr-sec-head { text-align:center; margin-bottom:48px; }
.fbm-hr-sec-tag  {
    display:inline-block; background:#eff6ff; color:#0066FF;
    font-size:11px; font-weight:700; letter-spacing:2px;
    text-transform:uppercase; padding:5px 14px;
    border-radius:100px; margin-bottom:12px;
}
.fbm-hr-sec-head h2 {
    font-size:clamp(1.6rem,3.5vw,2.2rem); font-weight:800;
    color:#1a202c; margin:0 0 10px;
}
.fbm-hr-sec-head p { color:#64748b; font-size:1rem; margin:0; }

/* ── WHAT IS section ── */
.fbm-hr-what { background:#f7f8fc; padding:80px 0; }
.fbm-hr-what-grid {
    display:grid; grid-template-columns:1fr 1fr;
    gap:56px; align-items:start;
}
.fbm-hr-what-text h2 { font-size:clamp(1.5rem,3vw,2rem); font-weight:800; color:#1a202c; margin:0 0 16px; }
.fbm-hr-what-text p  { color:#64748b; line-height:1.75; margin:0 0 14px; font-size:15px; }
.fbm-hr-feat-list    { display:flex; flex-direction:column; gap:18px; }
.fbm-hr-feat-item    { display:flex; align-items:flex-start; gap:14px; background:#fff; border:1px solid #e2e8f0; border-radius:10px; padding:16px; }
.fbm-hr-feat-icon    { font-size:24px; flex-shrink:0; }
.fbm-hr-feat-title   { font-weight:700; font-size:14px; color:#1a202c; margin:0 0 4px; }
.fbm-hr-feat-desc    { font-size:13px; color:#64748b; line-height:1.5; margin:0; }

/* ── ROBOTS GRID ── */
.fbm-hr-robots { background:#fff; padding:80px 0; }
.fbm-hr-robots-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:24px;
}
.fbm-hr-card {
    background:#fff; border:1.5px solid #e2e8f0;
    border-radius:14px; overflow:hidden;
    display:flex; flex-direction:column;
    transition:box-shadow .2s, border-color .2s;
}
.fbm-hr-card:hover { box-shadow:0 8px 32px rgba(0,0,0,.1); border-color:#0066FF; }
.fbm-hr-card-img { aspect-ratio:4/3; overflow:hidden; background:#f1f5f9; }
.fbm-hr-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s; }
.fbm-hr-card:hover .fbm-hr-card-img img { transform:scale(1.04); }
.fbm-hr-card-body { padding:20px; display:flex; flex-direction:column; flex:1; gap:10px; }
.fbm-hr-card-cat  {
    display:inline-block; font-size:11px; font-weight:700;
    letter-spacing:1px; text-transform:uppercase;
    color:#0066FF; background:#eff6ff;
    padding:3px 10px; border-radius:100px;
}
.fbm-hr-card-name { font-size:1.1rem; font-weight:800; color:#1a202c; margin:0; line-height:1.2; }
.fbm-hr-card-mfr  { font-size:12px; color:#64748b; }
.fbm-hr-card-desc { font-size:13.5px; color:#64748b; line-height:1.6; margin:0; }
.fbm-hr-card-specs { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.fbm-hr-card-spec  { background:#f7f8fc; border-radius:6px; padding:7px 10px; }
.fbm-hr-card-spec-label { display:block; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:#64748b; }
.fbm-hr-card-spec-val   { display:block; font-size:13px; font-weight:600; color:#1a202c; margin-top:2px; }
.fbm-hr-card-tags { display:flex; flex-wrap:wrap; gap:6px; }
.fbm-hr-card-tag  { background:#f1f5f9; color:#64748b; font-size:11px; font-weight:600; padding:4px 10px; border-radius:100px; }
.fbm-hr-card-foot {
    margin-top:auto; padding-top:14px;
    border-top:1px solid #e2e8f0;
    display:flex; align-items:center;
    justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.fbm-hr-price-wrap { display:flex; align-items:baseline; gap:4px; }
.fbm-hr-price-from { font-size:11px; color:#64748b; }
.fbm-hr-price-num  { font-size:1.3rem; font-weight:900; color:#1a202c; }
.fbm-hr-price-mo   { font-size:12px; color:#64748b; }
.fbm-hr-card-acts  { display:flex; gap:8px; }
.fbm-hr-card-detail {
    font-size:13px; font-weight:600; color:#64748b !important;
    text-decoration:none !important; padding:8px 14px;
    border:1.5px solid #e2e8f0; border-radius:8px; transition:all .2s;
}
.fbm-hr-card-detail:hover { border-color:#0066FF; color:#0066FF !important; }
.fbm-hr-card-reserve {
    font-size:13px; font-weight:700; color:#fff !important;
    text-decoration:none !important; padding:8px 16px;
    background:#0066FF; border-radius:8px; transition:background .2s;
}
.fbm-hr-card-reserve:hover { background:#0050CC; }

/* ── RENT vs BUY ── */
.fbm-hr-why { background:#f7f8fc; padding:80px 0; }
.fbm-hr-compare { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.fbm-hr-compare-col { padding:28px 24px; border-radius:14px; background:#fff; border:1.5px solid #e2e8f0; }
.fbm-hr-compare-col h3 { font-size:1rem; font-weight:700; margin:0 0 16px; }
.fbm-hr-compare-buy h3  { color:#dc2626; }
.fbm-hr-compare-rent h3 { color:#16a34a; }
.fbm-hr-compare-rent    { border-color:#0066FF; background:#f0f7ff; }
.fbm-hr-compare-col ul  { margin:0; padding-left:18px; }
.fbm-hr-compare-col li  { font-size:14px; color:#64748b; margin-bottom:10px; line-height:1.55; }

/* ── HOW IT WORKS ── */
.fbm-hr-how { background:#fff; padding:80px 0; }
.fbm-hr-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.fbm-hr-step  { text-align:center; padding:20px 12px; }
.fbm-hr-step-num {
    width:52px; height:52px; border-radius:50%;
    background:#0066FF; color:#fff;
    font-size:1.1rem; font-weight:900;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 16px;
}
.fbm-hr-step-title { font-size:1rem; font-weight:700; color:#1a202c; margin:0 0 10px; }
.fbm-hr-step-desc  { font-size:13.5px; color:#64748b; line-height:1.65; margin:0; }

/* ── USE CASES ── */
.fbm-hr-usecases { background:#f7f8fc; padding:80px 0; }
.fbm-hr-uc-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.fbm-hr-uc-card  { background:#fff; border:1.5px solid #e2e8f0; border-radius:12px; padding:24px; transition:box-shadow .2s; }
.fbm-hr-uc-card:hover { box-shadow:0 4px 20px rgba(0,0,0,.08); }
.fbm-hr-uc-icon  { font-size:32px; display:block; margin-bottom:12px; }
.fbm-hr-uc-card h3 { font-size:1rem; font-weight:700; color:#1a202c; margin:0 0 8px; }
.fbm-hr-uc-card p  { font-size:13.5px; color:#64748b; line-height:1.6; margin:0; }

/* ── FAQ ── */
.fbm-hr-faq { background:#fff; padding:80px 0; }
.fbm-hr-faq-list { display:flex; flex-direction:column; gap:10px; max-width:800px; margin:0 auto; }
.fbm-hr-faq-item { border:1.5px solid #e2e8f0; border-radius:10px; overflow:hidden; }
.fbm-hr-faq-item.open { border-color:#0066FF; }
.fbm-hr-faq-q {
    width:100%; background:none; border:none;
    padding:18px 22px; text-align:left;
    font-size:1rem; font-weight:600; color:#1a202c;
    cursor:pointer; display:flex; justify-content:space-between;
    align-items:center; gap:10px; font-family:inherit; transition:color .2s;
}
.fbm-hr-faq-q:hover, .fbm-hr-faq-item.open .fbm-hr-faq-q { color:#0066FF; }
.fbm-hr-faq-chevron {
    flex-shrink:0; width:26px; height:26px; border-radius:50%;
    border:1.5px solid #e2e8f0;
    display:flex; align-items:center; justify-content:center;
    font-size:16px; color:#64748b; transition:all .2s; line-height:1;
}
.fbm-hr-faq-item.open .fbm-hr-faq-chevron { background:#0066FF; border-color:#0066FF; color:#fff; }
.fbm-hr-faq-a { display:none; padding:0 22px 18px; font-size:14px; color:#64748b; line-height:1.75; }
.fbm-hr-faq-a p { margin:0; }
.fbm-hr-faq-item.open .fbm-hr-faq-a { display:block; }

/* ── FINAL CTA ── */
.fbm-hr-cta {
    background:#0a0f1e !important;
    padding:80px 0 !important; text-align:center !important;
}
.fbm-hr-cta h2 { font-size:clamp(1.6rem,4vw,2.4rem); font-weight:900; color:#ffffff !important; margin:0 0 14px; }
.fbm-hr-cta p  { color:#94a3b8; font-size:1rem; margin:0 0 32px; }
.fbm-hr-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
    .fbm-hr-what-grid { grid-template-columns:1fr; gap:40px; }
    .fbm-hr-compare   { grid-template-columns:1fr; }
    .fbm-hr-steps     { grid-template-columns:repeat(2,1fr); }
    .fbm-hr-uc-grid   { grid-template-columns:repeat(2,1fr); }
    .fbm-hr-stats-grid { grid-template-columns:repeat(2,1fr); }
    .fbm-hr-stat { border-bottom:1px solid #e2e8f0; }
    .fbm-hr-stat:nth-child(2) { border-right:none; }
}
@media (max-width:640px) {
    .fbm-hr-hero  { padding:72px 0 64px !important; }
    .fbm-hr-steps { grid-template-columns:1fr; }
    .fbm-hr-uc-grid   { grid-template-columns:1fr; }
    .fbm-hr-robots-grid { grid-template-columns:1fr; }
    .fbm-hr-stats-grid  { grid-template-columns:1fr 1fr; }
    .fbm-hr-cta-btns { flex-direction:column; align-items:center; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SINGLE ROBOT PAGE  (.fbm-rp-*)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Layout shell ── */
.fbm-robot-page { font-family: inherit; color: var(--fbm-text, #1a202c); }
.fbm-rp-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Section wrappers ── */
.fbm-rp-section       { padding: 64px 0; }
.fbm-rp-section-light { background: #f8fafc; }
.fbm-rp-section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 36px;
    text-align: center;
}

/* ── HERO ── */
.fbm-rp-hero { padding: 56px 0 40px; background: #fff; border-bottom: 1px solid #e2e8f0; }
.fbm-rp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Media panel ── */
.fbm-rp-media { display: flex; flex-direction: column; gap: 12px; }
.fbm-rp-main-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fbm-rp-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.fbm-rp-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fbm-rp-thumb {
    width: 72px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    padding: 0;
    background: #f8fafc;
    transition: border-color .15s;
}
.fbm-rp-thumb:hover  { border-color: #94a3b8; }
.fbm-rp-thumb.active { border-color: var(--fbm-primary, #2563eb); }
.fbm-rp-thumb img    { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Info panel ── */
.fbm-rp-info { display: flex; flex-direction: column; gap: 20px; }

.fbm-rp-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: #64748b; }
.fbm-rp-sep  { color: #cbd5e1; }
.fbm-rp-cat  { font-weight: 600; color: var(--fbm-primary, #2563eb); }

.fbm-rp-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: #0f172a; margin: 0; line-height: 1.2; }

.fbm-rp-desc { font-size: .97rem; color: #475569; line-height: 1.65; margin: 0; }

/* ── Variant tabs ── */
.fbm-rp-variants-label { font-size: .82rem; font-weight: 600; color: #64748b; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.fbm-rp-variant-tabs   { display: flex; gap: 8px; flex-wrap: wrap; }
.fbm-rp-variant-tab {
    padding: 8px 18px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    background: #fff;
    font-size: .9rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
}
.fbm-rp-variant-tab:hover  { border-color: #94a3b8; color: #0f172a; }
.fbm-rp-variant-tab.active { border-color: var(--fbm-primary, #2563eb); background: var(--fbm-primary, #2563eb); color: #fff; }

/* ── Price block ── */
.fbm-rp-price-block  { background: #f8fafc; border-radius: 14px; padding: 20px 24px; }
.fbm-rp-price-main   { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.fbm-rp-price-from   { font-size: .82rem; color: #64748b; }
.fbm-rp-price-amount { font-size: 2rem; font-weight: 900; color: #0f172a; }
.fbm-rp-price-mo     { font-size: .9rem; color: #64748b; }
.fbm-rp-price-tiers  { display: flex; gap: 8px; flex-wrap: wrap; }
.fbm-rp-price-tier   {
    flex: 1;
    min-width: 90px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
}
.fbm-rp-tier-label { font-size: .75rem; color: #64748b; margin-bottom: 4px; }
.fbm-rp-tier-price { font-size: .9rem; font-weight: 700; color: #0f172a; }

/* ── Reserve CTA area ── */
.fbm-rp-reserve-btn {
    display: inline-block;
    background: var(--fbm-primary, #2563eb) !important;
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity .15s;
}
.fbm-rp-reserve-btn:hover { opacity: .88; color: #fff !important; text-decoration: none; }
.fbm-rp-reserve-note  { font-size: .82rem; color: #64748b; margin: 8px 0 0; }
.fbm-rp-unavailable   { font-size: .95rem; color: #64748b; }
.fbm-rp-unavailable a { color: var(--fbm-primary, #2563eb); text-decoration: underline; }

/* ── Specs grid ── */
.fbm-rp-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.fbm-rp-spec-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
}
.fbm-rp-spec-label { font-size: .78rem; color: #64748b; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.fbm-rp-spec-value { font-size: .97rem; font-weight: 700; color: #0f172a; }

/* ── Video ── */
.fbm-rp-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
}
.fbm-rp-video-wrap iframe,
.fbm-rp-video-wrap video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ── Use cases ── */
.fbm-rp-usecases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.fbm-rp-usecase {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}
.fbm-rp-usecase-icon  { font-size: 2rem; margin-bottom: 10px; }
.fbm-rp-usecase-title { font-weight: 700; font-size: .95rem; color: #0f172a; margin-bottom: 6px; }
.fbm-rp-usecase-desc  { font-size: .83rem; color: #64748b; line-height: 1.5; }

/* ── Bottom CTA ── */
.fbm-rp-bottom-cta { background: #0f172a; padding: 56px 0; }
.fbm-rp-cta-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.fbm-rp-cta-inner h2 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 800; color: #fff; margin: 0 0 8px; }
.fbm-rp-cta-inner p  { color: #94a3b8; margin: 0; font-size: .95rem; }
.fbm-rp-bottom-cta .fbm-rp-reserve-btn {
    background: #fff !important;
    color: #0f172a !important;
    white-space: nowrap;
}
.fbm-rp-bottom-cta .fbm-rp-reserve-btn:hover { opacity: .9; color: #0f172a !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .fbm-rp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .fbm-rp-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
    .fbm-rp-hero  { padding: 32px 0 24px; }
    .fbm-rp-section { padding: 40px 0; }
    .fbm-rp-specs-grid { grid-template-columns: 1fr 1fr; }
    .fbm-rp-price-tiers { flex-direction: column; }
    .fbm-rp-thumb { width: 60px; height: 46px; }
}
}