/*
 * ============================================================
 *  FUTUROBOTS — LANDING PAGE STYLES
 *  Covers: all landing page templates and shared components
 *
 *  ALL colors reference --fbm-* tokens from design-tokens.css.
 *  ZERO hardcoded hex values in this file.
 *
 *  Templates covered:
 *    - landing-common.php         (.fbm-lg-*)
 *    - rent-humanoid-robot-usa    (.fbm-us-*)
 *    - humanoid-page              (.fbm-hr-*)
 *    - robot-rental-page          (.fbm-rr-*)
 *    - party-robot-rental-page    (.fbm-pr-*)
 *    - robot-dog-rental-page      (.fbm-rd-*)
 *    - robot-rental-for-events    (.fbm-re-*)
 * ============================================================
 */

/* ============================================================
   1. SHARED LANDING INFRASTRUCTURE  (.fbm-hr-* / .fbm-lg-*)
      Previously in landing-common.php <style> block
   ============================================================ */

/* ── Shared inner container ── */
.fbm-hr-inner {
    max-width: var(--fbm-container);
    margin: 0 auto;
    padding: 0 var(--fbm-space-6);
}

/* ── Shared section heading ── */
.fbm-hr-sec-head {
    text-align: center;
    margin-bottom: var(--fbm-space-12);
}
.fbm-hr-sec-head h2 {
    font-size: var(--fbm-text-3xl);
    font-weight: var(--fbm-font-weight-black);
    color: var(--fbm-text);
    margin: 0 0 var(--fbm-space-3);
}
.fbm-hr-sec-head p {
    font-size: var(--fbm-text-md);
    color: var(--fbm-text-muted);
    line-height: var(--fbm-line-height-loose);
    max-width: var(--fbm-container-xs);
    margin: 0 auto;
}
.fbm-hr-sec-tag {
    display: inline-block;
    background: var(--fbm-info-bg);
    color: var(--fbm-primary);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-black);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--fbm-radius-pill);
    margin-bottom: var(--fbm-space-3);
}

/* ── Authority strip ── */
.fbm-lg-authority {
    padding: var(--fbm-space-8) 0;
    background: var(--fbm-bg-dark);
    text-align: center;
}
.fbm-lg-authority-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--fbm-radius-pill);
    background: rgba(59, 130, 246, .15);
    color: var(--fbm-link-on-dark);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-bold);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: var(--fbm-space-4);
}
.fbm-lg-authority-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    color: var(--fbm-border);
    font-size: var(--fbm-text-base);
}
.fbm-lg-authority-item { display: flex; align-items: center; gap: 7px; }
.fbm-lg-authority-item strong { color: var(--fbm-text-light); font-size: var(--fbm-text-lg); }
@media (max-width: 640px) {
    .fbm-lg-authority-row { gap: 14px; font-size: var(--fbm-text-sm); }
    .fbm-lg-authority-item strong { font-size: var(--fbm-text-base); }
}

/* ── Testimonials (shared) ── */
.fbm-lg-reviews { padding: var(--fbm-space-20) 0; background: var(--fbm-bg-alt); }
.fbm-lg-reviews-header { text-align: center; margin-bottom: var(--fbm-space-10); }
.fbm-lg-reviews-stars { font-size: 1.6rem; color: var(--fbm-accent); letter-spacing: 2px; display: block; margin-bottom: var(--fbm-space-2); }
.fbm-lg-reviews-title { font-size: var(--fbm-text-2xl); font-weight: var(--fbm-font-weight-bold); color: var(--fbm-text); margin: 0 0 4px; }
.fbm-lg-reviews-sub { font-size: var(--fbm-text-sm); color: var(--fbm-text-muted); margin: 0; }
.fbm-lg-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .fbm-lg-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .fbm-lg-reviews-grid { grid-template-columns: 1fr; } }
.fbm-lg-review-card {
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-card-radius);
    padding: 28px var(--fbm-space-6);
    border: 1px solid var(--fbm-card-border);
    display: flex;
    flex-direction: column;
    gap: var(--fbm-space-4);
}
.fbm-lg-review-quote { font-size: 2.4rem; line-height: 1; color: var(--fbm-primary); font-weight: var(--fbm-font-weight-bold); }
.fbm-lg-review-text { font-size: var(--fbm-text-base); color: var(--fbm-text); line-height: var(--fbm-line-height-loose); margin: 0; flex: 1; }
.fbm-lg-reviewer { display: flex; align-items: center; gap: var(--fbm-space-3); }
.fbm-lg-reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fbm-primary), var(--fbm-primary-dark));
    color: var(--fbm-text-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: var(--fbm-font-weight-bold);
    font-size: var(--fbm-text-sm);
    flex-shrink: 0;
}
.fbm-lg-reviewer strong { display: block; font-size: var(--fbm-text-sm); color: var(--fbm-text); }
.fbm-lg-reviewer span { font-size: var(--fbm-text-xs); color: var(--fbm-text-muted); }

