/* ══════════════════════════════════════════════════════════════
   SBEHUB — Industry Page Styles v2
   ══════════════════════════════════════════════════════════════ */

/* ── Value Props Strip ── */
.vp-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vp-block {
    padding: 48px 36px;
    background: var(--bg-secondary);
    transition: var(--transition-base);
    position: relative;
}

.vp-block:hover { background: rgba(12, 18, 35, 0.7); }

.vp-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
    transition: var(--transition-base);
}

.vp-block:hover .vp-num { color: rgba(4, 92, 180, 0.1); }

.vp-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vp-block:hover h3 { color: var(--brand-light); }

.vp-block p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ── Image Row ── */
.ind-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ind-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.8s ease;
}

.ind-images img:hover { transform: scale(1.05); }

/* ── Industries Mosaic ── */
.ind-bg { background: var(--bg-secondary); }

.ind-mosaic {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.ind-tile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-base);
    cursor: default;
}

.ind-tile:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(4, 92, 180, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(4, 92, 180, 0.1);
}

/* ── Expertise Rows ── */
.exp-rows {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.exp-row {
    display: flex;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-base);
}

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

.exp-row:hover { padding-left: 12px; }

.exp-idx {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    transition: var(--transition-base);
}

.exp-row:hover .exp-idx { color: rgba(4, 92, 180, 0.15); }

.exp-row h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.exp-row:hover h3 { color: var(--brand-light); }

.exp-row p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .vp-strip { grid-template-columns: 1fr; }
    .ind-images { grid-template-columns: 1fr; }
    .ind-images img { height: 200px; }
    .exp-row { flex-direction: column; gap: 8px; }
}
