/* ===== Industry Solutions ===== */
.ta-industries {
    --ind-bg: #0a141c;
    --ind-green: #4ade80;
    --ind-green-bright: #6ee7a0;
    --ind-text: #ffffff;
    --ind-muted: #9ca8b0;
    --ind-card: #0e181f;
    --ind-border: rgba(148, 163, 168, 0.18);
    --ind-font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    background: var(--ind-bg);
    font-family: var(--ind-font);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    padding: 4.5rem 0 4.5rem;
}

.ta-industries-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(95, 177, 115, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 15% 20%, rgba(95, 177, 115, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 85% 30%, rgba(95, 177, 115, 0.05) 0%, transparent 35%);
}

.ta-industries-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ta-industries-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.25rem;
}

.ta-industries-eyebrow {
    display: block;
    margin: 0 0 0.85rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ind-green);
}

.ta-industries-title {
    margin: 0 0 0.9rem;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.25;
}

.ta-industries-title .ta-ind-period {
    color: var(--ind-green);
}

.ta-industries-lead {
    margin: 0 auto;
    max-width: 560px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ind-muted);
}

/* Tabs — icon + label on one row */
.ta-ind-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    margin: 0 auto 1.75rem;
    max-width: 1180px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ta-ind-tabs::-webkit-scrollbar {
    display: none;
}

.ta-ind-tab {
    appearance: none;
    background: none;
    border: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1 1 0;
    min-width: 0;
    padding: 0.85rem 0.5rem 1rem;
    cursor: pointer;
    color: #c5d0d6;
    font-family: var(--ind-font);
    position: relative;
    transition: color 0.2s ease;
}

.ta-ind-tab svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    stroke: var(--ind-green);
    fill: none;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease, filter 0.2s ease, color 0.2s ease;
}

.ta-ind-tab span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    max-width: 11em;
    word-break: break-word;
}

.ta-ind-tab:hover {
    color: #fff;
}

.ta-ind-tab:hover svg {
    filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.45));
}

.ta-ind-tab.is-active {
    color: var(--ind-green);
}

.ta-ind-tab.is-active svg {
    stroke: var(--ind-green);
    filter: drop-shadow(0 0 6px rgba(95, 177, 115, 0.7));
}

.ta-ind-tab.is-active::after {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -1px;
    height: 2px;
    background: var(--ind-green);
    box-shadow: 0 0 10px rgba(95, 177, 115, 0.7);
    border-radius: 1px;
}

.ta-ind-tab.is-active::before {
    display: none;
}

/* Panel shell */
.ta-ind-panel {
    display: none;
    animation: ta-ind-fade 0.35s ease;
}

.ta-ind-panel.is-active {
    display: block;
}

@keyframes ta-ind-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ta-ind-shell {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0;
    border: 1px solid rgba(74, 222, 128, 0.22);
    border-radius: 12px;
    background: rgba(8, 18, 24, 0.92);
    overflow: hidden;
    min-height: 440px;
}

/* Banks / Brokerages only: outcomes + mesh share one right column */
.ta-ind-shell:not(.ta-ind-shell--fintech):not(.ta-ind-shell--nbfi):not(.ta-ind-shell--insurance) .ta-ind-mid,
.ta-ind-shell:not(.ta-ind-shell--fintech):not(.ta-ind-shell--nbfi):not(.ta-ind-shell--insurance) .ta-ind-right {
    grid-column: 2;
    grid-row: 1;
}

.ta-ind-shell:not(.ta-ind-shell--fintech):not(.ta-ind-shell--nbfi):not(.ta-ind-shell--insurance) .ta-ind-mid {
    position: relative;
    z-index: 2;
    padding: 1.75rem 1.35rem 1.6rem 1.5rem;
    background: transparent;
}

.ta-ind-shell:not(.ta-ind-shell--fintech):not(.ta-ind-shell--nbfi):not(.ta-ind-shell--insurance) .ta-ind-right {
    position: relative;
    z-index: 1;
    min-height: 460px;
    padding: 0;
    border: none;
}