/* ── Trust bar ── */
.fbm-lg-trust { padding: 28px 0; background: var(--fbm-bg-alt); text-align: center; }
.fbm-lg-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; font-size: var(--fbm-text-sm); color: var(--fbm-text); }
.fbm-lg-trust-item { display: flex; align-items: center; gap: 6px; }
.fbm-lg-trust-item strong { color: var(--fbm-text); }
@media (max-width: 640px) { .fbm-lg-trust-row { gap: 10px; font-size: var(--fbm-text-xs); } }

/* ── Gallery ── */
.fbm-lg-gallery { padding: var(--fbm-space-20) 0; background: var(--fbm-bg-alt); }
.fbm-lg-gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 1024px) { .fbm-lg-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .fbm-lg-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } }
.fbm-lg-gal-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--fbm-radius-md);
    cursor: pointer;
    background: var(--fbm-bg-dark);
    aspect-ratio: 4 / 3;
}
.fbm-lg-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease, opacity .35s ease; }
.fbm-lg-gal-item:hover img { transform: scale(1.07); opacity: .85; }
.fbm-lg-gal-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s ease; }
.fbm-lg-gal-item:hover .fbm-lg-gal-overlay { opacity: 1; }
.fbm-lg-gal-zoom { font-size: 2rem; color: var(--fbm-text-light); text-shadow: 0 2px 8px rgba(0, 0, 0, .6); line-height: 1; }

/* ── Lightbox ── */
.fbm-lg-lightbox {
    position: fixed; inset: 0;
    z-index: var(--fbm-z-lightbox);
    background: rgba(0, 0, 0, .92);
    display: flex; align-items: center; justify-content: center;
}
.fbm-lg-lb-wrap { max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.fbm-lg-lb-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--fbm-radius-sm); display: block; }
.fbm-lg-lb-close,
.fbm-lg-lb-prev,
.fbm-lg-lb-next {
    position: fixed;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: var(--fbm-text-light);
    cursor: pointer;
    border-radius: 50%;
    width: 44px; height: 44px;
    font-size: 1.5rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--fbm-transition);
}
.fbm-lg-lb-close:hover,
.fbm-lg-lb-prev:hover,
.fbm-lg-lb-next:hover { background: rgba(255, 255, 255, .28); }
.fbm-lg-lb-close { top: 18px; right: 18px; font-size: 1.8rem; }
.fbm-lg-lb-prev  { left: 12px; top: 50%; transform: translateY(-50%); }
.fbm-lg-lb-next  { right: 12px; top: 50%; transform: translateY(-50%); }

/* ── Videos ── */
.fbm-lg-videos { padding: var(--fbm-space-20) 0; background: var(--fbm-bg); }
.fbm-lg-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px) { .fbm-lg-video-grid { grid-template-columns: 1fr; } }
.fbm-lg-video-item {
    position: relative;
    border-radius: var(--fbm-radius-md);
    overflow: hidden;
    background: var(--fbm-bg-dark);
    box-shadow: var(--fbm-shadow-md);
}
.fbm-lg-video-item video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.fbm-lg-video-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 8px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
    color: var(--fbm-text-light);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-medium);
}


/* ============================================================
   2. USA LANDING PAGE  (.fbm-us-*)
      /rent-humanoid-robot-usa/
   ============================================================ */

