/* FuarOS Stand Expo — ported from .cursor/examples/fuaros/link.html, scoped under .fuar-os-expo */

.fuar-os-expo {
    /* Token fallbacks (inline style from PHP overrides when set) */
    --bg: #f5f7fa;
    --surface: #ffffff;
    --ink: #08111f;
    --muted: #66758a;
    --line: #e5eaf0;
    --accent: #0877e8;
    --accent-dark: #0560bd;
    --navy: #08111f;
    --radius: 22px;
    --container: 760px;
    --shadow: 0 18px 50px rgba(8, 17, 31, .10);
    box-sizing: border-box;
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.fuar-os-expo *,
.fuar-os-expo *::before,
.fuar-os-expo *::after {
    box-sizing: border-box;
}

.fuar-os-expo button,
.fuar-os-expo input,
.fuar-os-expo select {
    font: inherit;
}

.fuar-os-expo a {
    text-decoration: none;
    color: inherit;
}

.fuar-os-expo button,
.fuar-os-expo a {
    touch-action: manipulation;
}

.fuar-os-expo .page {
    width: min(var(--container), 100%);
    margin: auto;
    padding: 10px 16px 14px;
    border-radius: 0;
}

/* Biolink wrapper paints a dark page background; match expo tokens instead. */
body.fuar-os-expo-active.link-body,
body.link-body:has(.fuar-os-expo) {
    background: var(--fuar-os-expo-page-bg, #f5f7fa) !important;
    background-image: none !important;
    cursor: auto !important;
}

body.fuar-os-expo-active .link-video-background {
    display: none !important;
}

body.fuar-os-expo-active .container,
body.link-body:has(.fuar-os-expo) .container {
    background: transparent;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Footer branding lives outside .fuar-os-expo — override dark-theme white text on light expo bg */
body.fuar-os-expo-active .fuar-os-branding,
body.link-body:has(.fuar-os-expo) .fuar-os-branding {
    color: #66758a;
}

body.fuar-os-expo-active .fuar-os-branding a,
body.link-body:has(.fuar-os-expo) .fuar-os-branding a {
    color: var(--accent, #0877e8);
}

body.fuar-os-expo-active .fuar-os-branding a:hover,
body.link-body:has(.fuar-os-expo) .fuar-os-branding a:hover {
    color: var(--accent-dark, #0560bd);
    text-decoration: underline;
}

/* Biolink column gutters — expo is a full-page shell; default link-content / #links / footer bands stack into empty space. */
body.fuar-os-expo-active .link-content,
body.link-body:has(.fuar-os-expo) .link-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.fuar-os-expo-active #links,
body.fuar-os-expo-active #links.my-1,
body.fuar-os-expo-active #links.my-2,
body.fuar-os-expo-active #links.my-3,
body.link-body:has(.fuar-os-expo) #links,
body.link-body:has(.fuar-os-expo) #links.my-1,
body.link-body:has(.fuar-os-expo) #links.my-2,
body.link-body:has(.fuar-os-expo) #links.my-3 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.fuar-os-expo-active #footer.link-footer,
body.fuar-os-expo-active footer#footer,
body.link-body:has(.fuar-os-expo) #footer.link-footer,
body.link-body:has(.fuar-os-expo) footer#footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.fuar-os-expo-active #branding,
body.fuar-os-expo-active .link-footer-branding,
body.link-body:has(.fuar-os-expo) #branding,
body.link-body:has(.fuar-os-expo) .link-footer-branding {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 10px;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
}

/* animate.css creates a containing block that traps position:fixed modals */
body.fuar-os-expo-active .container.animate__animated,
body.fuar-os-expo-active .animate__fadeIn {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    perspective: none !important;
}

.fuar-os-expo .topbar {
    height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fuar-os-expo .language {
    position: relative;
}

.fuar-os-expo .language-button {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 7px 4px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(8, 17, 31, .07);
    font-size: 12px;
    font-weight: 850;
    color: var(--muted);
    cursor: pointer;
}

.fuar-os-expo .language-button .current {
    display: grid;
    place-items: center;
    min-width: 32px;
    height: 32px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
}

.fuar-os-expo .chevron {
    width: 14px;
    height: 14px;
    transition: transform .18s;
}

.fuar-os-expo .language.open .chevron {
    transform: rotate(180deg);
}

.fuar-os-expo .language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    min-width: 150px;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(8, 17, 31, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: .16s;
}

.fuar-os-expo .language.open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.fuar-os-expo .language-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 11px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.fuar-os-expo .language-option:hover,
.fuar-os-expo .language-option.active {
    background: #f1f5f9;
}

.fuar-os-expo .language-option small {
    color: var(--muted);
    font-weight: 700;
}

.fuar-os-expo .hero {
    text-align: center;
    padding: 25px 4px 22px;
}

.fuar-os-expo .avatar-shell {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    padding: 5px;
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 18px 40px rgba(8, 17, 31, .13);
}

.fuar-os-expo .avatar {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 27px;
    background: #f1f4f7;
}

.fuar-os-expo .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.fuar-os-expo .eyebrow[hidden] {
    display: none !important;
}

.fuar-os-expo .eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.fuar-os-expo .hero h1 {
    margin: 0 auto 12px;
    max-width: 700px;
    font-size: clamp(30px, 7vw, 48px);
    line-height: 1.02;
    letter-spacing: -.052em;
}

.fuar-os-expo .hero-intro {
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 620px;
}

.fuar-os-expo .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 21px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 13px 28px rgba(8, 17, 31, .18);
    transition: transform .15s, box-shadow .15s;
}

.fuar-os-expo .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(8, 17, 31, .22);
}

.fuar-os-expo .section {
    margin-top: 18px;
}

.fuar-os-expo .section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin: 0 3px 11px;
}

.fuar-os-expo .section-title h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -.025em;
}

.fuar-os-expo .section-title span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
}

.fuar-os-expo .products {
    position: relative;
}

.fuar-os-expo .product-viewport {
    overflow: hidden;
    border-radius: var(--radius);
    background: transparent;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
    /* Keep flex + % translate math LTR even when document/root is RTL. */
    direction: ltr;
}

.fuar-os-expo .product-viewport.is-dragging {
    cursor: grabbing;
}

.fuar-os-expo .product-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    direction: ltr;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.fuar-os-expo .product-slide {
    flex: 0 0 100%;
    padding: 1px;
    display: flex;
    align-items: stretch;
}

.fuar-os-expo .product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(8, 17, 31, .07);
}