/* Fintechs: 3-column — wider caps | narrower outcomes | chip visual */
.ta-ind-shell--fintech {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.72fr) minmax(0, 0.78fr);
}

.ta-ind-shell--fintech .ta-ind-left {
    border-right: 1px solid rgba(148, 163, 168, 0.18);
    padding: 1.5rem 1.15rem 1.4rem 1.25rem;
    min-width: 0;
}

.ta-ind-shell--fintech .ta-ind-mid {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0.85rem 1.4rem 0.95rem;
    border-right: 1px solid rgba(148, 163, 168, 0.14);
    min-width: 0;
}

.ta-ind-shell--fintech .ta-ind-right {
    position: relative;
    z-index: 1;
    min-height: 420px;
    min-width: 0;
    padding: 0.6rem 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
}

.ta-ind-shell--fintech .ta-ind-challenge {
    font-size: 15.5px;
}

.ta-ind-shell--fintech .ta-ind-caps {
    gap: 0.5rem;
}

.ta-ind-shell--fintech .ta-ind-cap {
    gap: 0.5rem;
    padding: 0.65rem 0.55rem;
    min-width: 0;
}

.ta-ind-shell--fintech .ta-ind-cap-icon {
    width: 20px;
    height: 20px;
}

.ta-ind-shell--fintech .ta-ind-cap-icon svg {
    width: 20px;
    height: 20px;
}

.ta-ind-shell--fintech .ta-ind-cap strong {
    font-size: 11.5px;
}

.ta-ind-shell--fintech .ta-ind-cap span {
    font-size: 10.5px;
    line-height: 1.3;
}

.ta-ind-shell--fintech .ta-ind-outcomes {
    max-width: none;
    gap: 1rem;
}

.ta-ind-shell--fintech .ta-ind-outcome {
    gap: 0.6rem;
}

.ta-ind-shell--fintech .ta-ind-outcome-icon {
    width: 40px;
    height: 40px;
}

.ta-ind-shell--fintech .ta-ind-outcome-icon svg {
    width: 18px;
    height: 18px;
}

.ta-ind-shell--fintech .ta-ind-outcome strong {
    font-size: 12.5px;
    margin-bottom: 0.15rem;
}

.ta-ind-shell--fintech .ta-ind-outcome span {
    font-size: 11px;
    line-height: 1.35;
}

.ta-ind-shell--fintech .ta-ind-label {
    font-size: 10px;
    letter-spacing: 0.12em;
}

.ta-ind-shell--fintech .ta-ind-fintech {
    width: min(100%, 260px);
}

.ta-ind-left {
    padding: 1.75rem 1.6rem 1.6rem;
    border-right: 1px solid rgba(148, 163, 168, 0.18);
}

.ta-ind-shell:not(.ta-ind-shell--fintech) .ta-ind-left {
    border-right: 1px solid rgba(148, 163, 168, 0.18);
}

.ta-ind-label {
    display: block;
    margin: 0 0 0.7rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ind-green);
    position: relative;
    z-index: 3;
}

.ta-ind-challenge {
    margin: 0 0 1.35rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(148, 163, 168, 0.16);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    letter-spacing: -0.015em;
}

.ta-ind-caps-label {
    margin: 0 0 1rem;
}

/* 3-col × 2-row — icon left, text right */
.ta-ind-caps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    min-width: 0;
}

.ta-ind-cap {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid rgba(148, 163, 168, 0.22);
    border-radius: 8px;
    padding: 0.75rem 0.7rem;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background 0.2s ease;
    min-width: 0;
    overflow: hidden;
}

.ta-ind-cap-body {
    min-width: 0;
    overflow: hidden;
}

.ta-ind-cap:hover {
    border-color: rgba(74, 222, 128, 0.55);
    background: rgba(74, 222, 128, 0.05);
}