#fbm-us-lp {
    font-family: var(--fbm-font);
    color: var(--fbm-text);
}
#fbm-us-lp *,
#fbm-us-lp *::before,
#fbm-us-lp *::after { box-sizing: border-box; }

/* ── Topbar ── */
.fbm-us-topbar {
    background: var(--fbm-bg-dark);
    padding: 14px var(--fbm-space-6);
    display: flex; align-items: center; justify-content: space-between;
}
.fbm-us-topbar-logo {
    color: var(--fbm-text-light);
    font-size: var(--fbm-text-xl);
    font-weight: var(--fbm-font-weight-black);
    letter-spacing: .04em;
    text-decoration: none;
}
.fbm-us-topbar-logo span { color: var(--fbm-primary); }
.fbm-us-topbar-cta {
    background: var(--fbm-primary);
    color: var(--fbm-text-light); border: none;
    padding: 9px 20px;
    border-radius: var(--fbm-radius-sm);
    font-weight: var(--fbm-font-weight-bold);
    font-size: var(--fbm-text-sm);
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: background var(--fbm-transition);
}
.fbm-us-topbar-cta:hover { background: var(--fbm-primary-dark); color: var(--fbm-text-light); }

/* ── Urgency bar ── */
.fbm-us-urgency {
    background: var(--fbm-error);
    color: var(--fbm-text-light);
    text-align: center;
    padding: 10px var(--fbm-space-4);
    font-size: var(--fbm-text-sm);
    font-weight: var(--fbm-font-weight-bold);
    letter-spacing: .01em;
}
.fbm-us-urgency span { margin: 0 6px; }

/* ── Hero ── */
.fbm-us-hero {
    background: linear-gradient(135deg, var(--fbm-bg-dark) 0%, var(--fbm-hero-gradient-end) 100%);
    padding: 70px var(--fbm-space-6) 60px;
    text-align: center;
}
.fbm-us-hero-inner { max-width: var(--fbm-container-sm); margin: 0 auto; }
.fbm-us-hero-badge {
    display: inline-flex; align-items: center; gap: var(--fbm-space-2);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--fbm-radius-pill);
    padding: 7px 18px;
    color: var(--fbm-text-light);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-bold);
    letter-spacing: .05em; text-transform: uppercase;
    margin-bottom: var(--fbm-space-5);
}
.fbm-us-hero-h1 {
    font-size: var(--fbm-text-4xl);
    font-weight: var(--fbm-font-weight-black);
    color: var(--fbm-text-light);
    line-height: var(--fbm-line-height-tight);
    margin: 0 0 18px;
}
.fbm-us-hero-h1 em { color: var(--fbm-link-on-dark); font-style: normal; }
.fbm-us-hero-sub {
    font-size: var(--fbm-text-lg);
    color: rgba(255, 255, 255, .7);
    line-height: var(--fbm-line-height-loose);
    max-width: var(--fbm-container-xs);
    margin: 0 auto 28px;
}
.fbm-us-trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: var(--fbm-space-8); }
.fbm-us-trust-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--fbm-radius-pill);
    padding: 7px 16px;
    color: var(--fbm-border);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-medium);
    display: flex; align-items: center; gap: 6px;
}
.fbm-us-hero-btn {
    display: inline-block;
    background: var(--fbm-accent);
    color: var(--fbm-btn-accent-text);
    font-size: var(--fbm-text-lg);
    font-weight: var(--fbm-font-weight-black);
    padding: 18px 40px;
    border-radius: var(--fbm-radius-md);
    text-decoration: none;
    letter-spacing: .02em; text-transform: uppercase;
    box-shadow: var(--fbm-shadow-accent);
    transition: transform var(--fbm-transition), box-shadow var(--fbm-transition);
}
.fbm-us-hero-btn:hover { transform: translateY(-2px); box-shadow: var(--fbm-shadow-xl); color: var(--fbm-btn-accent-text); }
.fbm-us-hero-sub2 { margin-top: 14px; color: var(--fbm-text-muted); font-size: var(--fbm-text-xs); }

