/* NBCreators AI Landing Page */
.nbc-landing { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #1a1a2e; line-height: 1.6; max-width: 100%; overflow-x: hidden; }
.nbc-landing * { box-sizing: border-box; margin: 0; padding: 0; }
.nbc-landing a { text-decoration: none; }
.nbc-landing img { max-width: 100%; }

/* Hero Slider */
.nbc-hero-slider { position: relative; height: 480px; overflow: hidden; background: #f4f4f5; }
.nbc-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.nbc-slide.active { opacity: 1; }
.nbc-slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.nbc-dot { width: 8px; height: 8px; border-radius: 9999px; border: none; cursor: pointer; background: rgba(255,255,255,0.5); transition: all 0.3s; }
.nbc-dot.active { width: 24px; background: var(--nbc-primary, #3b82f6); }

/* Community Bar */
.nbc-community-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #e4e4e7; background: rgba(59,130,246,0.03); font-size: 14px; color: #71717a; }
.nbc-btn-whatsapp { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; background: #16a34a; color: #fff; font-size: 12px; font-weight: 500; transition: background 0.2s; }
.nbc-btn-whatsapp:hover { background: #15803d; color: #fff; }
.nbc-btn-telegram { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; background: #3b82f6; color: #fff; font-size: 12px; font-weight: 500; transition: background 0.2s; }
.nbc-btn-telegram:hover { background: #2563eb; color: #fff; }
.nbc-btn-store { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; border: 1px solid #e4e4e7; background: #fff; color: #1a1a2e; font-size: 12px; font-weight: 500; transition: background 0.2s; }
.nbc-btn-store:hover { background: #f4f4f5; color: #1a1a2e; }

/* Product Strip */
.nbc-product-strip { overflow: hidden; border-bottom: 1px solid #e4e4e7; background: rgba(244,244,245,0.3); padding: 16px 0; }
.nbc-strip-track { display: flex; gap: 16px; animation: nbc-scroll 30s linear infinite; }
@keyframes nbc-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.nbc-strip-img { height: 96px; width: 160px; flex-shrink: 0; border-radius: 12px; object-fit: cover; }

/* Trust Badges */
.nbc-trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin: 32px auto; padding: 0 20px; }
.nbc-badge-item { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid #e4e4e7; border-radius: 12px; background: #fff; }
.nbc-badge-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(59,130,246,0.1); font-size: 18px; flex-shrink: 0; }
.nbc-badge-item strong { font-size: 14px; }
.nbc-badge-item small { font-size: 12px; color: #71717a; }

/* Section */
.nbc-section { max-width: 1200px; margin: 0 auto; padding: 48px 20px; }
.nbc-section-header { margin-bottom: 32px; }
.nbc-section-header h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.025em; }
.nbc-subtitle { font-size: 14px; color: #71717a; margin-top: 4px; }
.nbc-section-title-row { display: flex; align-items: center; gap: 12px; }
.nbc-section-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(59,130,246,0.1); font-size: 20px; flex-shrink: 0; }

/* Category Filter */
.nbc-cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.nbc-cat-btn { padding: 6px 14px; border-radius: 8px; border: 1px solid #e4e4e7; background: #fff; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; color: #1a1a2e; }
.nbc-cat-btn:hover { background: #f4f4f5; }
.nbc-cat-btn.active { background: var(--nbc-primary, #3b82f6); color: #fff; border-color: var(--nbc-primary, #3b82f6); }

/* Products Grid */
.nbc-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.nbc-product-card { border-radius: 12px; border: none; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04); transition: all 0.3s; cursor: pointer; overflow: hidden; }
.nbc-product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.1), 0 0 0 1px rgba(59,130,246,0.15); }
.nbc-card-image { position: relative; overflow: hidden; }
.nbc-card-image img { height: 192px; width: 100%; object-fit: cover; transition: transform 0.5s; }
.nbc-product-card:hover .nbc-card-image img { transform: scale(1.05); }
.nbc-placeholder { height: 192px; display: flex; align-items: center; justify-content: center; background: #f4f4f5; font-size: 48px; }
.nbc-badge-tag { position: absolute; left: 12px; top: 12px; padding: 4px 10px; border-radius: 6px; background: var(--nbc-primary, #3b82f6); color: #fff; font-size: 11px; font-weight: 600; }
.nbc-cat-tag { position: absolute; right: 12px; top: 12px; padding: 4px 10px; border-radius: 6px; background: #f4f4f5; color: #1a1a2e; font-size: 11px; font-weight: 500; }
.nbc-card-body { padding: 20px; }
.nbc-card-body h3 { font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.nbc-card-body p { font-size: 13px; color: #71717a; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.nbc-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 16px; border-radius: 8px; background: var(--nbc-primary, #3b82f6); color: #fff; font-size: 13px; font-weight: 500; border: none; cursor: pointer; transition: all 0.2s; width: 100%; text-align: center; }
.nbc-btn-primary:hover { background: var(--nbc-accent, #2563eb); color: #fff; }
.nbc-btn-lg { padding: 12px 24px; font-size: 15px; }

/* Agency Section */
.nbc-agency-section { border-top: 1px solid #e4e4e7; border-bottom: 1px solid #e4e4e7; background: rgba(244,244,245,0.3); padding: 48px 20px; }
.nbc-agency-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.nbc-agency-badge { display: inline-block; padding: 4px 16px; border-radius: 9999px; background: rgba(59,130,246,0.1); color: var(--nbc-primary, #3b82f6); font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.nbc-agency-inner h2 { font-size: 30px; font-weight: 700; letter-spacing: -0.025em; }
.nbc-agency-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; text-align: left; margin: 24px 0; padding: 24px 32px; border: 1px solid #e4e4e7; border-radius: 12px; background: #fff; }
.nbc-agency-feat { font-size: 14px; }
.nbc-agency-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #e4e4e7; }
.nbc-offer-badge { display: inline-block; padding: 4px 16px; border-radius: 9999px; background: #ef4444; color: #fff; font-size: 14px; font-weight: 500; }

/* Footer */
.nbc-footer { border-top: 1px solid #e4e4e7; background: #fff; padding: 48px 20px; }
.nbc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
.nbc-footer-logo { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.nbc-footer-brand p { font-size: 14px; color: #71717a; max-width: 400px; }
.nbc-footer-social { display: flex; gap: 8px; margin-top: 16px; }
.nbc-footer h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.nbc-footer a { display: block; font-size: 14px; color: #71717a; margin-bottom: 8px; transition: color 0.2s; }
.nbc-footer a:hover { color: #1a1a2e; }
.nbc-footer-bottom { text-align: center; font-size: 12px; color: #a1a1aa; margin-top: 32px; padding-top: 24px; border-top: 1px solid #e4e4e7; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Modal */
.nbc-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.nbc-modal { background: #fff; border-radius: 12px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.nbc-modal-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(0,0,0,0.5); color: #fff; font-size: 16px; cursor: pointer; z-index: 10; }
.nbc-modal img { width: 100%; height: 208px; object-fit: cover; border-radius: 12px 12px 0 0; }
.nbc-modal-body { padding: 20px; }
.nbc-modal-badges { display: flex; gap: 8px; margin-bottom: 8px; }
.nbc-modal-badges span { padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 500; }
.nbc-modal h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.nbc-modal p { font-size: 14px; color: #71717a; margin-bottom: 16px; }
.nbc-modal-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #71717a; margin-bottom: 6px; }
.nbc-modal-feat::before { content: "✓"; color: var(--nbc-primary, #3b82f6); font-weight: 700; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .nbc-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nbc-hero-slider { height: 360px; }
    .nbc-products-grid { grid-template-columns: repeat(2, 1fr); }
    .nbc-trust-badges { grid-template-columns: 1fr; }
    .nbc-agency-features { grid-template-columns: 1fr; }
    .nbc-footer-grid { grid-template-columns: 1fr; }
    .nbc-strip-img { height: 80px; width: 128px; }
}
@media (max-width: 480px) {
    .nbc-hero-slider { height: 260px; }
    .nbc-products-grid { grid-template-columns: 1fr; }
}