.ta-ind-cap-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    color: var(--ind-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ta-ind-cap-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: var(--ind-green);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ta-ind-cap strong {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.ta-ind-shell--fintech .ta-ind-cap strong {
    color: var(--ind-green);
}

.ta-ind-cap span {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    color: var(--ind-muted);
}

/* Outcomes — match mock: thin green rings, centered glyphs */
.ta-ind-outcomes {
    position: relative;
    z-index: 3;
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    max-width: 280px;
}

.ta-ind-outcome {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.ta-ind-outcome-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 222, 128, 0.85);
    display: grid;
    place-items: center;
    background: transparent;
    box-shadow: 0 0 16px rgba(74, 222, 128, 0.22);
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.ta-ind-outcome-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    stroke: var(--ind-green);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

.ta-ind-outcome > div {
    min-width: 0;
    padding-top: 0;
}

.ta-ind-outcome strong {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.ta-ind-outcome span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: #9aa7af;
}

.ta-ind-outcomes--timeline {
    max-width: none;
    padding-left: 0.15rem;
    border-left: 1px solid rgba(160, 170, 180, 0.28);
    margin-left: 0.15rem;
    gap: 1.45rem;
}

.ta-ind-outcomes--timeline .ta-ind-outcome {
    position: relative;
    padding-left: 1.1rem;
    margin-left: -0.15rem;
}

.ta-ind-outcomes--timeline .ta-ind-outcome::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ind-green);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18), 0 0 12px rgba(74, 222, 128, 0.45);
}

/* Mesh — faint hairlines + tiny icons, pushed right behind outcomes */
.ta-ind-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    padding: 0.5rem 0 0.5rem 38%;
}

.ta-ind-visual--mesh {
    opacity: 1;
}

.ta-ind-mesh {
    width: min(100%, 340px);
    height: auto;
    max-height: 96%;
    overflow: visible;
    margin-right: -0.5rem;
    opacity: 0.72;
}

.ta-ind-mesh-lines {
    opacity: 0.28;
}

.ta-ind-mesh-dots {
    opacity: 0.35;
}

.ta-ind-mesh-icon {
    filter: none;
}

/* Fintech chip / card constellation */
.ta-ind-visual--fintech {
    position: relative;
    inset: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    opacity: 1;
}

.ta-ind-fintech {
    width: min(100%, 300px);
    height: auto;
    max-height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 18px rgba(74, 222, 128, 0.15));
}

.ta-ind-ft-node {
    filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.35));
}

/* NBFI: true 3-col — caps | outcomes list | sync graphic (never stacked) */
.ta-ind-shell--nbfi {
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.9fr) minmax(260px, 1.05fr);
}

.ta-ind-shell--nbfi .ta-ind-left {
    grid-column: 1;
    grid-row: 1;
    border-right: 1px solid rgba(148, 163, 168, 0.2);
    min-width: 0;
    padding: 1.5rem 1.2rem 1.35rem 1.3rem;
}

.ta-ind-shell--nbfi .ta-ind-mid {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 1.5rem 1.05rem 1.35rem 1.15rem;
    border-right: 1px solid rgba(148, 163, 168, 0.2);
    background: rgba(8, 18, 24, 0.98);
}

/* glowing node on the mid/right divider */
.ta-ind-shell--nbfi .ta-ind-mid::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ind-green);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.85), 0 0 18px rgba(74, 222, 128, 0.45);
    transform: translateY(-50%);
    z-index: 3;
}

.ta-ind-shell--nbfi .ta-ind-right {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 460px;
    padding: 0.85rem 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 65% at 50% 48%, rgba(74, 222, 128, 0.1) 0%, transparent 68%);
}

.ta-ind-shell--nbfi .ta-ind-caps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.ta-ind-shell--nbfi .ta-ind-cap {
    padding: 0.7rem 0.6rem;
    min-width: 0;
    gap: 0.55rem;
}

.ta-ind-shell--nbfi .ta-ind-cap-icon {
    width: 22px;
    height: 22px;
    margin-top: 0;
}

.ta-ind-shell--nbfi .ta-ind-cap-icon svg {
    width: 22px;
    height: 22px;
}

