/* ===== Connected Platform ecosystem (continues features bg) ===== */
.ta-ecosystem {
    --eco-bg: #0a141c;
    --eco-green: #5fb173;
    --eco-green-bright: #6bc484;
    --eco-green-glow: rgba(95, 177, 115, 0.45);
    --eco-text: #ffffff;
    --eco-muted: #9aaba3;
    --eco-card: rgba(10, 24, 30, 0.72);
    --eco-border: rgba(95, 177, 115, 0.22);
    --eco-border-active: rgba(95, 177, 115, 0.85);
    --eco-font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    background: var(--eco-bg);
    font-family: var(--eco-font);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    padding: 1rem 0 3rem;
}

/* Remove seam under trusted-by so sections feel continuous */
.ta-features {
    padding-bottom: 0;
}

.ta-trusted {
    border-bottom: none;
    padding-bottom: 2rem;
}

.ta-eco-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(95, 177, 115, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 177, 115, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}

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

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

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

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

.ta-eco-lead {
    margin: 0 auto;
    max-width: 620px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--eco-muted);
}

/* Stage: left | hub | right */
.ta-eco-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(380px, 460px) minmax(240px, 1fr);
    gap: 1rem 1.25rem;
    align-items: stretch;
    min-height: 640px;
}

.ta-eco-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 3;
}

.ta-eco-col--left {
    align-items: stretch;
    justify-content: space-between;
    align-self: stretch;
    min-height: 100%;
}

.ta-eco-col--right {
    align-items: stretch;
    justify-content: center;
    align-self: stretch;
    min-height: 100%;
}

.ta-eco-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.ta-eco-connectors .eco-path {
    fill: none;
    stroke: var(--eco-green);
    stroke-width: 1.25;
    opacity: 0.7;
    filter: drop-shadow(0 0 3px rgba(95, 177, 115, 0.7));
}

.ta-eco-connectors .eco-flow {
    fill: none;
    stroke: #b8f0c8;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-dasharray: 5 120;
    opacity: 0.9;
    filter: drop-shadow(0 0 5px rgba(184, 240, 200, 0.85));
    animation: eco-flow 3.5s linear infinite;
}

@keyframes eco-flow {
    to { stroke-dashoffset: -125; }
}

.ta-eco-connectors .eco-node {
    fill: var(--eco-green);
    filter: drop-shadow(0 0 4px rgba(95, 177, 115, 1));
}

/* Panels */
.ta-eco-panel {
    background: var(--eco-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--eco-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ta-eco-panel.is-active,
.ta-eco-panel:hover {
    border-color: var(--eco-border-active);
    box-shadow:
        0 0 0 1px rgba(95, 177, 115, 0.15),
        0 0 28px rgba(95, 177, 115, 0.22);
}

.ta-eco-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ta-eco-panel-title {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--eco-green);
    line-height: 1.3;
}

.ta-eco-panel-toggle {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(95, 177, 115, 0.65);
    background: transparent;
    color: var(--eco-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ta-eco-panel-toggle:hover,
.ta-eco-panel.is-active .ta-eco-panel-toggle {
    background: rgba(95, 177, 115, 0.15);
    box-shadow: 0 0 10px rgba(95, 177, 115, 0.35);
}

.ta-eco-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ta-eco-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.45rem 0.25rem;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.ta-eco-item:hover {
    background: rgba(95, 177, 115, 0.08);
}

.ta-eco-item-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: var(--eco-green);
}

.ta-eco-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ta-eco-item-body {
    flex: 1;
    min-width: 0;
}

.ta-eco-item-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.ta-eco-item-desc {
    display: none;
    margin: 0.2rem 0 0;
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--eco-muted);
}

.ta-eco-panel.is-active .ta-eco-item-desc,
.ta-eco-panel:hover .ta-eco-item-desc {
    display: block;
}

.ta-eco-item-arrow {
    flex-shrink: 0;
    color: #6b7c86;
    font-size: 14px;
    margin-top: 1px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ta-eco-item:hover .ta-eco-item-arrow {
    color: var(--eco-green);
    transform: translateX(2px);
}

.ta-eco-item--soon {
    cursor: default;
    opacity: 0.78;
}

.ta-eco-item--soon:hover {
    background: transparent;
}

.ta-eco-soon-badge {
    display: inline-block;
    margin-left: 0.35rem;
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
    color: #9fd9b8;
    background: rgba(0, 209, 102, 0.12);
    border: 1px solid rgba(0, 209, 102, 0.28);
    border-radius: 999px;
    padding: 0.15rem 0.45rem;
}

.ta-eco-panel-foot {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(95, 177, 115, 0.15);
    font-size: 11px;
    color: var(--eco-muted);
}

.ta-eco-panel.is-active .ta-eco-panel-foot,
.ta-eco-panel:hover .ta-eco-panel-foot {
    display: flex;
}

.ta-eco-panel-foot-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--eco-green);
    font-weight: 500;
}