/* ── Stats strip ── */
.fbm-us-stats { background: var(--fbm-primary); padding: 28px var(--fbm-space-6); }
.fbm-us-stats-grid {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
@media (max-width: 640px) { .fbm-us-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; } }
.fbm-us-stat { text-align: center; padding: 0 var(--fbm-space-4); border-right: 1px solid rgba(255, 255, 255, .2); }
.fbm-us-stat:last-child { border-right: none; }
.fbm-us-stat-num { font-size: 2rem; font-weight: var(--fbm-font-weight-black); color: var(--fbm-text-light); line-height: 1; }
.fbm-us-stat-label { font-size: var(--fbm-text-xs); color: rgba(255, 255, 255, .75); margin-top: 4px; font-weight: var(--fbm-font-weight-medium); text-transform: uppercase; letter-spacing: .04em; }

/* ── Section structure ── */
.fbm-us-inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--fbm-space-6); }
.fbm-us-sec { padding: var(--fbm-space-20) 0; }
.fbm-us-sec-alt { background: var(--fbm-bg-alt); }
.fbm-us-sec-dark { background: var(--fbm-bg-dark); }
.fbm-us-sec-head { text-align: center; margin-bottom: var(--fbm-space-12); }
.fbm-us-sec-tag {
    display: inline-block;
    background: var(--fbm-info-bg);
    color: var(--fbm-primary);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-black);
    letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--fbm-radius-pill);
    margin-bottom: 14px;
}
.fbm-us-sec-tag-white { background: rgba(255, 255, 255, .1); color: var(--fbm-link-on-dark); }
.fbm-us-h2 {
    font-size: var(--fbm-text-3xl);
    font-weight: var(--fbm-font-weight-black);
    color: var(--fbm-text);
    line-height: var(--fbm-line-height-tight);
    margin: 0 0 12px;
}
.fbm-us-h2-white { color: var(--fbm-text-light); }
.fbm-us-sub { font-size: var(--fbm-text-md); color: var(--fbm-text-muted); max-width: 620px; margin: 0 auto; line-height: var(--fbm-line-height-loose); }
.fbm-us-sub-light { color: rgba(255, 255, 255, .6); }

/* ── Robot cards ── */
.fbm-us-robots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px) { .fbm-us-robots-grid { grid-template-columns: 1fr; } }
.fbm-us-card {
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-card-radius);
    overflow: hidden;
    border: 2px solid var(--fbm-card-border);
    box-shadow: var(--fbm-card-shadow);
    display: flex; flex-direction: column;
}
.fbm-us-card-img { position: relative; background: var(--fbm-bg-alt); aspect-ratio: 1 / 1; overflow: hidden; }
.fbm-us-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.fbm-us-card-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--fbm-primary-dark);
    color: var(--fbm-text-light);
    font-size: var(--fbm-text-xs);
    font-weight: var(--fbm-font-weight-black);
    padding: 5px 12px;
    border-radius: var(--fbm-radius-pill);
    letter-spacing: .03em;
}
.fbm-us-card-body { padding: 28px var(--fbm-space-6); flex: 1; display: flex; flex-direction: column; }
.fbm-us-card-name { font-size: var(--fbm-text-2xl); font-weight: var(--fbm-font-weight-black); color: var(--fbm-text); margin: 0 0 6px; }
.fbm-us-card-mfr { font-size: var(--fbm-text-xs); color: var(--fbm-text-muted); margin-bottom: 14px; font-weight: var(--fbm-font-weight-medium); }
.fbm-us-card-desc { font-size: var(--fbm-text-base); color: var(--fbm-text); line-height: var(--fbm-line-height-loose); margin: 0 0 18px; flex: 1; }
.fbm-us-card-foot {
    border-top: 1px solid var(--fbm-bg-alt);
    padding-top: 20px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.fbm-us-card-price { font-size: var(--fbm-text-xs); color: var(--fbm-text-muted); }
.fbm-us-card-price strong { display: block; font-size: var(--fbm-text-2xl); font-weight: var(--fbm-font-weight-black); color: var(--fbm-text); line-height: 1; }
.fbm-us-card-price span { font-size: var(--fbm-text-xs); }
.fbm-us-card-acts { display: flex; gap: 10px; align-items: center; }
.fbm-us-card-detail { font-size: var(--fbm-text-sm); color: var(--fbm-primary); font-weight: var(--fbm-font-weight-bold); text-decoration: none; }
.fbm-us-card-detail:hover { text-decoration: underline; }
.fbm-us-card-reserve {
    background: var(--fbm-btn-bg);
    color: var(--fbm-btn-text);
    padding: 10px 22px;
    border-radius: var(--fbm-btn-radius);
    font-weight: var(--fbm-btn-font-weight);
    font-size: var(--fbm-text-sm);
    text-decoration: none;
    transition: background var(--fbm-transition);
}
.fbm-us-card-reserve:hover { background: var(--fbm-btn-bg-hover); color: var(--fbm-text-light); }

/* ── How it works steps ── */
.fbm-us-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fbm-space-6); }
@media (max-width: 900px) { .fbm-us-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fbm-us-steps { grid-template-columns: 1fr; } }
.fbm-us-step {
    text-align: center;
    padding: 28px var(--fbm-space-4);
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-radius-md);
    border: 2px solid var(--fbm-border);
}
.fbm-us-step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--fbm-primary-dark);
    color: var(--fbm-text-light);
    font-size: 1.3rem; font-weight: var(--fbm-font-weight-black);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--fbm-space-4);
}
.fbm-us-step-icon { font-size: 1.5rem; margin-bottom: 6px; }
.fbm-us-step h3 { font-size: var(--fbm-text-md); font-weight: var(--fbm-font-weight-black); color: var(--fbm-text); margin: 0 0 8px; }
.fbm-us-step p { font-size: var(--fbm-text-sm); color: var(--fbm-text-muted); line-height: 1.65; margin: 0; }