.ta-ind-shell--nbfi .ta-ind-cap strong {
    font-size: 12.5px;
    color: #fff;
}

.ta-ind-shell--nbfi .ta-ind-cap span {
    font-size: 11px;
    line-height: 1.35;
}

.ta-ind-shell--nbfi .ta-ind-challenge {
    font-size: 15.5px;
    line-height: 1.4;
}

.ta-ind-shell--nbfi .ta-ind-outcomes {
    max-width: none;
    gap: 1.15rem;
}

.ta-ind-outcomes--nbfi .ta-ind-outcome {
    gap: 0.8rem;
    padding: 0;
    border-bottom: none;
    align-items: center;
}

.ta-ind-shell--nbfi .ta-ind-outcome-icon {
    width: 46px;
    height: 46px;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.28);
}

.ta-ind-shell--nbfi .ta-ind-outcome-icon svg {
    width: 20px;
    height: 20px;
}

.ta-ind-shell--nbfi .ta-ind-outcome strong {
    font-size: 13.5px;
    margin-bottom: 0.18rem;
    line-height: 1.25;
}

.ta-ind-shell--nbfi .ta-ind-outcome span {
    font-size: 12px;
    line-height: 1.4;
    color: #9aa7af;
}

.ta-ind-visual--nbfi {
    position: relative !important;
    inset: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.ta-ind-nbfi {
    width: min(100%, 340px);
    height: auto;
    max-height: 480px;
    overflow: visible;
    margin: 0;
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(74, 222, 128, 0.22));
}

.ta-ind-nb-node {
    filter: drop-shadow(0 0 7px rgba(94, 234, 212, 0.45));
}

/* Insurance: 3-col — caps | timeline outcomes | constellation */
.ta-ind-shell--insurance {
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.78fr) minmax(250px, 1fr);
}

.ta-ind-shell--insurance .ta-ind-left {
    grid-column: 1;
    grid-row: 1;
    border-right: 1px solid rgba(148, 163, 168, 0.18);
    min-width: 0;
    padding: 1.5rem 1.15rem 1.35rem 1.25rem;
}

.ta-ind-shell--insurance .ta-ind-mid {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 1.5rem 0.9rem 1.35rem 1rem;
    border-right: 1px solid rgba(148, 163, 168, 0.16);
    background: rgba(8, 18, 24, 0.98);
}

.ta-ind-shell--insurance .ta-ind-right {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 460px;
    padding: 0.55rem 0.35rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 75% 60% at 50% 42%, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
}

.ta-ind-shell--insurance .ta-ind-challenge {
    font-size: 15.5px;
}

.ta-ind-shell--insurance .ta-ind-caps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.ta-ind-shell--insurance .ta-ind-cap {
    padding: 0.7rem 0.55rem;
    gap: 0.5rem;
    min-width: 0;
}

.ta-ind-shell--insurance .ta-ind-cap-icon {
    width: 20px;
    height: 20px;
}

.ta-ind-shell--insurance .ta-ind-cap-icon svg {
    width: 20px;
    height: 20px;
}

.ta-ind-shell--insurance .ta-ind-cap strong {
    font-size: 12px;
    color: var(--ind-green);
}

.ta-ind-shell--insurance .ta-ind-cap span {
    font-size: 11px;
    line-height: 1.35;
    color: #c5cdd2;
}

.ta-ind-shell--insurance .ta-ind-outcomes {
    max-width: none;
    gap: 1.25rem;
}

.ta-ind-shell--insurance .ta-ind-outcomes--timeline {
    border-left-color: rgba(74, 222, 128, 0.55);
}

.ta-ind-shell--insurance .ta-ind-outcome-icon {
    width: 44px;
    height: 44px;
    border-color: rgba(148, 163, 168, 0.45);
    box-shadow: none;
    background: rgba(10, 20, 28, 0.9);
}

.ta-ind-shell--insurance .ta-ind-outcome-icon svg {
    width: 18px;
    height: 18px;
}

