.fbn-page {
    --fbn-dark: #12151c;
    --fbn-dark-2: #1a1f2b;
    --fbn-accent: rgb(var(--primary_color));
    --fbn-accent-hex: #00c753;
    overflow-x: hidden;
}

/* Hero */
.fbn-hero {
    background: var(--fbn-dark);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.fbn-hero::before {
    content: '';
    position: absolute;
    top: 60px;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(var(--primary_color), 0.2);
    transform: rotate(30deg);
    border-radius: 16px;
}

.fbn-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 80px;
}

.fbn-preview-wrap {
    background: linear-gradient(135deg, #6c3ce0, #8b5cf6);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.fbn-preview-card {
    background: #2a2d35;
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.fbn-preview-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.fbn-preview-text strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}

.fbn-preview-text span {
    color: #b0b8c4;
    font-size: 13px;
    line-height: 1.5;
}

.fbn-info h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.fbn-info-desc {
    color: #9aa3b2;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.fbn-price-label {
    color: #9aa3b2;
    font-size: 14px;
    margin-bottom: 4px;
}

.fbn-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--fbn-accent-hex);
    margin-bottom: 4px;
}

.fbn-price-note {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 24px;
}

.fbn-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--fbn-accent-hex);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.fbn-buy-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Wave divider */
.fbn-wave {
    background: var(--fbn-dark);
    line-height: 0;
    margin-top: -1px;
}

.fbn-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Content */
.fbn-content {
    background: #fff;
    padding: 60px 0 80px;
}

.fbn-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.fbn-block-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.fbn-block-title::before {
    content: '';
    width: 4px;
    height: 40px;
    background: rgb(var(--secondary_color));
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 4px;
}

.fbn-block-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: rgb(var(--text_color));
    margin: 0;
    line-height: 1.3;
}

.fbn-block-title h2 span {
    display: block;
    font-weight: 800;
}

.fbn-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.fbn-features-title {
    font-size: 16px;
    font-weight: 700;
    color: rgb(var(--text_color));
    margin-bottom: 16px;
}

.fbn-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.fbn-features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.fbn-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--fbn-accent-hex);
    font-weight: bold;
}

.fbn-history-btn {
    display: inline-block;
    background: rgb(var(--secondary_color));
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: none;
}

.fbn-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fbn-accordion-item {
    background: #f5f6f8;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8ecf0;
}

