.ip-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ip-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
}

/* ── Layout ── */

.ip-layout {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

/* ── Sidebar ── */

.ip-sidebar {
    flex-shrink: 0;
}

.ip-tab-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-platforms button.ip-tab-btn {
    display: flex;
    align-items: center;
    justify-content: start !important;
    gap: 0;
    width: 100%;
    padding: 0 !important;
    height: 42px;
    border: none;
    background: transparent !important;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
    color: #444444 !important;
    cursor: pointer;
    text-align: left;
    transition: background-color 250ms ease, color 250ms ease;
}

.industry-platforms .ip-tab-btn:hover {
    color: #000000 !important;
}

.industry-platforms .ip-tab-btn.is-active {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.ip-tab-dot {
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #62B9CC;
    flex-shrink: 0;
    margin-right: 0;
    transition: width 300ms ease, height 300ms ease, margin-right 300ms ease;
}

.industry-platforms .ip-tab-btn:hover .ip-tab-dot,
.industry-platforms .ip-tab-btn.is-active .ip-tab-dot {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

.industry-platforms .ip-tab-btn:hover .ip-tab-dot {
    background-color: #005EAD;
}

/* ── Panels ── */

.ip-panels {
    flex: 1;
    min-width: 0;
}

.ip-panel {
    border: 1px solid rgba(204, 204, 204, 0.8);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: #F6F5F5;
}

.ip-panel-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #005EAD;
    margin: 0;
}

.ip-panel-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    margin: 0;
}

/* ── Platforms eyebrow ── */

.ip-platforms-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-eyebrow {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #005EAD;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ip-divider {
    border: none;
    border-top: 1px solid rgba(204, 204, 204, 0.8);
    margin: 0;
}

/* ── Platform description columns ── */

.ip-platform-descs {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.ip-platform-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ip-platform-name {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
}

.ip-platform-body {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

/* ── Platform link columns ── */

.ip-platform-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.ip-links-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ip-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #005EAD;
    text-decoration: none;
    transition: opacity 150ms ease-in-out;
}

.ip-link:hover {
    opacity: 0.75;
}

.ip-link-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ── Mobile ── */

@media (max-width: 768px) {
    .industry-platforms {
        padding: 60px 0;
    }

    .ip-inner {
        gap: 32px;
    }

    .ip-layout {
        flex-direction: column;
    }

    .ip-sidebar {
        width: 100%;
    }


    .ip-platform-descs,
    .ip-platform-links {
        flex-direction: column;
    }

    .ip-panel {
        padding: 24px;
        gap: 24px;
    }
}