.ta-ind-shell--insurance .ta-ind-outcome strong {
    font-size: 13px;
    margin-bottom: 0.15rem;
}

.ta-ind-shell--insurance .ta-ind-outcome span {
    font-size: 11.5px;
    line-height: 1.4;
}

.ta-ind-visual--insurance {
    position: relative !important;
    inset: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    pointer-events: none;
    opacity: 1;
}

.ta-ind-insurance {
    width: min(100%, 340px);
    height: auto;
    max-height: 480px;
    overflow: visible;
    filter: drop-shadow(0 0 16px rgba(74, 222, 128, 0.2));
}

.ta-ind-ins-node {
    filter: drop-shadow(0 0 7px rgba(74, 222, 128, 0.45));
}

/* DNFBP: banks-style 2-col — outcomes over hub constellation */
.ta-ind-shell--dnfbp {
    grid-template-columns: 1.35fr 1fr;
}

.ta-ind-shell--dnfbp .ta-ind-left {
    position: relative;
    border-right: 1px solid rgba(148, 163, 168, 0.22);
    padding: 1.6rem 1.4rem 1.5rem 1.5rem;
}

.ta-ind-shell--dnfbp .ta-ind-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    width: 7px;
    height: 7px;
    background: var(--ind-green);
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.75);
    z-index: 4;
}

.ta-ind-shell--dnfbp .ta-ind-mid {
    max-width: 52%;
    padding: 1.6rem 1rem 1.5rem 1.35rem;
}

.ta-ind-shell--dnfbp .ta-ind-challenge {
    font-size: 17px;
    line-height: 1.4;
}

.ta-ind-shell--dnfbp .ta-ind-caps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.ta-ind-shell--dnfbp .ta-ind-cap {
    padding: 0.7rem 0.6rem;
    gap: 0.55rem;
}

.ta-ind-shell--dnfbp .ta-ind-cap strong {
    font-size: 11.5px;
    color: #fff;
    line-height: 1.25;
}

.ta-ind-shell--dnfbp .ta-ind-cap span {
    font-size: 10.5px;
    line-height: 1.35;
}

.ta-ind-shell--dnfbp .ta-ind-outcomes {
    max-width: 260px;
    gap: 1.2rem;
}

.ta-ind-outcomes--dnfbp .ta-ind-outcome {
    gap: 0.85rem;
}

.ta-ind-shell--dnfbp .ta-ind-outcome-icon {
    width: 48px;
    height: 48px;
    border-color: rgba(74, 222, 128, 0.8);
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.22);
}

.ta-ind-shell--dnfbp .ta-ind-outcome-icon svg {
    width: 20px;
    height: 20px;
}

.ta-ind-shell--dnfbp .ta-ind-outcome strong {
    font-size: 14px;
}

.ta-ind-shell--dnfbp .ta-ind-outcome span {
    font-size: 12.5px;
}

.ta-ind-shell--dnfbp .ta-ind-right {
    background:
        radial-gradient(ellipse 70% 60% at 70% 48%, rgba(74, 222, 128, 0.07) 0%, transparent 68%);
}

.ta-ind-visual--dnfbp {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem 0.5rem 0.75rem 28%;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.ta-ind-dnfbp {
    width: min(100%, 320px);
    height: auto;
    max-height: 94%;
    overflow: visible;
    opacity: 0.95;
    filter: drop-shadow(0 0 14px rgba(74, 222, 128, 0.18));
}

.ta-ind-dn-node {
    filter: drop-shadow(0 0 5px rgba(200, 220, 205, 0.25));
}

.ta-ind-cta--link {
    min-width: 0;
    padding: 0.2rem 0.15rem;
    border: none;
    border-radius: 0;
    border-bottom: 1.5px solid rgba(74, 222, 128, 0.85);
    background: transparent;
    color: var(--ind-green) !important;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: none;
}

.ta-ind-cta--link:hover {
    transform: translateY(-1px);
    background: transparent;
    border-color: var(--ind-green);
    box-shadow: none;
    color: var(--ind-green-bright) !important;
}

.ta-ind-cta--link span {
    margin-left: 0.35rem;
}

.ta-ind-foot {
    margin-top: 2rem;
    text-align: center;
}

.ta-ind-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 280px;
    max-width: 100%;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    border: 1.5px solid rgba(74, 222, 128, 0.75);
    background: transparent;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ta-ind-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(95, 177, 115, 0.9);
    background: rgba(95, 177, 115, 0.08);
    box-shadow: 0 0 22px rgba(95, 177, 115, 0.18);
    color: #fff !important;
}

