/* ===== Compliance moves as one ===== */
.ta-moves {
    --moves-bg: #0a141c;
    --moves-green: #5fb173;
    --moves-green-bright: #6bc484;
    --moves-text: #ffffff;
    --moves-muted: #9ca8b0;
    --moves-card: #0e181f;
    --moves-border: rgba(95, 177, 115, 0.4);
    --moves-font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    background: var(--moves-bg);
    font-family: var(--moves-font);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    padding: 4.5rem 0 3rem;
}

.ta-moves-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 40% at 50% 28%, rgba(95, 177, 115, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 10%, rgba(95, 177, 115, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(95, 177, 115, 0.04) 0%, transparent 40%);
}

.ta-moves-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(rgba(95, 177, 115, 0.35) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 30%, #000 10%, transparent 70%);
}

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

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

.ta-moves-title {
    margin: 0 0 0.9rem;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.ta-moves-title .ta-moves-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-radius: 50%;
    background: var(--moves-green);
    box-shadow: 0 0 8px rgba(95, 177, 115, 0.8);
    vertical-align: super;
}

.ta-moves-lead {
    margin: 0 auto;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--moves-muted);
}

.ta-moves-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.ta-moves-card {
    background: var(--moves-card);
    border: 1px solid var(--moves-border);
    border-radius: 12px;
    padding: 1.35rem 1.25rem 1.4rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ta-moves-card:hover {
    transform: translateY(-3px);
    border-color: rgba(95, 177, 115, 0.75);
    box-shadow: 0 0 24px rgba(95, 177, 115, 0.15);
}

.ta-moves-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 1.5px solid rgba(95, 177, 115, 0.7);
    color: var(--moves-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 0 10px rgba(95, 177, 115, 0.2);
}

.ta-moves-card-title {
    margin: 0 0 0.55rem;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
}

.ta-moves-card-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--moves-muted);
}

.ta-moves-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.ta-moves-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 300px;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    border: 1.5px solid rgba(95, 177, 115, 0.75);
    background: rgba(10, 24, 30, 0.6);
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(95, 177, 115, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ta-moves-cta-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--moves-green);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.ta-moves-cta-btn:hover {
    transform: translateY(-2px);
    border-color: var(--moves-green-bright);
    background: rgba(95, 177, 115, 0.1);
    box-shadow: 0 0 28px rgba(95, 177, 115, 0.25);
    color: #fff !important;
}

.ta-moves-foot {
    margin: 1.15rem 0 0;
    font-size: 13px;
    color: var(--moves-muted);
}

@media (max-width: 900px) {
    .ta-moves-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

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

    .ta-moves-title {
        font-size: 24px;
    }

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