.fuar-os-expo .product-media {
    height: 100%;
    min-height: 0;
    background: transparent;
    overflow: hidden;
}

.fuar-os-expo .product-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.fuar-os-expo .product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    height: 100%;
    padding: 24px;
}

.fuar-os-expo .product-name {
    font-size: 22px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.035em;
}

.fuar-os-expo .product-desc {
    margin-top: 9px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.fuar-os-expo .product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    width: 100%;
    padding: 10px 13px;
    border-radius: 12px;
    background: #edf5ff;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 850;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.fuar-os-expo .dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 11px;
}

.fuar-os-expo .dot {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    padding: 0;
    cursor: pointer;
    transition: .2s;
}

.fuar-os-expo .dot.active {
    width: 20px;
    background: var(--navy);
}

.fuar-os-expo .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fuar-os-expo .contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--surface);
    box-shadow: 0 7px 20px rgba(8, 17, 31, .045);
    transition: .15s;
    text-align: left;
}

.fuar-os-expo .contact-card > span:last-child {
    min-width: 0;
    flex: 1 1 auto;
    text-align: left;
}

.fuar-os-expo .contact-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(8, 17, 31, .08);
}

.fuar-os-expo .contact-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eef5fc;
    color: var(--accent);
}

.fuar-os-expo .contact-icon svg {
    width: 19px;
    height: 19px;
}