.ta-ind-note {
    margin: 0.9rem 0 0;
    font-size: 13px;
    color: var(--ind-muted);
}

@media (max-width: 1100px) {
    .ta-ind-shell,
    .ta-ind-shell--fintech,
    .ta-ind-shell--nbfi,
    .ta-ind-shell--insurance,
    .ta-ind-shell--dnfbp {
        grid-template-columns: 1fr;
    }

    .ta-ind-shell:not(.ta-ind-shell--fintech):not(.ta-ind-shell--nbfi):not(.ta-ind-shell--insurance) .ta-ind-mid,
    .ta-ind-shell:not(.ta-ind-shell--fintech):not(.ta-ind-shell--nbfi):not(.ta-ind-shell--insurance) .ta-ind-right,
    .ta-ind-shell--fintech .ta-ind-mid,
    .ta-ind-shell--fintech .ta-ind-right,
    .ta-ind-shell--nbfi .ta-ind-left,
    .ta-ind-shell--nbfi .ta-ind-mid,
    .ta-ind-shell--nbfi .ta-ind-right,
    .ta-ind-shell--insurance .ta-ind-left,
    .ta-ind-shell--insurance .ta-ind-mid,
    .ta-ind-shell--insurance .ta-ind-right {
        grid-column: 1;
        grid-row: auto;
    }

    .ta-ind-shell--nbfi .ta-ind-mid::after,
    .ta-ind-shell--dnfbp .ta-ind-left::after {
        display: none;
    }

    .ta-ind-left,
    .ta-ind-shell--fintech .ta-ind-mid,
    .ta-ind-shell--nbfi .ta-ind-mid,
    .ta-ind-shell--insurance .ta-ind-mid {
        border-right: none;
        border-bottom: 1px solid var(--ind-border);
    }

    .ta-ind-shell--dnfbp .ta-ind-mid {
        max-width: none;
    }

    .ta-ind-shell--fintech .ta-ind-right,
    .ta-ind-shell--nbfi .ta-ind-right,
    .ta-ind-shell--insurance .ta-ind-right,
    .ta-ind-shell--dnfbp .ta-ind-right {
        min-height: 300px;
    }

    .ta-ind-visual--dnfbp {
        position: relative;
        inset: auto;
        justify-content: center;
        padding: 1rem;
        opacity: 0.85;
    }

    .ta-ind-visual {
        opacity: 0.75;
    }

    .ta-ind-mesh {
        width: min(100%, 380px);
    }
}

@media (max-width: 900px) {
    .ta-ind-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ta-ind-tabs::-webkit-scrollbar {
        display: none;
    }

    .ta-ind-tab {
        flex: 0 0 auto;
        min-width: 168px;
        align-items: center;
        justify-content: center;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .ta-ind-caps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ta-ind-visual {
        opacity: 0.65;
        padding: 0.5rem;
    }

    .ta-ind-mesh {
        width: min(100%, 340px);
    }
}

@media (max-width: 560px) {
    .ta-industries {
        padding: 3.25rem 0 3.5rem;
    }

    .ta-industries-inner {
        padding: 0 1rem;
    }

    .ta-ind-caps {
        grid-template-columns: 1fr;
    }

    .ta-ind-outcomes {
        max-width: none;
    }

    .ta-ind-visual {
        display: none;
    }

    .ta-ind-cta {
        width: 100%;
        min-width: 0;
    }

    .ta-ind-challenge {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ta-ind-panel {
        animation: none;
    }
}