/* ── Rent vs Buy comparison ── */
.fbm-us-compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fbm-space-6); }
@media (max-width: 680px) { .fbm-us-compare { grid-template-columns: 1fr; } }
.fbm-us-compare-col { border-radius: var(--fbm-radius-lg); padding: var(--fbm-space-8) 28px; }
.fbm-us-compare-buy  { background: var(--fbm-error-bg);   border: 2px solid var(--fbm-error-border); }
.fbm-us-compare-rent { background: var(--fbm-success-bg); border: 2px solid var(--fbm-success-border); }
.fbm-us-compare-col h3 { font-size: var(--fbm-text-lg); font-weight: var(--fbm-font-weight-black); margin: 0 0 20px; }
.fbm-us-compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fbm-us-compare-col ul li { font-size: var(--fbm-text-base); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.fbm-us-compare-buy ul li::before  { content: '✗'; color: var(--fbm-error);   font-weight: var(--fbm-font-weight-black); flex-shrink: 0; }
.fbm-us-compare-rent ul li::before { content: '✓'; color: var(--fbm-success); font-weight: var(--fbm-font-weight-black); flex-shrink: 0; }

/* ── Trust grid (dark section) ── */
.fbm-us-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fbm-space-6); }
@media (max-width: 900px) { .fbm-us-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fbm-us-trust-grid { grid-template-columns: 1fr; } }
.fbm-us-trust-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--fbm-border-dark);
    border-radius: var(--fbm-radius-md);
    padding: var(--fbm-space-6) 20px;
}
.fbm-us-trust-item-icon { font-size: 1.8rem; margin-bottom: 12px; }
.fbm-us-trust-item h3 { font-size: var(--fbm-text-base); font-weight: var(--fbm-font-weight-black); color: var(--fbm-text-light); margin: 0 0 8px; }
.fbm-us-trust-item p  { font-size: var(--fbm-text-sm); color: var(--fbm-text-muted); margin: 0; line-height: var(--fbm-line-height-base); }

/* ── Use cases ── */
.fbm-us-uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .fbm-us-uc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fbm-us-uc-grid { grid-template-columns: 1fr; } }
.fbm-us-uc-card {
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-radius-md);
    padding: 28px 22px;
    border: 2px solid var(--fbm-card-border);
}
.fbm-us-uc-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.fbm-us-uc-card h3 { font-size: var(--fbm-text-md); font-weight: var(--fbm-font-weight-black); color: var(--fbm-text); margin: 0 0 8px; }
.fbm-us-uc-card p  { font-size: var(--fbm-text-sm); color: var(--fbm-text-muted); line-height: 1.65; margin: 0; }