/* Center hub */
.ta-eco-hub-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 440px;
    isolation: isolate;
}

.ta-eco-hub {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Solid disc so connector lines disappear behind the circle */
.ta-eco-hub::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #12262c 0%, #0a141c 70%, #081218 100%);
    box-shadow:
        0 0 40px rgba(95, 177, 115, 0.18),
        inset 0 0 40px rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.ta-eco-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ta-eco-rings svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ta-eco-ring-spin {
    transform-origin: 50% 50%;
    animation: eco-spin 48s linear infinite;
}

.ta-eco-ring-spin-rev {
    transform-origin: 50% 50%;
    animation: eco-spin-rev 36s linear infinite;
}

@keyframes eco-spin {
    to { transform: rotate(360deg); }
}

@keyframes eco-spin-rev {
    to { transform: rotate(-360deg); }
}

.ta-eco-hub-core {
    position: relative;
    z-index: 2;
    width: 74%;
    text-align: center;
    padding: 1.15rem 0.85rem 1.25rem;
}

.ta-eco-hub-brand {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--eco-green);
    margin-bottom: 0.3rem;
}

.ta-eco-hub-name {
    margin: 0 0 1.25rem;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.25;
}

.ta-eco-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.85rem;
    text-align: center;
}

.ta-eco-hub-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.ta-eco-hub-cell svg {
    width: 22px;
    height: 22px;
    stroke: var(--eco-green);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 3px rgba(95, 177, 115, 0.5));
}

.ta-eco-hub-cell span {
    font-size: 11px;
    line-height: 1.25;
    color: #c5d0d0;
    max-width: 7rem;
}

/* CTA */
.ta-eco-cta {
    margin-top: 2.75rem;
    text-align: center;
}

.ta-eco-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 280px;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    border: 1.5px solid rgba(95, 177, 115, 0.75);
    background: linear-gradient(180deg, rgba(95, 177, 115, 0.28) 0%, rgba(20, 40, 35, 0.55) 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow:
        0 0 24px rgba(95, 177, 115, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.ta-eco-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 0 32px rgba(95, 177, 115, 0.35);
    color: #fff !important;
}

.ta-eco-cta-btn i {
    transition: transform 0.25s ease;
}

.ta-eco-cta-btn:hover i {
    transform: translateX(3px);
}

.ta-eco-cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 1rem 0 0;
    font-size: 13px;
    color: var(--eco-muted);
}

.ta-eco-cta-note i {
    color: var(--eco-green);
    font-size: 15px;
}

@media (max-width: 1100px) {
    .ta-eco-stage {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        min-height: 0;
    }

    .ta-eco-hub-wrap {
        grid-column: 1 / -1;
        order: -1;
        min-height: 380px;
    }

    .ta-eco-hub {
        width: min(400px, 88%);
    }

    .ta-eco-connectors {
        display: none;
    }

    .ta-eco-col--left {
        order: 1;
    }

    .ta-eco-col--right {
        order: 2;
    }
}

@media (max-width: 700px) {
    .ta-ecosystem {
        padding: 0.5rem 0 3rem;
    }

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

    .ta-eco-stage {
        grid-template-columns: 1fr;
    }

    .ta-eco-title {
        font-size: 22px;
    }

    .ta-eco-hub {
        width: min(340px, 92%);
    }

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

@media (prefers-reduced-motion: reduce) {
    .ta-eco-ring-spin,
    .ta-eco-ring-spin-rev,
    .ta-eco-connectors .eco-flow {
        animation: none;
    }
}
