/* Extracted CSS for pages/solutions/barcode-inventory-system/index.html */
/* ── Hero ── */
        .bc-hero {
            padding: 140px 0 80px;
            background: #0a0a0c;
            position: relative;
            overflow: hidden;
        }

        .bc-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 50% at 65% 25%, rgba(94, 14, 215, .18) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 15% 85%, rgba(94, 14, 215, .1) 0%, transparent 60%);
            pointer-events: none;
        }

        .bc-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .bc-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #5E0ED7;
            margin-bottom: 1.5rem;
        }

        .bc-eyebrow::before {
            content: "";
            display: block;
            width: 20px;
            height: 1.5px;
            background: #5E0ED7;
            border-radius: 2px;
        }

        .bc-h1 {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: .95;
            letter-spacing: -.04em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .bc-h1 .accent {
            color: #5E0ED7;
        }

        .bc-desc {
            color: rgba(255, 255, 255, .6);
            font-size: 1.05rem;
            line-height: 1.75;
            margin-bottom: 2rem;
            max-width: 480px;
        }

        .bc-cta-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: .75rem;
        }

        .btn-bc-primary {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .85rem 1.75rem;
            background: #5E0ED7;
            color: #fff;
            font-size: .9rem;
            font-weight: 700;
            letter-spacing: .04em;
            border-radius: 8px;
            text-decoration: none;
            transition: background .25s, transform .2s;
        }

        .btn-bc-primary:hover {
            background: #7a2ef0;
            transform: translateY(-2px);
        }

        .bc-cta-sub {
            font-size: .78rem;
            color: rgba(255, 255, 255, .4);
            letter-spacing: .05em;
        }

        .bc-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 2.5rem;
        }

        .bc-stat {
            background: #121217;
            padding: 1.5rem 1.25rem;
            text-align: center;
        }

        .bc-stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: #5E0ED7;
            letter-spacing: -.03em;
            line-height: 1;
            margin-bottom: .35rem;
        }

        .bc-stat-label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
        }

        /* ── Scanner Panel (hero visual) ── */
        .scanner-panel {
            background: #121217;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 1.5rem;
            min-height: 380px;
            position: relative;
            overflow: hidden;
        }

        .scanner-panel::before {
            content: "";
            position: absolute;
            top: -40%;
            right: -20%;
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(94, 14, 215, .12) 0%, transparent 70%);
            pointer-events: none;
        }

        .sp-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem;
            padding-bottom: .75rem;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .sp-title {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
        }

        .sp-status {
            display: flex;
            align-items: center;
            gap: .4rem;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #5E0ED7;
        }

        .sp-status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #5E0ED7;
            animation: livePulse 1.4s ease-in-out infinite;
        }

        /* Barcode graphic */
        .sp-scan-area {
            position: relative;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 8px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .sp-barcode {
            display: flex;
            align-items: flex-end;
            gap: 2px;
            height: 52px;
            justify-content: center;
            margin-bottom: .5rem;
        }

        .sp-bar {
            background: rgba(255, 255, 255, .7);
            border-radius: 1px;
        }

        .sp-barcode-label {
            text-align: center;
            font-size: .65rem;
            letter-spacing: .2em;
            color: rgba(255, 255, 255, .35);
            font-family: monospace;
        }

        .sp-scan-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(94, 14, 215, .9);
            box-shadow: 0 0 8px rgba(94, 14, 215, .8), 0 0 20px rgba(94, 14, 215, .4);
            top: 10px;
            opacity: 0;
        }

        /* Product record */
        .sp-record {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: .75rem;
            opacity: 0;
        }

        .sp-record-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
        }

        .sp-record-row:last-child {
            border-bottom: none;
        }

        .sp-record-key {
            font-size: .7rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .35);
        }

        .sp-record-val {
            font-size: .82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .8);
        }

        /* Sync indicator */
        .sp-sync {
            display: flex;
            align-items: center;
            gap: .6rem;
            padding: .65rem 1rem;
            background: rgba(16, 185, 129, .08);
            border: 1px solid rgba(16, 185, 129, .2);
            border-radius: 6px;
            opacity: 0;
        }

        .sp-sync-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(16, 185, 129, .8);
        }

        .sp-sync-text {
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(16, 185, 129, .9);
        }

        .sp-sync-detail {
            font-size: .72rem;
            color: rgba(255, 255, 255, .4);
            margin-left: auto;
        }

        /* ── Sections ── */
        .bc-section {
            padding: clamp(5rem, 10vh, 8rem) 0;
            background: #0a0a0c;
        }

        .bc-section.alt {
            background: #121217;
        }

        .bc-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .bc-eyebrow-sm {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #5E0ED7;
            margin-bottom: 1.25rem;
        }

        .bc-eyebrow-sm::before {
            content: "";
            display: block;
            width: 20px;
            height: 1.5px;
            background: #5E0ED7;
            border-radius: 2px;
        }

        .bc-h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -.04em;
            text-transform: uppercase;
            color: #fff;
        }

        .bc-h2 .accent {
            color: #5E0ED7;
        }

        /* ── Scan flow nodes ── */
        .scan-flow {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            max-width: 960px;
            margin: 0 auto;
        }

        .scan-flow-connector {
            position: absolute;
            top: 36px;
            left: calc(12.5% + 16px);
            right: calc(12.5% + 16px);
            height: 1px;
            pointer-events: none;
        }

        .scan-flow-connector svg {
            width: 100%;
            height: 2px;
            overflow: visible;
        }

        .scan-flow-connector line {
            stroke: rgba(94, 14, 215, .5);
            stroke-width: 1.5;
            stroke-dasharray: 600;
            stroke-dashoffset: 600;
        }

        .scan-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 1rem;
        }

        .scan-node-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 1.5px solid rgba(94, 14, 215, .5);
            background: rgba(94, 14, 215, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .scan-node-num {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #5E0ED7;
        }

        .scan-node-label {
            font-size: .88rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .4rem;
        }

        .scan-node-desc {
            font-size: .78rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.55;
        }

        /* ── Feature split ── */
        .bc-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .bc-split.reversed {
            direction: rtl;
        }

        .bc-split.reversed>* {
            direction: ltr;
        }

        .bc-split-body {
            font-size: .95rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.75;
            margin-bottom: 1.75rem;
        }

        .bc-feature-list {
            display: flex;
            flex-direction: column;
            gap: .65rem;
        }

        .bc-feature-item {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            font-size: .88rem;
            color: rgba(255, 255, 255, .65);
            line-height: 1.55;
        }

        .bc-feature-item::before {
            content: "";
            display: block;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #5E0ED7;
            flex-shrink: 0;
            margin-top: .5rem;
        }

        /* Mobile device SVG panel */
        .device-panel {
            background: #121217;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
        }

        .device-svg-wrap {
            width: 100%;
            max-width: 280px;
        }

        /* RFID diagram panel */
        .rfid-panel {
            background: #121217;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 2rem;
        }

        .rfid-diagram {
            display: flex;
            flex-direction: column;
            gap: .75rem;
        }

        .rfid-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: .75rem 1rem;
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(255, 255, 255, .05);
            border-radius: 7px;
            opacity: 0;
            transform: translateX(-20px);
        }

        .rfid-row-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: rgba(94, 14, 215, .12);
            border: 1px solid rgba(94, 14, 215, .25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .rfid-row-icon svg {
            width: 16px;
            height: 16px;
            stroke: rgba(94, 14, 215, .8);
            fill: none;
        }

        .rfid-row-label {
            font-size: .82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .7);
        }

        .rfid-row-status {
            margin-left: auto;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(16, 185, 129, .8);
        }

        /* ── Use cases ── */
        .usecase-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .usecase-row {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            align-items: flex-start;
            background: #0a0a0c;
            padding: 1.75rem 2rem;
        }

        .usecase-row.alt-row {
            background: #121217;
        }

        .usecase-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: rgba(94, 14, 215, .35);
            line-height: 1;
            letter-spacing: -.04em;
        }

        .usecase-title {
            font-size: .95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .35rem;
            text-transform: uppercase;
            letter-spacing: .04em;
        }

        .usecase-desc {
            font-size: .85rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.6;
        }

        /* ── Comparison table ── */
        .bc-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            overflow: hidden;
        }

        .bc-table thead tr {
            background: #121217;
        }

        .bc-table th {
            padding: 1rem 1.5rem;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
        }

        .bc-table th:first-child {
            color: rgba(255, 255, 255, .6);
        }

        .bc-table th.col-solvevare {
            color: #5E0ED7;
        }

        .bc-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, .05);
        }

        .bc-table tbody tr:last-child {
            border-bottom: none;
        }

        .bc-table tbody tr:nth-child(odd) {
            background: #0a0a0c;
        }

        .bc-table tbody tr:nth-child(even) {
            background: rgba(18, 18, 23, .8);
        }

        .bc-table td {
            padding: 1.1rem 1.5rem;
            font-size: .88rem;
            line-height: 1.5;
        }

        .bc-table td:first-child {
            font-weight: 600;
            color: rgba(255, 255, 255, .7);
        }

        .bc-table td.col-generic {
            color: rgba(239, 68, 68, .7);
        }

        .bc-table td.col-solvevare {
            color: rgba(16, 185, 129, .85);
        }

        /* ── Final CTA ── */
        .bc-final-cta {
            padding: clamp(5rem, 10vh, 8rem) 0;
            background: #0a0a0c;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bc-final-cta::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 350px;
            background: radial-gradient(ellipse, rgba(94, 14, 215, .18) 0%, transparent 70%);
            pointer-events: none;
        }

        .bc-cta-h2 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            line-height: .95;
            letter-spacing: -.04em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .bc-cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, .55);
            max-width: 520px;
            margin: 0 auto 2.5rem;
            line-height: 1.65;
            position: relative;
        }

        .bc-cta-sub {
            font-size: .78rem;
            color: rgba(255, 255, 255, .35);
            margin-top: .75rem;
            letter-spacing: .04em;
        }

        @keyframes livePulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .5;
                transform: scale(.8)
            }
        }

        @media(max-width:1024px) {
            .bc-hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .bc-split {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .bc-split.reversed {
                direction: ltr;
            }

            .scan-flow {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .bc-table th,
            .bc-table td {
                padding: .75rem 1rem;
            }
        }

        @media(max-width:768px) {
            .bc-hero {
                padding: 120px 0 60px;
            }

            .bc-stats {
                grid-template-columns: 1fr;
            }

            .scan-flow {
                grid-template-columns: 1fr;
            }

            .scan-flow-connector {
                display: none;
            }

            .bc-table {
                font-size: .8rem;
            }
        }