/* ===================================================================
   FABRIXA PRICING PAGE — append to brighthub-fabrixa/style.css
   =================================================================== */

/* Tier finder cards */
.fbx-px-tier {
    background: #18202D;
    border: 1px solid rgba(240, 240, 240, 0.08);
    border-radius: 4px;
    padding: 24px 20px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    opacity: 0.55;
    position: relative;
}

.fbx-px-tier.is-active {
    border-color: #E95121;
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.fbx-px-tier-label {
    font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    font-size: 11px;
    color: #E95121;
    letter-spacing: 0.18em;
    margin: 0 0 8px;
    display: block;
}

.fbx-px-tier-range {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F0F0F0;
    margin: 0 0 6px;
    line-height: 1.3;
}

.fbx-px-tier-tag {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 12px;
    color: #9AA4B2;
    margin: 0 0 18px;
    line-height: 1.4;
}

.fbx-px-tier-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fbx-px-tier-features li {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 12px;
    color: #F0F0F0;
    line-height: 1.5;
    padding: 6px 0 6px 14px;
    position: relative;
    border-top: 1px solid rgba(240, 240, 240, 0.06);
}

.fbx-px-tier-features li:first-child {
    border-top: 0;
}

.fbx-px-tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E95121;
    opacity: 0.4;
}

.fbx-px-tier.is-active .fbx-px-tier-features li::before {
    opacity: 1;
}

/* Quantity input — focus state */
#fbx-px-qty:focus,
#fbx-px-product:focus {
    outline: none;
    border-color: #E95121 !important;
}

/* Tier finder responsive — stack to 1 column on tablet, 1 on mobile */
@media (max-width: 1100px) {
    .fbx-px-tiers {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .fbx-px-tiers {
        grid-template-columns: 1fr !important;
    }
    .fbx-px-inputs {
        grid-template-columns: 1fr !important;
    }
    .fbx-px-howitworks > .fbx-container > div:last-child,
    .fbx-section > .fbx-container > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

/* FAQ accordion */
.fbx-px-faq {
    border-top: 1px solid rgba(240, 240, 240, 0.08);
    padding: 0;
}

.fbx-px-faq:last-child {
    border-bottom: 1px solid rgba(240, 240, 240, 0.08);
}

.fbx-px-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #F0F0F0;
    transition: color .15s ease;
}

.fbx-px-faq summary::-webkit-details-marker {
    display: none;
}

.fbx-px-faq summary:hover {
    color: #E95121;
}

.fbx-px-faq-q {
    flex: 1;
    line-height: 1.4;
}

.fbx-px-faq-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 300;
    color: #E95121;
    transition: transform .2s ease;
    flex-shrink: 0;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.fbx-px-faq[open] .fbx-px-faq-icon {
    transform: rotate(45deg);
}

.fbx-px-faq-a {
    padding: 0 0 24px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #9AA4B2;
    max-width: 760px;
}

/* Trust block — coral border feature */
.fbx-px-trust {
    transition: border-left-width .2s ease, transform .2s ease;
}

.fbx-px-trust:hover {
    border-left-width: 6px;
    transform: translateX(2px);
}