.fbn-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: rgb(var(--text_color));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fbn-accordion-body {
    display: none;
    padding: 0 18px 14px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.fbn-accordion-item.open .fbn-accordion-body {
    display: block;
}

.fbn-accordion-item.open .fbn-accordion-btn i {
    transform: rotate(180deg);
}

/* Requirements */
.fbn-req-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.fbn-req-tag {
    background: #f5f6f8;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(var(--text_color));
}

.fbn-faq-item {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.fbn-faq-item.active {
    background: rgb(var(--secondary_color));
    border-color: transparent;
}

.fbn-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: rgb(var(--text_color));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fbn-faq-item.active .fbn-faq-question {
    color: #fff;
}

.fbn-faq-answer {
    display: none;
    padding: 0 18px 14px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.fbn-faq-item.active .fbn-faq-answer {
    display: block;
    color: rgba(255, 255, 255, 0.85);
}

/* Free tools preview */
.fbn-preview-wrap.tools-style {
    background: linear-gradient(135deg, #0f172a, #334155);
}

.fbn-tools-preview {
    width: 100%;
    max-width: 380px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fbn-tool-mini {
    background: #fff;
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.fbn-tool-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.fbn-tool-mini-icon.instagram { background: linear-gradient(45deg, #f09433, #dc2743); }
.fbn-tool-mini-icon.twitter { background: #1da1f2; }
.fbn-tool-mini-icon.youtube { background: #ff0000; }
.fbn-tool-mini-icon.tiktok { background: #010101; }
.fbn-tool-mini-icon.facebook { background: #1877f2; }
.fbn-tool-mini-icon.other { background: rgb(var(--secondary_color)); }

.fbn-tool-mini-text span {
    display: block;
    font-size: 10px;
    color: #9ca3af;
}

.fbn-tool-mini-text strong {
    font-size: 11px;
    color: rgb(var(--text_color));
    font-weight: 700;
}

.fbn-tools-section {
    background: #fff;
    padding: 60px 0 80px;
}

.fbn-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fbn-tools-col h3 {
    font-size: 16px;
    font-weight: 800;
    color: rgb(var(--text_color));
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.fbn-tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.fbn-tool-item:last-child {
    border-bottom: none;
}

.fbn-tool-item .fbn-tool-mini-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.fbn-tool-item .fbn-tool-mini-text span {
    font-size: 11px;
}

.fbn-tool-item .fbn-tool-mini-text strong {
    font-size: 13px;
}

@media (max-width: 1199px) {
    .fbn-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .fbn-tools-preview {
        grid-template-columns: 1fr;
    }

    .fbn-tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Membership module preview */
.fbn-preview-wrap.membership-style {
    background: linear-gradient(135deg, #1e3a5f, #3b82f6);
}

.fbn-membership-mockup {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fbn-member-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.fbn-member-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #fff;
    font-size: 28px;
    border: 3px solid #e0e7ff;
}

.fbn-member-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: rgb(var(--text_color));
    margin-bottom: 4px;
}

.fbn-member-card p {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.fbn-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.fbn-member-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fbn-member-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fbn-member-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.fbn-member-stat span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    display: block;
}

/* Discount coupon preview */
.fbn-preview-wrap.coupon-style {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.fbn-coupon-mockup {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fbn-coupon-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    position: relative;
}

.fbn-coupon-card::before {
    content: '';
    position: absolute;
    left: 72%;
    top: -8px;
    bottom: -8px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #e5e7eb 0px,
        #e5e7eb 6px,
        transparent 6px,
        transparent 12px
    );
}

.fbn-coupon-left {
    flex: 1;
    padding: 20px 18px;
}

.fbn-coupon-badge {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fbn-coupon-left h4 {
    font-size: 22px;
    font-weight: 800;
    color: rgb(var(--text_color));
    margin-bottom: 4px;
}

.fbn-coupon-left p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.fbn-coupon-right {
    width: 28%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    color: #fff;
}

.fbn-coupon-right strong {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.fbn-coupon-right span {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.9;
}

.fbn-coupon-input-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fbn-coupon-input {
    flex: 1;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: rgb(var(--text_color));
    letter-spacing: 1px;
    background: #f9fafb;
}

.fbn-coupon-apply {
    background: var(--fbn-accent-hex);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* Cart module preview */
.fbn-preview-wrap.cart-style {
    background: linear-gradient(135deg, #0f4c3a, #00c753);
}

.fbn-cart-mockup {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 340px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fbn-cart-header {
    background: rgb(var(--secondary_color));
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
}

.fbn-cart-header i {
    font-size: 16px;
}

.fbn-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.fbn-cart-item-icon {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fbn-accent-hex);
    flex-shrink: 0;
}

.fbn-cart-item-info strong {
    display: block;
    font-size: 13px;
    color: rgb(var(--text_color));
    margin-bottom: 2px;
}

.fbn-cart-item-info span {
    font-size: 12px;
    color: #9ca3af;
}

.fbn-cart-item-price {
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: rgb(var(--text_color));
}

.fbn-cart-footer {
    padding: 14px 18px;
    background: #f9fafb;
}

.fbn-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: rgb(var(--text_color));
    margin-bottom: 12px;
}

.fbn-cart-checkout {
    display: block;
    text-align: center;
    background: var(--fbn-accent-hex);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* Popup preview */
.fbn-preview-wrap.popup-style {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    position: relative;
}

.fbn-popup-mockup {
    background: #1e1e2e;
    border-radius: 10px;
    width: 100%;
    max-width: 360px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.fbn-popup-mockup-bar {
    height: 28px;
    background: #2a2a3d;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.fbn-popup-mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b5563;
}

.fbn-popup-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 12px;
    padding: 20px;
    width: 85%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.fbn-popup-modal h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fbn-popup-modal p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.fbn-popup-modal-btn {
    display: inline-block;
    background: #fff;
    color: #7c3aed;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
}

/* Live chat preview */
.fbn-preview-wrap.chat-style {
    background: linear-gradient(135deg, #0c4a6e, #0284c7);
    padding: 28px 20px;
}

.fbn-chat-mockup {
    width: 100%;
    max-width: 400px;
}

.fbn-chat-browser {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.fbn-chat-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.fbn-chat-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.fbn-chat-browser-bar span:nth-child(1) { background: #f87171; }
.fbn-chat-browser-bar span:nth-child(2) { background: #fbbf24; }
.fbn-chat-browser-bar span:nth-child(3) { background: #4ade80; }

.fbn-chat-browser-url {
    flex: 1;
    margin-left: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: #64748b;
}

.fbn-chat-browser-body {
    position: relative;
    min-height: 320px;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
}

.fbn-chat-site-lines span {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: rgba(148, 163, 184, 0.35);
    margin-bottom: 8px;
}

.fbn-chat-site-lines span:nth-child(1) { width: 70%; }
.fbn-chat-site-lines span:nth-child(2) { width: 90%; }
.fbn-chat-site-lines span:nth-child(3) { width: 55%; }

.fbn-chat-panel {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    animation: fbnChatSlideUp 0.6s ease-out;
}

@keyframes fbnChatSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fbn-chat-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff;
}

.fbn-chat-panel-head button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: default;
}

.fbn-chat-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fbn-chat-agent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.fbn-chat-agent strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.fbn-chat-agent em {
    display: flex;
    align-items: center;
    gap: 4px;
    font-style: normal;
    font-size: 10px;
    opacity: 0.9;
}

.fbn-chat-agent em i {
    font-size: 6px;
    color: #4ade80;
}

.fbn-chat-messages {
    padding: 12px;
    max-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
}

.fbn-chat-msg {
    max-width: 88%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.45;
    position: relative;
}

.fbn-chat-msg small {
    display: block;
    font-size: 9px;
    opacity: 0.55;
    margin-top: 4px;
}

.fbn-chat-msg.agent {
    align-self: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    border-bottom-left-radius: 4px;
}

.fbn-chat-msg.visitor {
    align-self: flex-end;
    background: #0284c7;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.fbn-chat-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.fbn-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    animation: fbnChatTyping 1.2s infinite ease-in-out;
}

.fbn-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.fbn-chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes fbnChatTyping {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1); }
}

.fbn-chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    font-size: 11px;
    color: #94a3b8;
}

.fbn-chat-input i {
    color: #0284c7;
    font-size: 14px;
}

.fbn-chat-bubble {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
    opacity: 0;
    pointer-events: none;
}

.fbn-chat-bubble-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Profile lookup preview */
.fbn-preview-wrap.profile-style {
    background: linear-gradient(135deg, #6d28d9, #c026d3, #db2777);
    padding: 28px 20px;
}

.fbn-profile-mockup {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fbn-profile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 10px 12px;
    backdrop-filter: blur(8px);
}

.fbn-profile-platform {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.fbn-profile-platform.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fbn-profile-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
}

.fbn-profile-at {
    color: #94a3b8;
    font-weight: 600;
}

.fbn-profile-username {
    flex: 1;
    color: #1e293b;
    font-weight: 700;
}

.fbn-profile-search-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.fbn-profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: fbnProfileFadeIn 0.5s ease-out;
}

@keyframes fbnProfileFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.fbn-profile-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.fbn-profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #dc2743);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e2e8f0;
}

.fbn-profile-stats {
    flex: 1;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.fbn-profile-stats strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
}

.fbn-profile-stats span {
    font-size: 10px;
    color: #64748b;
}

.fbn-profile-card-body strong {
    display: block;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 2px;
}

.fbn-profile-card-body p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.fbn-profile-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 999px;
}

.fbn-profile-platforms {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.fbn-profile-platforms span {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fbn-profile-platforms span.active {
    background: #fff;
    color: #7c3aed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Landing page builder preview */
.fbn-preview-wrap.landing-style {
    background: linear-gradient(135deg, #4f46e5, #2563eb, #7c3aed);
    padding: 28px 20px;
}

.fbn-landing-mockup {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fbn-landing-browser {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.fbn-landing-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.fbn-landing-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fbn-landing-browser-bar span:nth-child(1) { background: #f87171; }
.fbn-landing-browser-bar span:nth-child(2) { background: #fbbf24; }
.fbn-landing-browser-bar span:nth-child(3) { background: #4ade80; }

.fbn-landing-browser-url {
    flex: 1;
    margin-left: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: #64748b;
}

.fbn-landing-page-preview {
    padding: 22px 18px;
    text-align: center;
    background: linear-gradient(180deg, #eef2ff 0%, #fff 100%);
    animation: fbnLandingFadeIn 0.55s ease-out;
}

@keyframes fbnLandingFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.fbn-landing-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4f46e5;
    background: #e0e7ff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.fbn-landing-page-preview h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.25;
}

.fbn-landing-page-preview p {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.5;
}

.fbn-landing-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.fbn-landing-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.fbn-landing-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 6px;
    font-size: 10px;
}

.fbn-landing-block i {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #4f46e5;
}

.fbn-landing-block strong {
    color: #334155;
    font-weight: 700;
}

.fbn-landing-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fbn-landing-trust span {
    font-size: 9px;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 8px;
    border-radius: 999px;
}

.fbn-landing-trust i {
    color: #f59e0b;
    margin-right: 3px;
}

.fbn-landing-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fbn-landing-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

@media (max-width: 991px) {
    .fbn-hero-grid,
    .fbn-content-grid {
        grid-template-columns: 1fr;
    }

    .fbn-preview-wrap {
        min-height: 260px;
    }
}