.fuar-os-expo .contact-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.fuar-os-expo .contact-value {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 850;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fuar-os-expo .action-list {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.fuar-os-expo .action {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 7px 20px rgba(8, 17, 31, .045);
    transition: .15s;
}

.fuar-os-expo .action:hover {
    border-color: #cdd8e4;
    transform: translateY(-1px);
}

.fuar-os-expo .action.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 12px 25px rgba(8, 119, 232, .2);
}

.fuar-os-expo .action svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.fuar-os-expo .form-open {
    width: 100%;
    min-height: 56px;
    margin-top: 0;
    border: 0;
    border-radius: 17px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 13px 28px rgba(8, 17, 31, .17);
    cursor: pointer;
}

.fuar-os-expo .form-open:hover {
    background: #12253b;
}

.fuar-os-expo .empty {
    padding: 28px;
    text-align: center;
    border: 1px dashed #d4dce5;
    border-radius: 18px;
    color: var(--muted);
    background: var(--surface);
}

.fuar-os-expo .footer {
    text-align: center;
    padding: 10px 0 0;
    color: #9aa7b7;
    font-size: 11px;
}

.fuar-os-expo .footer a {
    font-weight: 800;
    color: #748297;
}

/* Body portal: escape biolink transform/overflow containing blocks.
   Class is expo-modal (not Bootstrap .modal) — Bootstrap sets .modal { display:none }. */
.fuar-os-expo[data-fuar-os-expo-portal] {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    min-height: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
    pointer-events: none;
    scroll-behavior: auto;
}

.fuar-os-expo[data-fuar-os-expo-portal][hidden] {
    display: none !important;
}

.fuar-os-expo[data-fuar-os-expo-portal] .expo-modal {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
}

.fuar-os-expo .expo-modal[hidden] {
    display: none !important;
}

.fuar-os-expo .expo-modal:not([hidden]) {
    display: block !important;
}

.fuar-os-expo .expo-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.fuar-os-expo .expo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 20, .62);
    backdrop-filter: blur(7px);
}

.fuar-os-expo .expo-modal-panel {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(620px, 100%);
    max-height: min(88vh, 760px);
    overflow: auto;
    background: var(--surface, #fff);
    color: var(--ink, #08111f);
    border-radius: 28px 28px 0 0;
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
    box-shadow: 0 -25px 70px rgba(0, 0, 0, .25);
}

.fuar-os-expo .expo-modal-handle {
    width: 40px;
    height: 4px;
    margin: 0 auto 17px;
    border-radius: 999px;
    background: #d8dee7;
}

.fuar-os-expo .expo-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.fuar-os-expo .expo-modal-head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.03em;
}

.fuar-os-expo .expo-modal-head p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.fuar-os-expo .expo-modal-close {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.fuar-os-expo .form {
    display: grid;
    gap: 12px;
}

.fuar-os-expo .field {
    display: grid;
    gap: 6px;
}

.fuar-os-expo .field label {
    font-size: 12px;
    font-weight: 850;
    color: #334155;
}

.fuar-os-expo .field input,
.fuar-os-expo .field select {
    width: 100%;
    height: 50px;
    padding: 0 13px;
    border: 1px solid #d8e0e8;
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    outline: 0;
    font-size: 16px;
}

.fuar-os-expo .field input:focus,
.fuar-os-expo .field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(8, 119, 232, .1);
}

.fuar-os-expo .field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fuar-os-expo .consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #66758a;
    font-size: 11px;
    line-height: 1.5;
}

.fuar-os-expo .consent input {
    margin-top: 2px;
    accent-color: var(--accent);
}