/* ── Testimonials (USA page specific) ── */
.fbm-us-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 680px) { .fbm-us-reviews-grid { grid-template-columns: 1fr; } }
.fbm-us-review {
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-radius-md);
    padding: 28px var(--fbm-space-6);
    border: 1px solid var(--fbm-card-border);
}
.fbm-us-review-quote { font-size: 2.2rem; color: var(--fbm-primary); font-weight: var(--fbm-font-weight-black); line-height: 1; margin-bottom: 10px; }
.fbm-us-review-text  { font-size: var(--fbm-text-base); color: var(--fbm-text); line-height: var(--fbm-line-height-loose); margin: 0 0 18px; font-style: italic; }
.fbm-us-review-author { font-size: var(--fbm-text-xs); font-weight: var(--fbm-font-weight-bold); color: var(--fbm-text); }
.fbm-us-review-role   { font-size: var(--fbm-text-xs); color: var(--fbm-text-muted); margin-top: 2px; }

/* ── FAQ ── */
.fbm-us-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fbm-us-faq-item {
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-radius-md);
    border: 2px solid var(--fbm-border);
    overflow: hidden;
}
.fbm-us-faq-q {
    width: 100%; background: none; border: none;
    text-align: left; padding: 20px var(--fbm-space-6);
    font-size: var(--fbm-text-base); font-weight: var(--fbm-font-weight-bold);
    color: var(--fbm-text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: var(--fbm-space-4);
    transition: background var(--fbm-transition);
}
.fbm-us-faq-q:hover { background: var(--fbm-bg-alt); }
.fbm-us-faq-chevron { font-size: 1.3rem; color: var(--fbm-primary); font-weight: var(--fbm-font-weight-black); flex-shrink: 0; transition: transform var(--fbm-transition-md); }
.fbm-us-faq-item.open .fbm-us-faq-chevron { transform: rotate(45deg); }
.fbm-us-faq-a { display: none; padding: 0 var(--fbm-space-6) 20px; font-size: var(--fbm-text-sm); color: var(--fbm-text-muted); line-height: var(--fbm-line-height-loose); }
.fbm-us-faq-item.open .fbm-us-faq-a { display: block; }

/* ── Final CTA ── */
.fbm-us-final-cta {
    background: linear-gradient(135deg, var(--fbm-primary-dark) 0%, var(--fbm-bg-dark) 100%);
    text-align: center;
    padding: var(--fbm-space-20) var(--fbm-space-6);
}
.fbm-us-final-cta h2 { font-size: var(--fbm-text-4xl); font-weight: var(--fbm-font-weight-black); color: var(--fbm-text-light); margin: 0 0 14px; }
.fbm-us-final-cta p  { font-size: var(--fbm-text-lg); color: var(--fbm-text-muted); margin: 0 auto 36px; max-width: 600px; line-height: var(--fbm-line-height-loose); }
.fbm-us-cta-big {
    display: inline-block;
    background: var(--fbm-accent);
    color: var(--fbm-btn-accent-text);
    font-size: 1.15rem; font-weight: var(--fbm-font-weight-black);
    padding: 20px 48px;
    border-radius: var(--fbm-radius-md);
    text-decoration: none; text-transform: uppercase; letter-spacing: .03em;
    box-shadow: var(--fbm-shadow-accent);
    transition: transform var(--fbm-transition), box-shadow var(--fbm-transition);
}
.fbm-us-cta-big:hover { transform: translateY(-2px); box-shadow: var(--fbm-shadow-xl); color: var(--fbm-btn-accent-text); }
.fbm-us-final-note { margin-top: var(--fbm-space-4); color: var(--fbm-text-muted); font-size: var(--fbm-text-xs); }
.fbm-us-final-note a { color: var(--fbm-link-on-dark); text-decoration: none; }

/* ── Mini footer ── */
.fbm-us-footer {
    background: var(--fbm-bg-dark);
    text-align: center;
    padding: 28px var(--fbm-space-6);
    border-top: 1px solid var(--fbm-border-dark);
}
.fbm-us-footer p { color: var(--fbm-text-muted); font-size: var(--fbm-text-xs); margin: 0; }
.fbm-us-footer a { color: var(--fbm-link-on-dark); text-decoration: none; }


/* ============================================================
   3. ROBOT RENTAL PAGE  (.fbm-rr-*)
      /robot-rental/
   ============================================================ */

.fbm-rr-types { padding: var(--fbm-space-20) 0; background: var(--fbm-bg-alt); }
.fbm-rr-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fbm-space-6); }
@media (max-width: 640px) { .fbm-rr-types-grid { grid-template-columns: 1fr; } }
.fbm-rr-type-card {
    background: var(--fbm-card-bg);
    border-radius: var(--fbm-radius-lg);
    padding: 36px var(--fbm-space-8);
    border: 1px solid var(--fbm-card-border);
    display: flex; flex-direction: column; gap: 14px;
}
.fbm-rr-type-icon  { font-size: 2.8rem; line-height: 1; }
.fbm-rr-type-title { font-size: var(--fbm-text-2xl); font-weight: var(--fbm-font-weight-bold); color: var(--fbm-text); margin: 0; }
.fbm-rr-type-desc  { color: var(--fbm-text-muted); line-height: 1.65; margin: 0; font-size: var(--fbm-text-base); }
.fbm-rr-type-from  { font-size: var(--fbm-text-sm); color: var(--fbm-text-muted); }
.fbm-rr-type-from strong { color: var(--fbm-primary); font-size: var(--fbm-text-lg); }
.fbm-rr-type-link {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 22px;
    background: var(--fbm-btn-bg);
    color: var(--fbm-btn-text) !important;
    border-radius: var(--fbm-btn-radius);
    font-weight: var(--fbm-font-weight-medium);
    font-size: var(--fbm-text-base);
    text-decoration: none;
    align-self: flex-start;
    transition: background var(--fbm-transition);
}
.fbm-rr-type-link:hover { background: var(--fbm-btn-bg-hover); }


