/* ─────────────────────────────────────────────
   third-party-integration.css
   BNSPIRE Technologies – 3rd Party Integration Page
   ───────────────────────────────────────────── */

/* Banner */


.tpi-highlight {
    color: #0284c7;
}

/* Category cards */
.tpi-category-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tpi-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(2, 132, 199, 0.1);
}

.tpi-cat-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #0284c7;
}

/* How it works */
.tpi-how-section {
    background: #f0f9ff;
}

.tpi-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tpi-step {
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0f2fe;
}

.tpi-step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #0284c7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Integration diagram */
.tpi-diagram {
    position: relative;
}

.tpi-diagram-center {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.tpi-center-node {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #fff;
    padding: 16px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
}

.tpi-center-node i {
    font-size: 1.5rem;
}

.tpi-nodes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tpi-node {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0369a1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
}

.tpi-node:hover {
    background: #e0f2fe;
}

.tpi-node i {
    font-size: 1.2rem;
}

/* Why us icons */
.tpi-reason-icon {
    width: 44px;
    height: 44px;
    background: #e0f2fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0284c7;
}

/* CTA */
.tpi-cta-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-top: 1px solid #bae6fd;
}