.fuar-os-expo .submit {
    width: 100%;
    min-height: 53px;
    border: 0;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.fuar-os-expo .submit:disabled {
    opacity: .55;
    cursor: wait;
}

.fuar-os-expo .status {
    display: none;
    padding: 12px 13px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 750;
}

.fuar-os-expo .status.show {
    display: block;
}

.fuar-os-expo .status.ok {
    background: #ecfdf3;
    color: #17633a;
}

.fuar-os-expo .status.error {
    background: #fff1f1;
    color: #9f2020;
}

.fuar-os-expo .invalid {
    border-color: #d43b3b !important;
    box-shadow: 0 0 0 3px rgba(212, 59, 59, .08) !important;
}

.fuar-os-expo .products[data-per-view="2"] .product-slide {
    flex: 0 0 50%;
    padding: 0 5px;
}

.fuar-os-expo .products[data-per-view="3"] .product-slide {
    flex: 0 0 33.333%;
    padding: 0 4px;
}

.fuar-os-expo .products[data-per-view="2"] .product-card,
.fuar-os-expo .products[data-per-view="3"] .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: 100%;
    min-height: 360px;
}

.fuar-os-expo .products[data-per-view="3"] .product-card {
    min-height: 320px;
}

.fuar-os-expo .products[data-per-view="2"] .product-media,
.fuar-os-expo .products[data-per-view="3"] .product-media {
    height: 150px;
}

.fuar-os-expo .products[data-per-view="3"] .product-media {
    height: 130px;
}

.fuar-os-expo .products[data-per-view="2"] .product-info,
.fuar-os-expo .products[data-per-view="3"] .product-info {
    height: auto;
    padding: 16px;
}

.fuar-os-expo .products[data-per-view="2"] .product-name,
.fuar-os-expo .products[data-per-view="3"] .product-name {
    font-size: 17px;
}

.fuar-os-expo .products[data-per-view="3"] .product-name {
    font-size: 15px;
}

.fuar-os-expo .products[data-per-view="2"] .product-desc,
.fuar-os-expo .products[data-per-view="3"] .product-desc {
    -webkit-line-clamp: 3;
}

.fuar-os-expo .product-modal-media {
    position: relative;
    width: 100%;
    min-height: 220px;
    height: clamp(220px, 42vw, 300px);
    border-radius: 16px;
    overflow: hidden;
    background: #eaf0f5;
    margin-bottom: 16px;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.fuar-os-expo .product-modal-media.is-dragging {
    cursor: grabbing;
}

.fuar-os-expo .product-modal-track {
    display: flex;
    height: 100%;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.fuar-os-expo .product-modal-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf0f5;
}

.fuar-os-expo .product-modal-media img,
.fuar-os-expo .product-modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.fuar-os-expo .product-modal-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    pointer-events: none;
}

.fuar-os-expo .product-modal-dots .dot {
    pointer-events: auto;
    background: rgba(8, 17, 31, .28);
}

.fuar-os-expo .product-modal-dots .dot.active {
    background: var(--navy);
}

.fuar-os-expo .product-detail {
    display: grid;
    gap: 14px;
}

.fuar-os-expo .product-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 14px;
    background: #f1f5f9;
}

.fuar-os-expo .product-tab {
    flex: 1 1 0;
    min-width: 0;
    border: 0;
    border-radius: 11px;
    padding: 9px 10px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.01em;
    cursor: pointer;
    line-height: 1.2;
}

.fuar-os-expo .product-tab.is-active {
    background: var(--surface, #fff);
    color: var(--ink);
    box-shadow: 0 1px 3px rgba(8, 17, 31, .08);
}

.fuar-os-expo .product-tab-panels {
    min-width: 0;
}

.fuar-os-expo .product-tab-panel[hidden] {
    display: none !important;
}

.fuar-os-expo .product-detail h3 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: -.02em;
}

.fuar-os-expo .product-detail p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.fuar-os-expo .feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.fuar-os-expo .feature-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ink);
}

.fuar-os-expo .feature-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--accent);
}

.fuar-os-expo .faq-list {
    display: grid;
    gap: 8px;
}

.fuar-os-expo .faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
}

.fuar-os-expo .faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 13px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    cursor: pointer;
}