/* ============================================================
   4. PARTY ROBOT RENTAL PAGE  (.fbm-pr-*)
      /party-robot-rental/
   ============================================================ */

.fbm-pr-compare { padding: var(--fbm-space-20) 0; background: var(--fbm-bg-alt); }
.fbm-pr-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fbm-space-6); margin-top: var(--fbm-space-10); }
@media (max-width: 640px) { .fbm-pr-compare-grid { grid-template-columns: 1fr; } }
.fbm-pr-col {
    border-radius: var(--fbm-radius-lg);
    padding: var(--fbm-space-8);
    border: 2px solid transparent;
}
.fbm-pr-col-no  { background: var(--fbm-error-bg);   border-color: var(--fbm-error-border); }
.fbm-pr-col-yes { background: var(--fbm-success-bg); border-color: var(--fbm-success-border); }
.fbm-pr-col h3 { font-size: var(--fbm-text-lg); font-weight: var(--fbm-font-weight-bold); margin: 0 0 var(--fbm-space-4); }
.fbm-pr-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fbm-pr-col ul li { font-size: var(--fbm-text-base); color: var(--fbm-text); }

/* ============================================================
   MOBILE RESPONSIVE FIXES — USA LANDING PAGE
   Audit 2026-04-15: 3 issues resolved
   ============================================================ */

/* 1. Hero — reduce excessive vertical padding on mobile */
@media (max-width: 640px) {
    .fbm-us-hero { padding: 40px var(--fbm-space-6) 30px; }
    .fbm-us-hero-btn { padding: 14px 28px; font-size: var(--fbm-text-md); }
}

/* 2. Final CTA — missing mobile rules */
@media (max-width: 640px) {
    .fbm-us-final-cta { padding: 40px var(--fbm-space-6); }
    .fbm-us-cta-big {
        width: 100%;
        max-width: 320px;
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* 3. Robot card reserve button — raise to 44px touch target */
.fbm-us-card-reserve {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