.fuar-os-expo .faq-item .faq-a {
    display: none;
    padding: 0 13px 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.fuar-os-expo .faq-item.open .faq-a {
    display: block;
}

.fuar-os-expo .faq-item .faq-plus {
    color: var(--accent);
    font-weight: 900;
}

.fuar-os-expo .lead-actions {
    display: grid;
    gap: 10px;
}

.fuar-os-expo .cselect {
    position: relative;
}

.fuar-os-expo .cselect-btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid #d8e0e8;
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    text-align: left;
}

.fuar-os-expo .cselect-btn:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(8, 119, 232, .1);
    outline: 0;
}

.fuar-os-expo .cselect.open .cselect-btn {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(8, 119, 232, .1);
}

.fuar-os-expo .cselect-btn .chev {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: var(--muted);
    transition: transform .18s;
}

.fuar-os-expo .cselect.open .cselect-btn .chev {
    transform: rotate(180deg);
}

.fuar-os-expo .cselect-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 30;
    max-height: 240px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(8, 17, 31, .15);
}

/* Portaled to expo shell / body so .expo-modal-panel overflow cannot clip it.
   Shell itself is pointer-events:none (only .expo-modal is auto) — menu must opt in. */
.fuar-os-expo .cselect-menu.cselect-menu--ported,
.fuar-os-expo[data-fuar-os-expo-portal] .cselect-menu.cselect-menu--ported {
    position: fixed;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2100;
    max-height: min(240px, 45vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    pointer-events: auto;
    touch-action: pan-y;
}

.fuar-os-expo .cselect-menu[hidden] {
    display: none;
}

.fuar-os-expo .cselect-option {
    width: 100%;
    display: block;
    padding: 11px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.fuar-os-expo .cselect-option:hover,
.fuar-os-expo .cselect-option.active {
    background: #edf5ff;
    color: var(--accent-dark);
}

.fuar-os-expo .section-more {
    margin-top: 14px;
}

.fuar-os-expo .section[hidden],
.fuar-os-expo .contact-grid[hidden],
.fuar-os-expo .action-list[hidden] {
    display: none !important;
}

.fuar-os-expo[dir="rtl"] .hero,
.fuar-os-expo[dir="rtl"] .section-title,
.fuar-os-expo[dir="rtl"] .product-info,
.fuar-os-expo[dir="rtl"] .expo-modal-panel,
.fuar-os-expo[dir="rtl"] .form {
    text-align: right;
}

/* Card copy stays RTL inside the LTR-isolated carousel track. */
.fuar-os-expo[dir="rtl"] .product-info {
    direction: rtl;
}

@media (max-width: 560px) {
    .fuar-os-expo .page {
        padding-inline: 13px;
    }

    .fuar-os-expo .hero {
        padding-top: 19px;
    }

    .fuar-os-expo .avatar-shell {
        width: 96px;
        height: 96px;
        border-radius: 28px;
    }

    .fuar-os-expo .avatar {
        border-radius: 23px;
    }

    .fuar-os-expo .product-card {
        grid-template-columns: 1fr;
        height: 440px;
    }

    .fuar-os-expo .product-media {
        height: 220px;
    }

    .fuar-os-expo .product-info {
        height: 220px;
        padding: 19px;
    }

    .fuar-os-expo .product-name {
        font-size: 20px;
    }

    .fuar-os-expo .product-desc {
        -webkit-line-clamp: 4;
    }

    .fuar-os-expo .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fuar-os-expo .field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .fuar-os-expo .contact-grid {
        grid-template-columns: 1fr;
    }

    .fuar-os-expo .hero h1 {
        font-size: 29px;
    }

    .fuar-os-expo .product-card {
        height: 430px;
    }

    .fuar-os-expo .product-media {
        height: 210px;
    }

    .fuar-os-expo .product-info {
        height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fuar-os-expo *,
    .fuar-os-expo *::before,
    .fuar-os-expo *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
